Enum TgaImageType
- Namespace
- SixLabors.ImageSharp.Formats.Tga
- Assembly
- SixLabors.ImageSharp.dll
Defines the tga image type. The TGA File Format can be used to store Pseudo-Color, True-Color and Direct-Color images of various pixel depths.
public enum TgaImageType : byte
- Extension Methods
Fields
BlackAndWhite = 3
Uncompressed Black and white (grayscale) image.
ColorMapped = 1
Uncompressed, color mapped image.
NoImageData = 0
No image data included.
RleBlackAndWhite = 11
Run length encoded, black and white (grayscale) image.
RleColorMapped = 9
Run length encoded, color mapped image.
RleTrueColor = 10
Run length encoded, true color image.
TrueColor = 2
Uncompressed true color image.