Search found 31 matches

by jwalit.katira
Wed Jan 10, 2024 5:10 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Array of multiple images send mutiple request for DeserializeAnnotationCollection
Replies: 5
Views: 2242

Re: Array of multiple images send mutiple request for DeserializeAnnotationCollection

Hello Alex, We are using documentviewer and imageviewer below is the code how we call from JS let images = [ "0.jpg", "1.jpg", "2.jpg", "3.jpg", "4.jpg", "5.jpg", ] imageViewer = docViewer.get_ImageViewer(); imageViewer.get_Images().openFil...
by jwalit.katira
Wed Jan 10, 2024 7:19 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Array of multiple images send mutiple request for DeserializeAnnotationCollection
Replies: 5
Views: 2242

Array of multiple images send mutiple request for DeserializeAnnotationCollection

Hello,

In ASP.NET Core API When we are trying to open multiple file using array of jpg using openfile() Method , it send multiple request for DeserializeAnnotationCollection method even though only one image is display on document viewer.

Can you please share your input

Thanks
Jwalit Katira
by jwalit.katira
Tue Jan 09, 2024 6:00 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: 1972

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

Hello In .NET core we have override CreateSessionDataStorage method to give response as blob stream , below is sample code protected override IDataStorage CreateSessionDataStorage(string sessionId) { return new BlobDataStorage(); } public class BlobDataStorage : IDataStorage { public object GetItemC...
by jwalit.katira
Thu Jan 04, 2024 6: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: 1859

Cannot create decoder for 1.jpg file in linux docker

Hello,

We are getting error from .net core webapi "Cannot create decoder for 1.jpg file" when we run API code in docker linux , Same code is working fine when we run api as normal HTTP

can you check the issue

Thanks
Jwalit Katira
by jwalit.katira
Mon Jan 01, 2024 2:23 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: 2858

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

Hello Alex, We checked with CreateSessionDataStorage for send base64string as response of GetItemCopy method (ref : https://www.vintasoft.com/docs/vsimaging-dotnet-web/Programming-Imaging_Web-Tutorials-How_To_View_Images_From_Database.html ) but we are getting below error : { "files": null...
by jwalit.katira
Mon Jan 01, 2024 2:14 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Two image viewer and thumbnail viewer in single document viewer
Replies: 3
Views: 2042

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

Hello Alex ,

As we are looking for multiple point so we have many queries for you , also we did use two document viewer in same page and it is working , do you have any suggestion not to do that way.

Thanks
Jwalit Katira
by jwalit.katira
Thu Dec 28, 2023 2:03 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: saveChanges method throw error when used with multiple image
Replies: 1
Views: 1966

saveChanges method throw error when used with multiple image

Hello , I have open multiple images in web document viewer using array below is the sample code let images = [ "0.jpg", "1.jpg", "2.jpg", ]; imageViewer.get_Images().openFiles(images); After that we have deleted 0.jpg and save that changes using below code let index = d...
by jwalit.katira
Thu Dec 28, 2023 7:27 am
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Two image viewer and thumbnail viewer in single document viewer
Replies: 3
Views: 2042

Two image viewer and thumbnail viewer in single document viewer

Hello Can we have two image viewer and two thumbnail viewer in single document viewer which will open different images, the functionality like rotate and zoom should work on the selected image viewer . please find below image for reference https://advblobimagestorage.blob.core.windows.net/images/ima...
by jwalit.katira
Wed Dec 27, 2023 4:31 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: 2858

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

Hello Alex, Thanks for the update , we will be looking forward for the version release. Also can you please suggest if we want to directly work with byte array of file and not the file stream as response of .Net core API , As we do not want to save file in file server , How can it be achieved Thanks...
by jwalit.katira
Tue Dec 26, 2023 4:36 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: 2858

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

Hello Alex, As our images are saved in azure blob storage we want to directly use them without saving in backend and Yes we want to prevent saving of JPEG file on client computer, can you show how to achieve this. Also After we made some property changes in Azure portal we are now not getting error ...