Search found 173 matches

by Fabio
Tue Sep 01, 2020 3:36 pm
Forum: Example requests & Code samples
Topic: film scanning
Replies: 1
Views: 9032

Re: film scanning

Hello,

It depends of your scanner, but most of them accept the TWAIN protocol.
You will find this information on your scanner documentation.

Best regards,
Fabio de Rose
Solution Engineer
by Fabio
Tue Sep 01, 2020 12:05 pm
Forum: Feature Requests
Topic: Z-Order on regions available
Replies: 1
Views: 10872

Re: Z-Order on regions available

Hello,

We have a property called Zorder in the Annotation class: https://www.gdpicture.com/guides/gdpicture/Gd ... rder.html
Hope it helps!

Regards,
Fabio de Rose
by Fabio
Tue Sep 01, 2020 12:00 pm
Forum: General discussions
Topic: anyone uses Medi-2200 Plus?
Replies: 1
Views: 10164

Re: anyone uses Medi-2200 Plus?

Hello,

I'm not really aware of the scanner's models our customers use, but we have a lot of clients in the medical sector.
Also, the Medi-2200 Plus scanner recognizes the TWAIN connection and our solution provides this protocol.
So it will works!

Kind regards,
Fabio de Rose
Solution Engineer
by Fabio
Mon Aug 31, 2020 12:03 pm
Forum: DocuVieware
Topic: Viewing PDF's Sticky Note Text
Replies: 1
Views: 8329

Re: Viewing PDF's Sticky Note Text

Hello!

We don't provide this feature currently.
But we plan to implement it before the end of the year.

Regards,
Fabio de Rose
Solution Engineer
by Fabio
Mon Aug 31, 2020 10:41 am
Forum: PDF
Topic: PdfOcrOptions Class
Replies: 1
Views: 5734

Re: PdfOcrOptions Class

Hi! You can use it like this: PdfOcrOptions pdfOcrOptions = m_DefaultOcrOptions.Clone(PageNo); pdfOcrOptions.ResourcePath = DictionaryPath; pdfOcrOptions.Dictionary = Dictionary; pdfOcrOptions.CharWhiteList = CharWhiteList; pdfOcrOptions.OCRMode = ocrMode; pdfOcrOptions.TimeoutMillisec = TimeoutMill...
by Fabio
Fri Aug 28, 2020 4:42 pm
Forum: PDF
Topic: Choose paper source by PDF page size
Replies: 1
Views: 10966

Re: Choose paper source by PDF page size

Hi Thorsten, Sorry for the late. Here what you need: https://www.gdpicture.com/guides/gdpicture/GdPicture.NET.14~GdPicture14.GdViewer~PrintSetPaperBin(PaperSource).html By a custom dev you will be able to get the PDF parameters and set the paper source using the PrintSetPaperBien method. Cheers, Fab...
by Fabio
Fri Aug 28, 2020 4:38 pm
Forum: PDF
Topic: VB6 Add image to PDF
Replies: 1
Views: 11619

Re: VB6 Add image to PDF

Hi Ben, Here's the code you need: Dim oGdPicturePDF As New GdPicturePDF() Dim oGdPictureImaging As New GdPictureImaging() 'Creating a new empty PDF document. If oGdPicturePDF.NewPDF() = GdPictureStatus.OK Then 'Just to remind you that units are set to points and the origin is set to bottom left by d...
by Fabio
Fri Aug 28, 2020 4:31 pm
Forum: Document Viewing
Topic: GD14 - Viewer Best Performance
Replies: 1
Views: 5164

Re: GD14 - Viewer Best Performance

Hi Max, We have the most efficient PDF SDK on the market, but sadly, we will always be limited by the OS, browser, computer, network, and dev language. Could you provide me the loading code part you're using to load the TIFF files? It will be helpful for leading you to the fastest way to do this. Re...
by Fabio
Fri Aug 28, 2020 4:07 pm
Forum: DocuVieware
Topic: Password Secured Document
Replies: 1
Views: 2604

Re: Password Secured Document

Hello, How do you load the document in the viewer? Could you try using this way: docuVieware.LoadFromStream(new FileStream(Globals.GetDocumentsDirectory() + @"\st_exupery_le_petit_prince.pdf", FileMode.Open, FileAccess.Read), true, "document.pdf"); docuVieware.RenderControl(Outpu...
by Fabio
Fri Aug 28, 2020 3:59 pm
Forum: DocuVieware
Topic: Are there limitations on which *.DOC files it will open?
Replies: 1
Views: 2409

Re: Are there limitations on which *.DOC files it will open?

Hello Michael,

Could you tell me if you're using a custom or standard loading?
If it is a custom load could you provide me the related code to take a look please?

Regards,
Fabio de Rose
by Fabio
Fri Aug 28, 2020 2:39 pm
Forum: PDF
Topic: Convert PDF/A to common PDF
Replies: 1
Views: 4941

Re: Convert PDF/A to common PDF

Hello, To set your file as a PDF you can delete the metadata for stripping the conformance. You can get the native PDF using: https://www.docuvieware.com/guides/aspnet/GdPicture.NET.14.WEB.DocuVieware~GdPicture14.WEB.DocuVieware~GetNativePDF.html Then, you will get a GdPicture object and you will be...
by Fabio
Fri Aug 28, 2020 2:08 pm
Forum: Annotations
Topic: Annotate PDF/A
Replies: 1
Views: 5742

Re: Annotate PDF/A

Hello Tim, The PDF/A specification also states some requirements for a conforming PDF/A viewer, which must: -ignore any data that are not described by the PDF and PDF/A standards; -ignore any linearization information provided by the file; -only use the embedded fonts (rather than any locally availa...
by Fabio
Fri Aug 28, 2020 12:20 pm
Forum: DocuVieware
Topic: Print and Save Question
Replies: 1
Views: 9371

Re: Print and Save Question

Hello Perry, Very sorry for the delay. You can bypass the form by developing a custom save method. If you don't have the annotations in your document it is certainly because you set the DropAnnot parameter to true. Can you try this code and tell me if it works? GdPictureStatus status = e.docuVieware...
by Fabio
Fri Aug 28, 2020 10:06 am
Forum: DocuVieware
Topic: Could not find part of the path?
Replies: 1
Views: 2283

Re: Could not find part of the path?

Hello Michael,

Could you try this one:

docuVieware.LoadFromStream(new FileStream(ViewBag.Document, FileMode.Open, FileAccess.Read), true, Path.GetFileName(ViewBag.Document))

I think the issue come from the FileName.

Tell me if it worked!

Fabio de Rose
Solution Engineer
by Fabio
Thu Aug 27, 2020 5:54 pm
Forum: General discussions
Topic: FileNotFound on LoadFromFile for .docx and .xlsx
Replies: 2
Views: 5596

Re: FileNotFound on LoadFromFile for .docx and .xlsx

Hello, Sorry for the late reply. Can you tried this code and tell me if it works? using (GdPictureDocumentConverter oConverter = new GdPictureDocumentConverter()) { GdPictureStatus status = oConverter.LoadFromFile("Files/foo.docx", GdPicture14.DocumentFormat.DocumentFormatDOCX); Console.Wr...