An object that represents the pixel format of a raster image.
Hierarchy
System.Object
    WebSupergoo.ImageGlue8.PixelFormat
Interfaces
System.IEquatable<PixelFormat>
Notes

This class is sealed. It cannot be derived from.

Methods
Method Description
PixelFormat Create a PixelFormat object.
Equals Determines whether the specified object is a PixelFormat, value identical to this one.
GetHashCode Obtains a hash code for the PixelFormat.
Operators
Operator Description
Equality Compares two PixelFormats instances for equality.
Inequality Compares two PixelFormats instances for inequality.
Properties
Property Description
Step The size of one pixel in bits. This number is equivalent to the number returned by the System.Drawing Image GetPixelFormatSize function.
Fields
Field Description
Alpha A format representing an eight bit grayscale alpha channel. This is provided for compatibility with System.Drawing.
BitsPerComponent The number of bits used to represent each of the components in the color space.
Channels The content type of each color channel in the format.
ColorSpace The color space for the pixels.
Format16bppGrayScale A format representing sixteen bit grayscale. This is provided for compatibility with System.Drawing.
Format1bppIndexed A format representing indexed color with two values in the color table. This is provided for compatibility with System.Drawing.
Format24bppRgb A format representing eight bit RGB. This is provided for compatibility with System.Drawing.
Format32bppArgb A format representing eight bit RGB with an extra channel for alpha. Components are reversed. This is provided for compatibility with System.Drawing.
Format32bppRgb A format representing eight bit RGB with an extra unused channel. Components are reversed. This is provided for compatibility with System.Drawing.
Format48bppRgb A format representing sixteen bit RGB with an extra unused channel. Components are reversed. This is provided for compatibility with System.Drawing.
Format4bppIndexed A format representing indexed color with sixteen values in the color table. This is provided for compatibility with System.Drawing.
Format64bppArgb A format representing sixteen bit RGB with an extra channel for alpha. Components are reversed. This is provided for compatibility with System.Drawing.
Format8bppIndexed A format representing indexed color with 256 values in the color table. This is provided for compatibility with System.Drawing.
ImageGlueCmyk16 An ImageGlue native format representing sixteen bit CMYK.
ImageGlueCmyk8 An ImageGlue native format representing eight bit CMYK.
ImageGlueGray1 An ImageGlue native format representing one bit grayscale.
ImageGlueGray16 An ImageGlue native format representing sixteen bit grayscale.
ImageGlueGray8 An ImageGlue native format representing eight bit grayscale.
ImageGlueRgb16 An ImageGlue native format representing sixteen bit RGB.
ImageGlueRgb8 An ImageGlue native format representing eight bit RGB.
Palette A color table for use in the case of an indexed color representation.
Example

None.