Search found 269 matches

by Cedric
Tue Jan 22, 2019 5:09 pm
Forum: DocuVieware
Topic: Evaluation Questions - Adding annotation to all pages
Replies: 1
Views: 5765

Re: Evaluation Questions - Adding annotation to all pages

I don't think the approach is correct, you can do this completely client side without having to implement a custom action using the JavaScript API. In a nutshell all you have to do is use the on document loaded and, create an annotation object for each page and finally add the annotations in a singl...
by Cedric
Tue Jan 22, 2019 4:39 pm
Forum: DocuVieware
Topic: How to initialize via Javascript
Replies: 3
Views: 7465

Re: How to initialize via Javascript

In that kind of case, you might want to check if there's a callback available in your framework that can be used to execute some JS when the modal popup is done loading and/or displaying in order to call this method: https://www.docuvieware.com/guides/aspnet/webframe.html#UpdateLayout.html It will f...
by Cedric
Tue Jan 22, 2019 4:36 pm
Forum: DocuVieware
Topic: Loading images to an specific instance.
Replies: 2
Views: 5500

Re: Loading images to an specific instance.

I'm not sure if this still an issue but you shouldn't have to recreate a new instance each time you want to display another document, you just need to reuse the previous one if it has been created. I would strongly recommend to follow what is done in the dedicated tutorial here: https://www.docuview...
by Cedric
Thu Jan 17, 2019 2:35 pm
Forum: General discussions
Topic: .NET Core 3
Replies: 2
Views: 11760

Re: .NET Core 3

Hi,

Thank you for your interest and research, we don't have any official plan of schedule as of yet but for sure we will consider it for the future.
by Cedric
Thu Jan 17, 2019 1:18 pm
Forum: Image Processing & Document Imaging
Topic: Align scanned image to form
Replies: 1
Views: 5132

Re: Align scanned image to form

Hi, I strongly suggest that you go through the dedicated documentation we have about this: https://www.gdpicture.com/guides/gdpicture/Overview.html#Optical%20Mark%20Recognition.html This, I believe, should shed some light on how the translation should be handled. Now, for the rotation compensation, ...
by Cedric
Thu Jan 17, 2019 12:58 pm
Forum: DocuVieware
Topic: Is there a way to put image on mouse click position?
Replies: 1
Views: 5204

Re: Is there a way to put image on mouse click position?

Hi, There could be different ways to achieve this but I don't think you can do that with a simple mouse click as there's no out-of-the box event handler for this. You could do that quite easily using the annotations and the selection area though, the idea would be to draw the selection area where th...
by Cedric
Thu Aug 09, 2018 3:36 pm
Forum: Annotations
Topic: AddAnnotationFromXML
Replies: 13
Views: 20912

Re: AddAnnotationFromXML

You don't need that method because, as explained in the documentation that you should read, it has been designed for COM interop users, there is no need for this method here. The AddAnnotationFromXML method, still according to the documentation, returns an Annotation object so you can directly chang...
by Cedric
Tue Aug 07, 2018 11:51 am
Forum: Annotations
Topic: AddAnnotationFromXML
Replies: 13
Views: 20912

Re: AddAnnotationFromXML

I don't know what's wrong exactly with your code as it does not really make sense on several aspects, all I can say is that this code is perfectly working for me using the latest version, I got no GenericError from the AddAnnotationFromXML method call: using (var pdfFile1 = new GdPicturePDF()) { pdf...
by Cedric
Mon Aug 06, 2018 5:30 pm
Forum: Annotations
Topic: AddAnnotationFromXML
Replies: 13
Views: 20912

Re: AddAnnotationFromXML

When the annotations are loaded manually like this, it only happens server side so you won't have any visual feedback of the operation until you explicitly refresh the client side using the dedicated method: http://www.docuvieware.com/guides/aspnet/webframe.html#GdPicture.NET.14.WEB.DocuVieware~GdPi...
by Cedric
Mon Jul 09, 2018 10:19 am
Forum: DocuVieware
Topic: Cache Folder must be specified to start upload process
Replies: 1
Views: 4828

Re: Cache Folder must be specified to start upload process

Hello, You need to use the DocuViewareManager.SetupConfiguration static method documented here: http://www.docuvieware.com/guides/aspnet/webframe.html#GdPicture.NET.14.WEB.DocuVieware~GdPicture14.WEB.DocuViewareManager~SetupConfiguration(Boolean,DocuViewareSessionStateMode,String).html We will updat...
by Cedric
Tue Feb 27, 2018 6:42 pm
Forum: TWAIN & WIA Acquisition
Topic: Language of select source dialog
Replies: 3
Views: 9758

Re: Language of select source dialog

This is not possible because this window belongs to the TWAIN Data Source Manager, it is not a GdPicture window nor a device driver window.
by Cedric
Tue Jan 23, 2018 12:19 pm
Forum: DocuVieware
Topic: Keystrokes
Replies: 1
Views: 3294

Re: Keystrokes

Hi Igor, DocuVieware has been designed to be primarily used with a mouse (or a finger in case of touch device). Those are simply the browser default behavior when the focus is on a scrollable DIV element and we did not implemented specific keystrokes outside of the regular browser behavior as we don...
by Cedric
Wed Jan 10, 2018 11:56 am
Forum: Office Open XML & Open Document
Topic: Docx to PDF GDPicture 14
Replies: 1
Views: 8995

Re: Docx to PDF GDPicture 14

Hello It seems that it might be a bug, I don't see anything wrong with your code. Could you please open a support ticket on the support platform here: https://support.orpalis.com/index.php?/Tickets/Submit/ and provide the full working code snippet as well as a sample input document so the developmen...
by Cedric
Thu Nov 23, 2017 12:03 pm
Forum: COM interoperability
Topic: Updating gdPicture COM based
Replies: 3
Views: 11970

Re: Updating gdPicture COM based

Yes, this is correct, COM components usually require this procedure to be updated without facing issues with registration.
by Cedric
Fri Nov 17, 2017 2:36 pm
Forum: DocuVieware
Topic: Annotations - keep recent settings
Replies: 2
Views: 6336

Re: Annotations - keep recent settings

I was thinking about registering on annotation added/edited event, executing JS custom action with annotation ID in params, reading all properties of annotation on the server-side and storing them in DB. Unfortunately, I didn't find any server-side method which could let me to set default propertie...