C# Class ImageTools.IO.Gif.GifImageDescriptor

Each image in the Data Stream is composed of an Image Descriptor, an optional Local Color Table, and the image data. Each image must fit within the boundaries of the Logical Screen, as defined in the Logical Screen Descriptor.
Show file Open project: prepare/HTML-Renderer Class Usage Examples

Public Properties

Property Type Description
Height short
InterlaceFlag bool
Left short
LocalColorTableFlag bool
LocalColorTableSize int
Top short
Width short

Property Details

Height public property

Height of the image in pixels.
public short Height
return short

InterlaceFlag public property

Indicates if the image is interlaced. An image is interlaced in a four-pass interlace pattern.
public bool InterlaceFlag
return bool

Left public property

Column number, in pixels, of the left edge of the image, with respect to the left edge of the Logical Screen. Leftmost column of the Logical Screen is 0.
public short Left
return short

LocalColorTableFlag public property

Indicates the presence of a Local Color Table immediately following this Image Descriptor.
public bool LocalColorTableFlag
return bool

LocalColorTableSize public property

If the Local Color Table Flag is set to 1, the value in this field is used to calculate the number of bytes contained in the Local Color Table.
public int LocalColorTableSize
return int

Top public property

Row number, in pixels, of the top edge of the image with respect to the top edge of the Logical Screen. Top row of the Logical Screen is 0.
public short Top
return short

Width public property

Width of the image in pixels.
public short Width
return short