SaveLSB property (Main Control)

C++ Builder example

Delphi example

 

Builder Syntax

bool SaveLSB

Delphi Syntax

SaveLSB : Boolean

Overview

Refer to Saving a Bitmap to a File.

Remarks

Indicates whether to save TIFF 1-bit images or RAW uncompressed data least significant bit first or most significant bit first. Possible values are:

Value

Meaning

TRUE

Save TIFF 1-bit or RAW uncompressed images least significant bit first.

FALSE

Save TIFF 1-bit or RAW uncompressed images most significant bit first.

When saving RAW uncompressed data, the bits in each byte can be reversed by setting this property to TRUE.

Saving TIFF 1-bit images least significant bit first is used only when saving uncompressed and fax compressed images.

The default is FALSE (most significant bit first).

To save Class F compatible images, it is recommended that you save files with SaveLSB set to true. In addition, the image’s BitmapXRes should be 204, 300 or 400, and the BitmapYRes should be 98, 196, 300 or 400.

See Also

Elements:

BitmapXRes property, BitmapYRes property, Save method

Topics:

Raster Images: Saving Files