Search found 2307 matches

by Alex
Thu Dec 28, 2023 2:47 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: saveChanges method throw error when used with multiple image
Replies: 1
Views: 225

Re: saveChanges method throw error when used with multiple image

Hello Jwalit, You have error because WebDocumentViewerJS.saveChanges function cannot save 2 JPEG images to a JPEG file because JPEG file can store 1 image only. Please use WebDocumentViewerJS.exportFile or WebDocumentViewerJS.exportAndDownloadFile functions and save 2 JPEG images to a TIFF or PDF fi...
by Alex
Thu Dec 28, 2023 12:19 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Upload image from URL does not work with Azure Blob url
Replies: 8
Views: 1066

Re: Upload image from URL does not work with Azure Blob url

Hello Jwalit,

Binary data can be sent only as a part of form data.

HTTP REST API does not allow to send binary data directly, i.e. binary data must be encoded to a base64-string.

VintaSoft Web Document Viewer can work base64-images.

Best regards, Alexander
by Alex
Thu Dec 28, 2023 12:12 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Two image viewer and thumbnail viewer in single document viewer
Replies: 3
Views: 234

Re: Two image viewer and thumbnail viewer in single document viewer

Hello Jwalit,

Vintasoft Web Document Viewer is a web control that allows to use 1 web image viewer and 1 thumbnail viewer.

If you want to use several viewers, you can create custom web control by yourself.

Best regards, Alexander
by Alex
Wed Dec 27, 2023 12:05 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Upload image from URL does not work with Azure Blob url
Replies: 8
Views: 1066

Re: Upload image from URL does not work with Azure Blob url

Hello Jwalit, Thank you for information. JPEG image from URL is rendering during long time because web service sends many requests (200+) to the URL. We increased the buffer size in HTTP streaming stream and now web service sends only 1 request for each image tile. Now image from your URL is rendere...
by Alex
Mon Dec 25, 2023 3:30 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Upload image from URL does not work with Azure Blob url
Replies: 8
Views: 1066

Re: Upload image from URL does not work with Azure Blob url

Hello Jwalit, "Upload image from URL" functionality uses byte-range requests to get the file data, i.e. web service uses lazy loading of file bytes and web service does not download the whole file to a web server. If server does not support byte-range requests, web service needs to downloa...
by Alex
Fri Dec 22, 2023 12:07 pm
Forum: Announcements
Topic: Version 12.3 of VintaSoft Imaging .NET SDK has been released.
Replies: 9
Views: 6898

Version 12.3.2.1 of VintaSoft Imaging .NET SDK has been released.

Version 12.3.2.1 of VintaSoft Imaging .NET SDK has been released. What's new in this version of VintaSoft Imaging .NET SDK: Web development Improved the thumbnail selection in web thumbnail viewer. Improved the algorithm that renders stamp-annotation. Added improvements in code of AspNetCoreFileConv...
by Alex
Wed Dec 13, 2023 7:21 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Version 12.3 : Net core API GetImageFileInfo response error
Replies: 6
Views: 14012

Re: Version 12.3 : Net core API GetImageFileInfo response error

Hi Jwalit, Data storage concatenates the storage folder path and file name if file path is necessary. In your case: 1. The storage folder path is "C:/Jwalit/Sample Files/{sessionId}/" 2. File name is "24521447.tif" Please make sure that your computer has file with path "C:/J...
by Alex
Tue Dec 12, 2023 10:24 am
Forum: Announcements
Topic: Version 12.3 of VintaSoft Imaging .NET SDK has been released.
Replies: 9
Views: 6898

Version 12.3.1.1 of VintaSoft Imaging .NET SDK has been released.

Version 12.3.1.1 of VintaSoft Imaging .NET SDK has been released. What's new in this version of VintaSoft Imaging .NET SDK: Web development Web document viewer Improved the algorithm that renders documents in vector mode. Now the algorithm renders a document in vector form only if the document can b...
by Alex
Thu Dec 07, 2023 5:46 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Version 12.3 : Net core API GetImageFileInfo response error
Replies: 6
Views: 14012

Re: Version 12.3 : Net core API GetImageFileInfo response error

Hello Jwalit, For solving the problem you need to do the following steps: In each Vintasoft API controller override the CreateSessionDataStorage method: protected override IDataStorage CreateSessionDataStorage(string sessionId) { if (sessionId == null) { if (IsEmptySessionSupported) sessionId = &quo...
by Alex
Wed Dec 06, 2023 10:50 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Delete Vintasoft Cache automatically in web document viewer
Replies: 3
Views: 7626

Re: Delete Vintasoft Cache automatically in web document viewer

Hi Jwalit, Do you want to clear cache in your web application? If yes, please let me know how you are planning to do this? Please remember that clearing of cache (removing of files in cache folder) may take some time. Also I think it is a bad idea to allow clear cache from public web API. Best regar...