InterlaceType

enum InterlaceType : Enum<InterlaceType>

InterlaceType specifies the ordering of the red, green, and blue pixel information in the image. Interlacing is usually used to make image information available to the user faster by taking advantage of the space vs time tradeoff. For example, interlacing allows images on the Web to be recognizable sooner and satellite images to accumulate/render with image resolution increasing over time.

 

Use LineInterlace or PlaneInterlace to create an interlaced GIF or progressive JPEG image.

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Similar to plane interlaing except that the different planes are saved to individual files (e.g. image.R, image.G, and image.B)

Link copied to clipboard

Use plane interlacing (RRRRRR...GGGGGG...BBBBBB...)

Link copied to clipboard

Use scanline interlacing (RRR...GGG...BBB...RRR...GGG...BBB...)

Link copied to clipboard

Don't interlace image (RGBRGBRGBRGBRGBRGB...)

Link copied to clipboard

Unset value.

Properties

Link copied to clipboard
val name: String
Link copied to clipboard
val ordinal: Int