| T O P I C R E V I E W |
| ghazaliove |
Posted - Feb 28 2026 : 04:55:31 Hello, im trying to use the AlAcquire.exe demo, im using Brother ADS-2400N scanner to acquire multiple documents. The documents appear in the ImageEnMView1 component as i want. How to save the acquired images into the disk "d:\scanned"
Should i use: ImageEnMView1.MIO.Acquire(); or use the ImageEnMView1AcquireBitmap(Sender: TObject; ABitmap: TIEBitmap; DpiX, DpiY: Integer; var Handled: Boolean); event from object inspector
Thanks |
| 3 L A T E S T R E P L I E S (Newest First) |
| xequte |
Posted - Mar 01 2026 : 15:21:08 Hi
You can use ABitmap.Write( Filename );
Nigel Xequte Software www.imageen.com
|
| ghazaliove |
Posted - Mar 01 2026 : 03:03:24 Hello, the ABitmap.SaveToFile( filename); : SaveToFile dosnt existe in Imageen v12.0 [dcc32 Error] uMain.pas(472): E2003 Undeclared identifier: 'SaveToFile' |
| xequte |
Posted - Mar 01 2026 : 00:34:33 Hi
You've got a few options here.
You can use the AcquireBitmap event, saving the bitmap as per the example at:
http://www.imageen.com/help/TImageEnMView.OnAcquireBitmap.html
(Optionally setting Handled to true if you don't want to add to the TImageEnMView).
Or once the acquire completes, you can save all or some of the frames in the TImageEnMView,
e.g.
// Save all as pages of a PDF ImageEnMView1.MIO.SaveToFilePDF( 'D:\acquired.pdf' );
// Save individual frame... ImageEnMView1.GetImageToFile(0, 'acquired1.jpeg');
http://www.imageen.com/help/TImageEnMView.GetImageToFile.html
Nigel Xequte Software www.imageen.com
|