Farbfeld
From Just Solve the File Format Problem
(Difference between revisions)
(PRONOM) |
(Added sample files and software that can open them) |
||
Line 14: | Line 14: | ||
== Description == | == Description == | ||
Start with header, and then data. Header consist of ASCII text "<code>farbfeld</code>", and then 32-bit width, and then 32-bit height. Data is starting top left corner and going right, each pixel is: 16-bits red, 16-bits green, 16-bits blue, 16-bits alpha. All numbers are unsigned big-endian. | Start with header, and then data. Header consist of ASCII text "<code>farbfeld</code>", and then 32-bit width, and then 32-bit height. Data is starting top left corner and going right, each pixel is: 16-bits red, 16-bits green, 16-bits blue, 16-bits alpha. All numbers are unsigned big-endian. | ||
+ | |||
+ | == Software == | ||
+ | * {{Deark}} | ||
+ | * [http://snisurset.net/code/abydos/ abydos] | ||
== See also == | == See also == | ||
* [[Farbfeld Utilities]] | * [[Farbfeld Utilities]] | ||
+ | |||
+ | == Sample files == | ||
+ | * https://telparia.com/fileFormatSamples/image/farbfeld/ | ||
== Links == | == Links == |
Revision as of 21:00, 31 July 2020
farbfeld is a simple uncompressed raster graphics format (for use with pipes). It supports 16 bits/sample RGBA color.
Contents |
Identification
Files begin with ASCII "farbfeld
".
Description
Start with header, and then data. Header consist of ASCII text "farbfeld
", and then 32-bit width, and then 32-bit height. Data is starting top left corner and going right, each pixel is: 16-bits red, 16-bits green, 16-bits blue, 16-bits alpha. All numbers are unsigned big-endian.
Software
See also
Sample files
Links