BB FlashBack SDK: FBExportToSWFParams

ColorFormat

Description

Determines whether images will be stored with lossless or JPEG compression in the SWF file.

Syntax

[C#/C++]
public long ColorFormat;

[VB.NET]
Public Property ColorFormat As Long

Remarks

Can be one of two values, defined in the Win32 platform SDK:

BI_RGB (=0) : images stored with lossless compression.

BI_JPG (=4) : images stored with JPEG compression.
 

If lossless compression is used, the CompressLevel property determines the amount of compression. The only valid values for BitsCount are 8, 16, 32. Behavior with other values is undefined.

If JPEG compression is used, the JPEGQuality property determines the amount of compression. The only valid values for BitsCount are 8, 24. Behavior with other values is undefined.

See also

FBExportToSWFParams::BitsCount  FBExportToSWFParams::CompressLevel  FBExportToSWFParams::JPEGQuality