hi alex
in "VintaSoft Multipage TIFF Demo example" we can add an image from file to imageviewer
how to add a page or multipage from scanner to it.is it possible.if yes please help me with sample code.
thanks in advance
add page from scanner
Moderator: Alex
-
- Site Admin
- Posts: 2406
- Joined: Thu Jul 10, 2008 2:21 pm
Re: add page from scanner
Hello,
VSTwain class has the GetImage method which returns Bitmap object, you can add Bitmap object to the ImageCollection and work with it.
Best regards, Alexander
VSTwain class has the GetImage method which returns Bitmap object, you can add Bitmap object to the ImageCollection and work with it.
Best regards, Alexander
-
- Posts: 2
- Joined: Sun Feb 28, 2010 7:16 am
Re: add page from scanner
thanks Alex
i tesed it and it worked very nice
Excuse me ,other question:
I want to store acquired images as a multipage tiff in database . Can I do this?
i see , it possible with pdf
i write this code like your example:
MemoryStream mem = VSTwain1.GetImageAsStream(0, ImageFileFormat.TIFF);
for (int i=0;i<=VSTwain1.NumImages - 1;i++)
{
VSTwain1.SaveImageToStream(0, mem, ImageFileFormat.TIFF);
}
.
.
.
myCommand.Parameters.Add("@Image", mem.GetBuffer());
but it isnt work
Error is:error at saving the image
thanks thanks
i tesed it and it worked very nice
Excuse me ,other question:
I want to store acquired images as a multipage tiff in database . Can I do this?
i see , it possible with pdf
i write this code like your example:
MemoryStream mem = VSTwain1.GetImageAsStream(0, ImageFileFormat.TIFF);
for (int i=0;i<=VSTwain1.NumImages - 1;i++)
{
VSTwain1.SaveImageToStream(0, mem, ImageFileFormat.TIFF);
}
.
.
.
myCommand.Parameters.Add("@Image", mem.GetBuffer());
but it isnt work
Error is:error at saving the image
thanks thanks