ImageEn for Delphi and C++ Builder ImageEn for Delphi and C++ Builder

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
Forum membership is Free!  Click Join to sign-up
Username:
Password:
Save Password
Forgot your Password?

 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 How to save Acuired images using ImageEnMView
 New Topic  Reply to Topic
Author  Topic Next Topic  

ghazaliove

Algeria
2 Posts

Posted - Feb 28 2026 :  04:55:31  Show Profile  Reply
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

xequte

39337 Posts

Posted - Mar 01 2026 :  00:34:33  Show Profile  Reply
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
Go to Top of Page

ghazaliove

Algeria
2 Posts

Posted - Mar 01 2026 :  03:03:24  Show Profile  Reply
Hello,
the ABitmap.SaveToFile( filename); : SaveToFile dosnt existe in Imageen v12.0
[dcc32 Error] uMain.pas(472): E2003 Undeclared identifier: 'SaveToFile'
Go to Top of Page

xequte

39337 Posts

Posted - Mar 01 2026 :  15:21:08  Show Profile  Reply
Hi

You can use ABitmap.Write( Filename );

Nigel
Xequte Software
www.imageen.com
Go to Top of Page
   Topic Next Topic  
 New Topic  Reply to Topic
Jump To: