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

 

ImageEn Forum
Profile    Join    Active Topics    Forum FAQ    Search this forumSearch
 All Forums
 ImageEn Library for Delphi, C++ and .Net
 ImageEn and IEvolution Support Forum
 How to save Acuired images using ImageEnMView

Note: You must be registered in order to post a reply.
To register, click here. Registration is FREE!

View 
UserName:
Password:
Format  Bold Italicized Underline  Align Left Centered Align Right  Horizontal Rule  Insert Hyperlink   Browse for an image to attach to your post Browse for a zip to attach to your post Insert Code  Insert Quote Insert List
   
Message 

 

Emoji
Smile [:)] Big Smile [:D] Cool [8D] Blush [:I]
Tongue [:P] Evil [):] Wink [;)] Black Eye [B)]
Frown [:(] Shocked [:0] Angry [:(!] Sleepy [|)]
Kisses [:X] Approve [^] Disapprove [V] Question [?]

 
Check here to subscribe to this topic.
   

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