Search found 18 matches

by rclendenon
Wed Feb 08, 2017 2:27 am
Forum: Feature Requests
Topic: Multi-touch gestures
Replies: 4
Views: 14537

Touch Screen Multi Touch Support

Does gdPicture support multi touch commands (i.e. Pinch to zoom)? If so, where can I find information.

Thanks
by rclendenon
Thu Jan 31, 2013 10:08 pm
Forum: Document Printing
Topic: Print Selection
Replies: 3
Views: 12786

Re: Print Selection

Yes
by rclendenon
Wed Jan 23, 2013 8:19 pm
Forum: Document Printing
Topic: Print Selection
Replies: 3
Views: 12786

Print Selection

I am using the following code to print a section of a pdf that has been zoomed into using the dynamic zoom feature: Dim l, t, w, h As Integer GdViewer1.GetDisplayedArea(l, t, w, h) GdViewer1.CopyRegionToClipboard(l, t, w, h) Dim GdViewer2 As New GdViewer GdViewer2.DisplayFromClipboard() GdViewer2.Pr...
by rclendenon
Wed Aug 08, 2012 4:00 pm
Forum: PDF
Topic: Adding Predetermined Text/Stamp to PDF
Replies: 1
Views: 2133

Adding Predetermined Text/Stamp to PDF

I have a text block that I need to add to a pdf with minimal user interaction. The text is formatted as follows: Company Name Address Project Purchase Order No Drawing Subject I would like to put this on the pdf without the need of the user to resize the box/stamp. However, the user will need the ab...
by rclendenon
Fri Jun 22, 2012 3:55 pm
Forum: PDF
Topic: PDF Height/Width after Rotation
Replies: 2
Views: 3687

Re: PDF Height/Width after Rotation

I have found a work around for this problem. Below is a sample of the code I used (Visual FoxPro): cFile = 'c:\test.pdf' loGDPDF = CREATEOBJECT('gdPicture.gdPicturePDF') loGdPDF.LoadFromFile(cFile,.T.) *Rotate page 90 degrees loGdPDF.RotatePages(90) loGdPDF.SaveToFile(cFile) loGdPDF.CloseDocument() ...
by rclendenon
Thu Jun 21, 2012 7:00 pm
Forum: PDF
Topic: PDF Height/Width after Rotation
Replies: 2
Views: 3687

PDF Height/Width after Rotation

Using the 'RotatePage' feature I am able to successfully rotate a pdf. However, the page width and height are the same as for the pre-rotated pdf. For example, a pdf originally has a height of 3032 points and width of 2160 points. I rotate the pdf 90 degrees and save the pdf so that the pdf is displ...
by rclendenon
Wed Jun 13, 2012 6:21 pm
Forum: PDF
Topic: DrawRotatedText feature not working on certain PDFS
Replies: 4
Views: 3516

Re: DrawRotatedText feature not working on certain PDFS

Loic,

Thanks for your help. I have solved the problem with missing emails. The spam filtering service that we use was tagging all emails from your company as spam. I have fixed and all is well. Thanks again for your help.

Russell
by rclendenon
Wed Jun 13, 2012 4:11 pm
Forum: PDF
Topic: DrawRotatedText feature not working on certain PDFS
Replies: 4
Views: 3516

Re: DrawRotatedText feature not working on certain PDFS

Loic, Sorry for any annoyance. I never received a response on the help desk ticket or I would not have re-posted. Is there somewhere on the website that I can check for reply's to help desk tickets? If you are replying via email then something is wrong because I am not receiving (i have checked bloc...
by rclendenon
Wed Jun 13, 2012 2:53 pm
Forum: PDF
Topic: DrawRotatedText feature not working on certain PDFS
Replies: 4
Views: 3516

DrawRotatedText feature not working on certain PDFS

Sorry for the re-post but I am desperate for a solution. I have submitted a ticket to technical support but have received no response. I have several pdfs that the DrawRotatedText feature of the gdPicture PDF plugin is not working. It appears to work, I get no error codes, but the text is not displa...
by rclendenon
Fri Jun 08, 2012 1:19 pm
Forum: PDF
Topic: Stamp not working on some pdfs
Replies: 3
Views: 3370

Re: Stamp not working on some pdfs

Loic,

Attached are a copy of a file that will not stamp and one that will.

Thanks for the help,
Russell
by rclendenon
Wed Jun 06, 2012 3:25 pm
Forum: Document Viewing
Topic: Dynamic Zooming on Multiple PDFs
Replies: 3
Views: 3607

Re: Dynamic Zooming on Multiple PDFs

Sami,

Thanks for the help.

Russell
by rclendenon
Wed Jun 06, 2012 3:20 pm
Forum: PDF
Topic: Stamp not working on some pdfs
Replies: 3
Views: 3370

Stamp not working on some pdfs

I am using GdPicture.Net 8.5 to date stamp pdfs as they are logged into our software. It works fine on most pdfs, however, lately I have come across some pdfs that do not get stamped. The pdfs that don't work are PDF Version 1.3 (Acrobat 4.x). The ones that do work are PDF Version 1.4 and greater. I...
by rclendenon
Thu Apr 12, 2012 3:08 pm
Forum: PDF
Topic: Deleting Text added with DrawRotatedText
Replies: 2
Views: 2487

Re: Deleting Text added with DrawRotatedText

Loic,

Thanks for the response. I have just purchased GdPicture.Net and I am still trying to figure out all it can do. I will try out the annotations option.

Thanks again,
Russell
by rclendenon
Tue Apr 10, 2012 3:45 pm
Forum: PDF
Topic: Deleting Text added with DrawRotatedText
Replies: 2
Views: 2487

Deleting Text added with DrawRotatedText

I am trying to use the 'DrawRotatedText' feature of the GDPicuterPDF plugin to add a date stamp to pdfs. I am able to successfully add the stamp. However, over time, we can end up date stamping the same pdf multiple times. Since the date stamp goes in the same location each time, this can result in ...
by rclendenon
Tue Apr 03, 2012 3:50 pm
Forum: Document Viewing
Topic: Printing Selected Area
Replies: 2
Views: 3287

Printing Selected Area

I am using the gdViewer to display a pdf. There are also several zooming tools that allow the user to focus on specific parts of the pdf. Is there a way to print only the portion of the pdf that is displayed in the viewer after a zoom? When I use the 'PrintDialogFit' option the 'Selected' option is ...