Description
This .NET enum wraps the AcGiImageOrg ObjectARX enum. It gives the pixel organization scheme of the source image file.
Visual Basic
Public Enum ImageOrg Bitonal Palette Gray RGBA BGRA ARGB ABGR BGR RGB End Enum
C#
public enum ImageOrg { Bitonal, Palette, Gray, RGBA, BGRA, ARGB, ABGR, BGR, RGB }
Members
Members | Description |
---|---|
Bitonal | 1 bit per pixel. |
Palette | 8 bits per pixel, paletted. |
Gray | 8 bits per pixel gray scale (0 = black, 255 = white). |
RGBA | 32 bits, red-green-blue-alpha. |
BGRA | 32 bits, blue-green-red-alpha. |
ARGB | 32 bits, alpha-red-green-blue. |
ABGR | 32 bits, alpha-blue-green-red |
BGR | 24 bits, blue-green-red. |
RGB | 24 bits, red-green-blue. |