VintaSoft Twain .NET SDK Discussions
Questions, comments and suggestions concerning VintaSoft Twain .NET SDK.
Board index < VintaSoft Twain < VintaSoft Twain .NET SDK Discussions
private void _device_ImageAcquired(object sender, ImageAcquiredEventArgs e)
{
var filename ='test.jpg";
if (!e.Image.IsBlank(0.01f))
{
e.Image.Save(filename);
}
}
I don't know what is wrong.... someone could point some direction?