Search found 33 matches

by sbarlow
Tue Jun 15, 2021 7:15 pm
Forum: PDF
Topic: Applying digital signature to an existing PDF
Replies: 5
Views: 24305

Re: Applying digital signature to an existing PDF

Hi, I'm being asked by a customer if we can digitally sign a pdf from a certificate in the local machine certificate store? Alternately is there a way to do it from a certificate stored up in Azure? From looking at internet CAs it looks like they are selling personal ones on thumb drives and enterp...
by sbarlow
Tue Jun 15, 2021 6:40 pm
Forum: PDF
Topic: Is signing PDFs with existing fields created with Adobe Acrobat possible?
Replies: 1
Views: 6438

Is signing PDFs with existing fields created with Adobe Acrobat possible?

I have been through the digital signing example, and the use of GDViewer. Using winforms, although I can place a new signature from the certificate store on the Adobe pdf (or any PDF) using GDPicture, I can't for the life of me see a way to fill an existing signature field with a valid signature and...
by sbarlow
Mon Jul 30, 2018 6:51 pm
Forum: PDF
Topic: Missing methods after upgrading to 14.0.0.61
Replies: 1
Views: 2609

Missing methods after upgrading to 14.0.0.61

Hello, I was upgrading my application to 14.0.0.61 from an earlier version of 14 and noticed the following PDF & OCR methods and events no longer exist under gdpictureimaging. Is there a simple alternative to them? I see the sample but rather not have to replace the simplicity of some of the met...
by sbarlow
Wed Nov 15, 2017 2:30 pm
Forum: PDF
Topic: Most reliable way to insert an existing PDF with multiple pages into another PDF
Replies: 3
Views: 4289

Re: Most reliable way to insert an existing PDF with multiple pages into another PDF

Thanks Jean-Luc,

I elected to go with building a new PDF using the clone method (page by page) from the PDF's involved

Scott
by sbarlow
Fri Nov 10, 2017 2:50 pm
Forum: PDF
Topic: Most reliable way to insert an existing PDF with multiple pages into another PDF
Replies: 3
Views: 4289

Most reliable way to insert an existing PDF with multiple pages into another PDF

I see there are a few ways to be able to insert a PDF with multiple pages into another PDF with multiple pages. Which is the better way to go? For both speed and reliability, the PDFs may or may not have been generated from GDPicture 1) Split the original using clone (page by page) creating 2 PDFs s...
by sbarlow
Thu Aug 10, 2017 4:10 pm
Forum: PDF
Topic: Extracting PDF from Viewer
Replies: 3
Views: 5072

Re: Extracting PDF from Viewer

Never Mind :)
I see the philosophy has changed. Unfortunately it will cause rather extensive code changes in my application.
As described here for anyone else

viewtopic.php?f=29&t=4252&p=14181&hilit=viewer#p14181
by sbarlow
Wed Aug 09, 2017 4:43 pm
Forum: PDF
Topic: Extracting PDF from Viewer
Replies: 3
Views: 5072

Extracting PDF from Viewer

Hello, I have just purchased GDP 14 Ultimate and updating a large application written with version 6. I see a lot has changed. Previously I had used GdViewer1.PDFRenderPageToGdPictureImage to pull individual PDF pages from the viewer. Is this no longer possible? What is the simplest way to be able t...
by sbarlow
Fri Aug 06, 2010 1:13 pm
Forum: Image Processing & Document Imaging
Topic: PdfReaderRenderPageToGdPictureImage and bitonal content
Replies: 4
Views: 3420

Re: PdfReaderRenderPageToGdPictureImage and bitonal content

Do you mean from the output from the output of PdfReaderRenderPageToGdPictureImage ?

Scott
by sbarlow
Thu Aug 05, 2010 6:14 pm
Forum: Image Processing & Document Imaging
Topic: PdfReaderRenderPageToGdPictureImage and bitonal content
Replies: 4
Views: 3420

Re: PdfReaderRenderPageToGdPictureImage and bitonal content

Hi Scott, The rasterizer engine always generate color output image. If you want to get a bitonal image you have just to use the ConvertTo1Bpp method. If you want to extract image from PDF in its native bitdepth you should use the PdfReaderRenderExtractImage method. Kind regards, Loïc Thanks Loïc, B...
by sbarlow
Thu Aug 05, 2010 4:52 pm
Forum: Image Processing & Document Imaging
Topic: PdfReaderRenderPageToGdPictureImage and bitonal content
Replies: 4
Views: 3420

PdfReaderRenderPageToGdPictureImage and bitonal content

Hi, I'm having an issue when converting from a PDF with B&W image content to a multipage TIFF After using the PdfReaderRenderPageToGdPictureImage method , and using TiffSaveAsMultiPageFile(MultiPageID, ImagefileName, TiffCompression.TiffCompressionAUTO) the tiff pages are always LZW compressed, ...
by sbarlow
Tue Jul 27, 2010 11:02 pm
Forum: Feature Requests
Topic: Auto convert to bitonal before PDF OCR
Replies: 1
Views: 3167

Re: Auto convert to bitonal before PDF OCR

Adding another thought...if using SaveAsPDFOCR and PdfAddGdPictureImageToPdfOCR, Just work the method so that it takes a B&W image as an argument (PDFID,IMAGEID,BWID,,,,) That way we could supply the black and white image , either extracted from the single or multipage , filter as needed to get ...
by sbarlow
Tue Jul 27, 2010 6:47 pm
Forum: Feature Requests
Topic: Auto convert to bitonal before PDF OCR
Replies: 1
Views: 3167

Auto convert to bitonal before PDF OCR

Hi Loïc, In the methods SaveAsPDFOCR and PdfAddGdPictureImageToPdfOCR (and maybe even PdfOCRCreateFromMultipageTIFF, but I know it would be much harder) , would it be possible to have an overload that converted color images to bitonal before performing the OCR. The image within the PDF would still b...
by sbarlow
Thu Jun 10, 2010 4:06 pm
Forum: Image Processing & Document Imaging
Topic: Tagging or marking individual pages in a CCITT4 tiff file
Replies: 6
Views: 3575

Re: Tagging or marking individual pages in a CCITT4 tiff file

HI Loïc,

Not at all now that I know, thanks

Scott
by sbarlow
Thu Jun 10, 2010 3:41 pm
Forum: Image Processing & Document Imaging
Topic: Tagging or marking individual pages in a CCITT4 tiff file
Replies: 6
Views: 3575

Re: Tagging or marking individual pages in a CCITT4 tiff file

HI Loïc, I didn't realize that the GdPictureImaging.TagGetValueString returns a null terminated string, is this normal? Dim sval As String = GDP.TagGetValueString(ImageID, tagsI) Dim ca() As Char = sval.ToCharArray For Each c As Char In ca Debug.Print(Asc(c).ToString) Next Will show ASCII code 0 at ...
by sbarlow
Thu Jun 10, 2010 2:07 pm
Forum: Image Processing & Document Imaging
Topic: Tagging or marking individual pages in a CCITT4 tiff file
Replies: 6
Views: 3575

Re: Tagging or marking individual pages in a CCITT4 tiff file

Thanks Loïc,

I must have been doing something stupid, my over thought out code was not working , your simple example did, grin.

easy fix thanks,

Scott