TImageEnIO.SaveToStreamBMP
Declaration
procedure SaveToStreamBMP(Stream: TStream);
Description
Saves the current image to a stream in BMP format.
Note:
◼If
StreamHeaders property is True, it adds an additional special header as needed for multi-image streams.
◼To abort while saving set
Aborting to true
// Saves ImageEnView1 and ImageEnView2 images in file images.dat
// images.dat isn't loadable with LoadFromFileXXX methods
var
fs: TFileStream;
Begin
fs := TFileStream.Create('bmpimages.dat', fmCreate);
ImageEnView1.IO.StreamHeaders := True;
ImageEnView1.IO.SaveToStreamBMP(fs);
ImageEnView2.IO.StreamHeaders := True;
ImageEnView2.IO.SaveToStreamBMP(fs);
fs.free;
End;
// Saves a single image in image.bmp
// image.bmp is loadable with LoadFromFileXXX methods
var
fs: TFileStream;
Begin
fs := TFileStream.Create('image.bmp');
ImageEnView1.IO.StreamHeaders := False;
ImageEnView1.IO.SaveToFileBMP(fs);
End;