Enum TgaImageType
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.
Namespace: SixLabors.ImageSharp.Formats.Tga
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum TgaImageType : byte
Fields
| Name | Description |
|---|---|
| BlackAndWhite | Uncompressed Black and white (grayscale) image. |
| ColorMapped | Uncompressed, color mapped image. |
| NoImageData | No image data included. |
| RleBlackAndWhite | Run length encoded, black and white (grayscale) image. |
| RleColorMapped | Run length encoded, color mapped image. |
| RleTrueColor | Run length encoded, true color image. |
| TrueColor | Uncompressed true color image. |