Search found 3 matches

by pjcruz
Thu Aug 26, 2010 11:27 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Save annotation image to JPEG
Replies: 3
Views: 7615

Re: Save annotation image to JPEG

I already figure it out i just did :

Code: Select all

Dim jpegEncoder As New JpegEncoder
annotationViewer1.Images.SetSaveAnnotations(True)
annotationViewer1.Image.Save("C:\folder\tmp.jpeg", jpegEncoder)
Thanks for your help
by pjcruz
Thu Aug 26, 2010 5:09 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Save annotation image to JPEG
Replies: 3
Views: 7615

Re: Save annotation image to JPEG

Here is an example that shows how to save image with annotations in JPEG format into memory stream: MemoryStream stream = new MemoryStream(); JpegEncoder jpegEncoder = new JpegEncoder(); vsImage.SaveAnnotations = true; vsImage.Save(stream, jpegEncoder); Thanks for your reply, what exactly is the vs...
by pjcruz
Wed Aug 25, 2010 7:49 pm
Forum: VintaSoft Imaging .NET SDK and Plug-ins Discussions
Topic: Save annotation image to JPEG
Replies: 3
Views: 7615

Save annotation image to JPEG

Hi, How can I save the image with the annotations to JPEG format?