[][src]Module image::farbfeld

Decoding of farbfeld images

farbfeld is a lossless image format which is easy to parse, pipe and compress.

It has the following format:

BytesDescription
8"farbfeld" magic value
432-Bit BE unsigned integer (width)
432-Bit BE unsigned integer (height)
[2222]4⋅16-Bit BE unsigned integers [RGBA] / pixel, row-major

The RGB-data should be sRGB for best interoperability and not alpha-premultiplied.

Related Links

Structs

FarbfeldDecoder

farbfeld decoder

FarbfeldEncoder

farbfeld encoder

FarbfeldReader

farbfeld Reader