Search found 3 matches

by jeffrey
Thu Sep 04, 2008 5:40 pm
Forum: VintaSoft Twain .NET SDK Discussions
Topic: VSTwain1_ImageAcquired And Viewer
Replies: 3
Views: 8587

Re: VSTwain1_ImageAcquired And Viewer

Thanks Alex! That did the trick.
by jeffrey
Thu Sep 04, 2008 8:11 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: VSTwain1_ImageAcquired And Viewer
Replies: 3
Views: 8587

Re: VSTwain1_ImageAcquired And Viewer

Additional info. I added the following code to work around my issue. In the VSTwain1.ImageAcquired event I used VSTwain1.SaveImage(VSTwain1.NumImages - 1, fpath) where fpath is a temp path to store the file on disk. I then add the image from disk to the Imageviewer like this. Me.ImageViewer1.Images....
by jeffrey
Thu Sep 04, 2008 7:41 am
Forum: VintaSoft Twain .NET SDK Discussions
Topic: VSTwain1_ImageAcquired And Viewer
Replies: 3
Views: 8587

VSTwain1_ImageAcquired And Viewer

What is the best way to add an acquired image to a Vintasoft.Imaging.ImageViewer? I have placed the following code in the VSTwain1_ImageAcquired event and seems to work with an exception to gray scale images. Private Sub VSTwain1_ImageAcquired(ByVal sender As Object, ByVal e As System.EventArgs) Han...