summaryrefslogtreecommitdiff
path: root/FORMAT
diff options
context:
space:
mode:
authorFRIGN <dev@frign.de>2016-01-31 00:08:17 +0100
committerFRIGN <dev@frign.de>2016-01-31 00:08:44 +0100
commit7b03f52a130a12355d87bc05f028db31963112cc (patch)
tree213fc281dacf44118d9929cf30c8513971fd3e09 /FORMAT
parentdd22f4087d5e7420929575d1bbaf767d76395e9c (diff)
Move alpha-premultiplication information away from the FORMAT
and rather define it in the manual. In the end, it doesn't influence the data structure and thus is not part of the FORMAT-specification.
Diffstat (limited to 'FORMAT')
-rw-r--r--FORMAT23
1 files changed, 11 insertions, 12 deletions
diff --git a/FORMAT b/FORMAT
index 89d575e..5966df8 100644
--- a/FORMAT
+++ b/FORMAT
@@ -1,15 +1,14 @@
FARBFELD IMAGE FORMAT SPECIFICATION
- +--------+----------------------------------------------+
- | Bytes | Description |
- +--------+----------------------------------------------+
- | 8 | "farbfeld" magic value |
- +--------+----------------------------------------------+
- | 4 | 32-Bit BE unsigned integer (width) |
- +--------+----------------------------------------------+
- | 4 | 32-Bit BE unsigned integer (height) |
- +--------+----------------------------------------------+
- | [2222] | 4*16-Bit BE unsigned integers [RGBA] / pixel |
- | | pixels in rows, not alpha-premultiplied |
- +--------+----------------------------------------------+
+ +--------+-----------------------------------------------------------+
+ | Bytes | Description |
+ +--------+-----------------------------------------------------------+
+ | 8 | "farbfeld" magic value |
+ +--------+-----------------------------------------------------------+
+ | 4 | 32-Bit BE unsigned integer (width) |
+ +--------+-----------------------------------------------------------+
+ | 4 | 32-Bit BE unsigned integer (height) |
+ +--------+-----------------------------------------------------------+
+ | [2222] | 4*16-Bit BE unsigned integers [RGBA] / pixel, row-aligned |
+ +--------+-----------------------------------------------------------+