C# Class ImageTools.IO.Gif.GifLogicalScreenDescriptor

The Logical Screen Descriptor contains the parameters necessary to define the area of the display device within which the images will be rendered
Show file Open project: prepare/HTML-Renderer Class Usage Examples

Public Properties

Property Type Description
Background byte
GlobalColorTableFlag bool
GlobalColorTableSize int
Height short
Width short

Property Details

Background public property

Index into the Global Color Table for the Background Color. The Background Color is the color used for those pixels on the screen that are not covered by an image.
public byte Background
return byte

GlobalColorTableFlag public property

Flag indicating the presence of a Global Color Table; if the flag is set, the Global Color Table will immediately follow the Logical Screen Descriptor.
public bool GlobalColorTableFlag
return bool

GlobalColorTableSize public property

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

Height public property

Height, in pixels, of the Logical Screen where the images will be rendered in the displaying device.
public short Height
return short

Width public property

Width, in pixels, of the Logical Screen where the images will be rendered in the displaying device.
public short Width
return short