summaryrefslogtreecommitdiffstats
path: root/devel-docs/pat.txt
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:30:19 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 18:30:19 +0000
commit5c1676dfe6d2f3c837a5e074117b45613fd29a72 (patch)
treecbffb45144febf451e54061db2b21395faf94bfe /devel-docs/pat.txt
parentInitial commit. (diff)
downloadgimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.tar.xz
gimp-5c1676dfe6d2f3c837a5e074117b45613fd29a72.zip
Adding upstream version 2.10.34.upstream/2.10.34upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'devel-docs/pat.txt')
-rw-r--r--devel-docs/pat.txt44
1 files changed, 44 insertions, 0 deletions
diff --git a/devel-docs/pat.txt b/devel-docs/pat.txt
new file mode 100644
index 0000000..36a869f
--- /dev/null
+++ b/devel-docs/pat.txt
@@ -0,0 +1,44 @@
+
+The GIMP Pattern File Format Version 1 (.pat)
+------------------------------------------------
+
+HEADER
+------
+
+Bytes 0 - 3: header_size:
+ Type: 32 bit unsigned int
+ Value: size of pattern header (24) + length of pattern name
+
+Bytes 4 - 7: version
+ Type: 32 bit unsigned int
+ Value: The file format version.
+
+Bytes 8 - 11: width
+ Type: 32 bit unsigned int
+ Value: Pattern width
+
+Bytes 12 - 15: height
+ Type: 32 bit unsigned int
+ Value: Pattern height
+
+Bytes 16 - 19: bytes
+ Type: 32 bit unsigned int
+ Value: Colour depth of pattern
+ 1 = greyscale, 2 = greyscale + A, 3 = RGB, 4 = RGBA
+
+Bytes 20 - 23: magic_number
+ Type: 32 bit unsigned int
+ Value: GIMP pattern magic number.
+ ('G' << 24) + ('P' << 16) + ('A' << 8) + 'T'
+
+Bytes 24 - (header_size - 1):
+ Type: char *
+ Value: UTF-8 string - name of pattern
+
+
+BODY
+----
+ Size: width * height * bytes
+ Type: uchar *
+ Value: Pixel values (row-first) for pattern
+