Search found 27 matches

by reisrf
Thu Apr 04, 2019 5:46 pm
Forum: Annotations
Topic: Group selection..
Replies: 7
Views: 12874

Re: Group selection..

Gabriela, many thanks. Question: Should I open a support ticket to make it official this new feature suggestion?
by reisrf
Tue Apr 02, 2019 11:27 pm
Forum: Annotations
Topic: Group selection..
Replies: 7
Views: 12874

Re: Group selection..

Hello, Unfortunately no, there is no way to select multiple annotations at the same time. However I have added your request to our wish list for the development team to consider. Regards, Do we have this feature already? If yes, please let me know how. I need to allow the user to select multi regio...
by reisrf
Mon Mar 04, 2019 7:02 pm
Forum: Example requests & Code samples
Topic: DeleteAnnotations question
Replies: 2
Views: 4349

Re: DeleteAnnotations question

Kamil, many thanks
by reisrf
Thu Feb 28, 2019 9:53 pm
Forum: Example requests & Code samples
Topic: DeleteAnnotations question
Replies: 2
Views: 4349

DeleteAnnotations question

I am loading a gdViewer with a TIF and creating many annotations. the GdViewer is connected to an annotation manager. Annotations are created through the annotation manager _annotMgr.InitFromGdViewer(gdViewer1); Then I have tried the following steps to delete all annotations int qtyAnnotations = _an...
by reisrf
Fri Jul 27, 2018 9:43 pm
Forum: PDF
Topic: GdPicturePDF.DrawImage not drawing on coordinates after page rotate
Replies: 5
Views: 5021

Re: GdPicturePDF.DrawImage not drawing on coordinates after page rotate

Thanks for this info. I had the same issue and this post helped me.
by reisrf
Mon Jul 23, 2018 12:31 am
Forum: Office Open XML & Open Document
Topic: DOCX conversion to PDF issues
Replies: 2
Views: 10700

DOCX conversion to PDF issues

I have tried a small piece of code I have got here in the blog to convert DOCX to PDF and I have tried. It works fine, it creates the PDF but the "look" of the contents is not the same as in the DOC. For instance, I can see some squares on every bullet that don´t exist in the original docu...
by reisrf
Tue Jun 19, 2018 8:52 pm
Forum: Example requests & Code samples
Topic: How to know a PDF page has text (invisible / we can search) (from OCR or it was created by Word, Excel or any other tool
Replies: 6
Views: 4601

Re: How to know a PDF page has text (invisible / we can search) (from OCR or it was created by Word, Excel or any other

PageHasText method is returning True even if in the page we have only special characeters like \r, \n, \l, .... I have created by own PageHasText, using GetPageText: string pageText = Regex.Replace(_gdPDF.GetPageText(), "[^0-9a-zA-Z]+", string.Empty).Trim(); return (pageText.Length == 0 ? ...
by reisrf
Fri Jun 08, 2018 2:39 pm
Forum: General discussions
Topic: Framework 4.5 and 4.6 missing in 14.0.0.51
Replies: 2
Views: 6120

Re: Framework 4.5 and 4.6 missing in 14.0.0.51

I have got an official answer: Hello, There is no need to provide specific GdPicture assembly for each supported .NET Framework version any more. The main assembly is now compiled to support every .NET Framework version from 4.0 to the latest 4.7.1 version. So, no matter what .NET Framework your app...
by reisrf
Thu Jun 07, 2018 11:38 pm
Forum: Example requests & Code samples
Topic: How to know a PDF page has text (invisible / we can search) (from OCR or it was created by Word, Excel or any other tool
Replies: 6
Views: 4601

How to know a PDF page has text (invisible / we can search) (from OCR or it was created by Word, Excel or any other tool

I will receive some PDFs where some pages can have text (invisible) so we can search (example: PDFs created by OCR tools, or Office tools or others). And other pages where it will be a scanned image without ocr contents , so we can´t search. For the pages without OCR contents I need to apply OCR and...
by reisrf
Tue May 22, 2018 5:48 pm
Forum: General discussions
Topic: Framework 4.5 and 4.6 missing in 14.0.0.51
Replies: 2
Views: 6120

Framework 4.5 and 4.6 missing in 14.0.0.51

2 days ago I have downloaded and install the 14.0.0.51. I have noticed I have now only one framework folder in the Redist folder, the Framework 4.0 is there, but 4.5 and 4.6 has gone. Is there some reason for this?

Do you have some date to release major version 15?

Thanks
Robson Reis
by reisrf
Wed Oct 11, 2017 4:47 pm
Forum: Example requests & Code samples
Topic: PDF - How to make a text fill a rectangle
Replies: 4
Views: 8185

Re: PDF - How to make a text fill a rectangle

Thanks for the snippet. It worked perfectly !!!!

Many thanks. Great support we get from GDPicture. As always!
by reisrf
Wed Oct 11, 2017 3:37 pm
Forum: Example requests & Code samples
Topic: PDF - How to make a text fill a rectangle
Replies: 4
Views: 8185

Re: PDF - How to make a text fill a rectangle

Thanks I will try soon. Just need to convert to C# .
by reisrf
Sun Oct 01, 2017 2:19 am
Forum: Example requests & Code samples
Topic: PDF - How to make a text fill a rectangle
Replies: 4
Views: 8185

PDF - How to make a text fill a rectangle

I have a PDF and I need to write a text inside a rectangle, but I want the letters of the text to fill the full rectangle area. Please see the attachment for the example How can I use the rectangle coordinates to calculate the SetTextSize and SetTextScalling parameters to be used? Right now I am usi...