Search found 173 matches

by Fabio
Wed Oct 06, 2021 4:44 pm
Forum: Example requests & Code samples
Topic: Redact RedactRequestCtx json?
Replies: 9
Views: 15074

Re: Redact RedactRequestCtx json?

Hello, The redact Snap-in is the way to go since the redact controller was made for internal usage only. By the way, you can use the PostCustomServerAction on the client-side, in order to get the document's annotations server-side. (Redaction are considered annotations while they're are not applied)...
by Fabio
Wed Oct 06, 2021 2:32 pm
Forum: PDF
Topic: SaveDocumentToPDF Issue
Replies: 17
Views: 24584

Re: SaveDocumentToPDF Issue

Hello,

I'm really sorry, both, the resolution and the release have been made on the same day. But the correction was right after the release of the new version!
My bad for this mistake.

The correction will be available on our next release then!

Have a nice day,
Fabio
by Fabio
Wed Oct 06, 2021 1:47 pm
Forum: Example requests & Code samples
Topic: Retrieve scanner serial number
Replies: 9
Views: 22498

Re: Retrieve scanner serial number

Hello Chris, There is an enumeration in the TWAIN that is called CAP_SERIALNUMBER. But it is optional, you cannot assume that a scanner supports it. -> https://www.gdpicture.com/guides/gdpicture/GdPicture.NET.14~GdPicture14.TwainCapabilities.html At the moment, I didn't see any method in our SDK tha...
by Fabio
Wed Oct 06, 2021 11:04 am
Forum: Image Processing & Document Imaging
Topic: Grabbing byte array from imageviewer after annotations
Replies: 1
Views: 9765

Re: Grabbing byte array from imageviewer after annotations

Hello Dylan, Here is a code snippet to get the image as a byteArray and the annotations in two different streams: using (GdPictureImaging gdpictureImaging = new GdPictureImaging()) { MemoryStream streamImg = new MemoryStream(); MemoryStream streamAnnt = new MemoryStream(); e.docuVieware.SaveAnnotati...
by Fabio
Wed Oct 06, 2021 10:35 am
Forum: Image Processing & Document Imaging
Topic: ByteArray to PDF
Replies: 5
Views: 12276

Re: ByteArray to PDF

Hi Dylan,

I'm glad it suits you :)

Have a nice day,
Fabio
by Fabio
Tue Oct 05, 2021 2:41 pm
Forum: Example requests & Code samples
Topic: Redact RedactRequestCtx json?
Replies: 9
Views: 15074

Re: Redact RedactRequestCtx json?

Hello, Before diving into the technical stuff, I just want to mention that we actually have 2 easy ways to handle the redaction feature through DocuVieware. Integrated redaction You can activate the Redaction snap-in by setting this property to true server-side: https://www.docuvieware.com/guides/as...
by Fabio
Tue Oct 05, 2021 9:58 am
Forum: DocuVieware
Topic: Wrong REST API endpoint/url generation
Replies: 7
Views: 14628

Re: Wrong REST API endpoint/url generation

Hello,

The conversation had continued on our helpdesk and a ticket has been created on our side to implement a way to deal with such usage.
I'll keep you posted about any updates on this conversation.

With best,
Fabio
by Fabio
Tue Oct 05, 2021 9:53 am
Forum: PDF
Topic: SaveDocumentToPDF Issue
Replies: 17
Views: 24584

Re: SaveDocumentToPDF Issue

Hello,

Yes, it is the 14.1.134!

With best,
Fabio
by Fabio
Mon Oct 04, 2021 11:19 am
Forum: Licensing
Topic: Running new LicenseManager() in .NET Core Linux Docker Container throws Exception
Replies: 3
Views: 23034

Re: Running new LicenseManager() in .NET Core Linux Docker Container throws Exception

Hello there, It is required to use our SDK in a Windows environment since it uses some of its DLLs: https://www.gdpicture.com/guides/gdpicture/Operating%20Requirements.html Mainly, the easiest way to bypass this issue is to set a Windows server in your architecture as a three-tier. With best, Fabio
by Fabio
Mon Oct 04, 2021 9:49 am
Forum: DocuVieware
Topic: LoadFromStream does not accept an html document
Replies: 1
Views: 9470

Re: LoadFromStream does not accept an html document

Hello Chris, Are you using the last version of DocuVieware? (the HTML support has been implemented on version 3.1.107). Here is the code I used for testing: System.IO.Stream stream = new System.IO.FileStream(@"D:\example.html", System.IO.FileMode.OpenOrCreate); GdPictureStatus status = new...
by Fabio
Fri Oct 01, 2021 11:04 am
Forum: PDF
Topic: SaveDocumentToPDF Issue
Replies: 17
Views: 24584

Re: SaveDocumentToPDF Issue

Hello,

The issue has been corrected and will be available on our next minor release. The provided code will work just by updating the SDK.

With best,
Fabio
by Fabio
Thu Sep 30, 2021 5:25 pm
Forum: PDF
Topic: SaveDocumentToPDF Issue
Replies: 17
Views: 24584

Re: SaveDocumentToPDF Issue

Hello,

I reproduced the issue on my side, thanks for the code snippet.
So I created a ticket for the developers to check what it's going on and to handle this issue.

I will keep you updated through this post!

Have a nice day,
Fabio
by Fabio
Thu Sep 30, 2021 4:57 pm
Forum: Other discussions
Topic: gdPicture support for .Net MAUI
Replies: 7
Views: 139066

Re: gdPicture support for .Net MAUI

Hello Kurt,

Since the technology has been released recently, I will test it on my side and will let you know as soon as possible.

With best,
Fabio
by Fabio
Thu Sep 30, 2021 4:50 pm
Forum: Image Processing & Document Imaging
Topic: ByteArray to PDF
Replies: 5
Views: 12276

Re: ByteArray to PDF

Hello Dylan, This is expected that the oGdPictureImaging.CreateGdPictureImageFromByteArray() returns a zero if you give it a PDF as input. The GdPictureImaging class is for raster images and GdPicturePDF for PDF. Here is a code snippet I made for loading a byte array into a GdPicturePDF object: byte...
by Fabio
Wed Sep 29, 2021 9:48 am
Forum: Image Processing & Document Imaging
Topic: ByteArray to PDF
Replies: 5
Views: 12276

Re: ByteArray to PDF

Hello Dylan,

Could you elaborate on your issue, please?
Does the oGdPictureImaging.CreateGdPictureImageFromByteArray() returns a 0?

Just to avoid any issue that was already corrected, could you update your GdPicture SDK to the latest version and tell me if the issue remains?

With best,
Fabio