Farbfeld
From Just Solve the File Format Problem
(Difference between revisions)
(Created page with "{{FormatInfo |name=farbfeld |formattype=electronic |subcat=Graphics |extensions={{ext|ff}} |released=2016 }} '''farbfeld''' is a simple uncompressed raster graphics format. It...") |
(Write description) |
||
Line 6: | Line 6: | ||
|released=2016 | |released=2016 | ||
}} | }} | ||
− | '''farbfeld''' is a simple uncompressed raster graphics format. It supports 16 bits/sample RGBA color. | + | '''farbfeld''' is a simple uncompressed raster graphics format (for use with pipes). It supports 16 bits/sample RGBA color. |
== Identification == | == Identification == | ||
Files begin with ASCII "<code>farbfeld</code>". | Files begin with ASCII "<code>farbfeld</code>". | ||
+ | |||
+ | == 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. | ||
== Links == | == Links == |
Revision as of 18:12, 1 July 2017
farbfeld is a simple uncompressed raster graphics format (for use with pipes). It supports 16 bits/sample RGBA color.
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.
Links