ImageEn, unit imageenio

TImageEnIO.SaveToFilePXM

TImageEnIO.SaveToFilePXM


Declaration

procedure SaveToFilePXM(const FileName: WideString);


Description

Saves the current image to a file in PBM, PGM or PPM format.
FileName is the file name including extension.

If the PBM (Portable Bitmap) contains only 1 bpp images (black/white), then the values must be Params.BitsPerPixel = 1 and Params.SamplesPerPixel = 1.
If the PGM (Portable Graymap) contains only 8 bpp images (gray scale), then the values must be Params.BitsPerPixel = 8 and Params.SamplesPerPixel = 1.
If the PPM (Portable Pixmap) contains only 24 bpp images (true color), then the values must be Params.BitsPerPixel = 8 and Params.SamplesPerPixel = 3.

Note:
 If an internal save error is encountered Aborting will return true. Saving issues due to insufficient write permissions and disk write failures will raise an exception.
 To abort while saving set Aborting to true