Search found 2305 matches

by Alex
Tue Jan 09, 2024 7:56 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Mutiple Jpg image in Array is taking time with azure blob response
Replies: 1
Views: 219

Re: Mutiple Jpg image in Array is taking time with azure blob response

Hello Jwalit, Please do the following test: Create console application that creates BlobClient object and reads data from 1260 blobs. Run the application and measure the execution time. Create console application that reads bytes from 1260 file streams. Run the application and measure the execution ...
by Alex
Tue Jan 09, 2024 7:47 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Out of Memory Exception with Thumbnail Viewer open in Portrait orientation
Replies: 3
Views: 284

Re: Out of Memory Exception with Thumbnail Viewer open in Portrait orientation

Hello Nick, Could you provide us your document for tests? If yes, please upload your file to any free upload server (for example Google Drive) and send us (to support@vintasoft.com) link for downloading the file. If file contains sensitive data, please place file in archive with strong password. Bes...
by Alex
Fri Jan 05, 2024 3:36 pm
Forum: VintaSoft Annotation .NET Plug-in Discussions
Topic: GPU for Image Processing and OCR
Replies: 1
Views: 302

Re: GPU for Image Processing and OCR

Hello,

At the moment we do not plan to use CUDA GPU in our SDK.

Could you send more information about your task and why do you think that CUDA GPU will increase performance of your task?

Best regards, Alexander
by Alex
Thu Jan 04, 2024 4:38 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: What to use for linux site license
Replies: 3
Views: 227

Re: What to use for linux site license

Please contact sales at sales@vintasoft.com.

Best regards, Alexander
by Alex
Thu Jan 04, 2024 11:43 am
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,

If you created web control, which uses 2 image viewers, and your control is working correctly - please use your control, architecture is open.

Best regards, Alexander
by Alex
Thu Jan 04, 2024 11:41 am
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, Data storage can store data of any type. You are using example that demonstrates how to create data storage based on streams: ... public bool CanStore(Type type) { // specify that data storage can work only with images, which are stored in Stream objects if (typeof(Stream).IsAssignable...
by Alex
Thu Jan 04, 2024 11:37 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Cannot create decoder for 1.jpg file in linux docker
Replies: 1
Views: 158

Re: Cannot create decoder for 1.jpg file in linux docker

Hello Jwalit,

JPEG decoder is internal decoder and it is stored in Vintasoft.Imaging.dll, i.e. JPEG decoder is always available.

Please check that "1.jpg" file is really JPEG file.

If you are loading file from stream, please check that stream position is 0.

Best regards, Alexander
by Alex
Thu Jan 04, 2024 11:32 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: What to use for linux site license
Replies: 3
Views: 227

Re: What to use for linux site license

Hi Chintah, Please see list of available licenses here: https://www.vintasoft.com/register.html Also please read the license agreement here: https://www.vintasoft.com/vsimaging-dotnet-license.html If you still not found answer to your question, please contact sales at sales@vintasoft.com. Best regar...
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