summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2024-05-06 20:35:49 -0600
committerDavid Faure <faure@kde.org>2024-06-01 19:23:24 +0000
commitcdccf96e605975766306189e9881ef5843c7f87d (patch)
tree3298cd7270548bd3f189f22e8d1f344007a42fa3
parentc9d379c8ee92251cd10c2b9014bb41effadc07b0 (diff)
Add image/x-kiss-cel
GIMP supports this image file format. "Cel" is short for "celluloid" and is not a typo. The test suite already had a KiSS cel file and says that it is supposed to be image/x-cel, but I could not find any examples of anyone using image/x-cel in practice. On the other hand, I did find an example of image/x-kiss-cel being used and it's a better name anyway because the .cel file extension is also used for Autodesk Animator cel image files and Lumena "cell outline" images. https://gitlab.gnome.org/GNOME/gimp/-/blob/GIMP_2_10_38/plug-ins/common/file-cel.c https://en.wikipedia.org/wiki/Cel https://snisurset.net/code/abydos/formats.html http://justsolve.archiveteam.org/wiki/KiSS_CEL http://justsolve.archiveteam.org/wiki/Animator_PIC/CEL http://justsolve.archiveteam.org/wiki/Lumena_CEL
-rw-r--r--data/freedesktop.org.xml.in10
-rw-r--r--tests/mime-detection/list2
2 files changed, 11 insertions, 1 deletions
diff --git a/data/freedesktop.org.xml.in b/data/freedesktop.org.xml.in
index 41c7ef6..a2a8b87 100644
--- a/data/freedesktop.org.xml.in
+++ b/data/freedesktop.org.xml.in
@@ -6416,6 +6416,16 @@ command to generate the output files.
<comment>X window image</comment>
<glob pattern="*.xwd"/>
</mime-type>
+ <mime-type type="image/x-kiss-cel">
+ <comment>KiSS cel</comment>
+ <acronym>KiSS</acronym>
+ <expanded-acronym>Kisekae Set System</expanded-acronym>
+ <magic>
+ <match type="string" value="KiSS" offset="0"/>
+ </magic>
+ <glob pattern="*.cel"/>
+ <glob pattern="*.kcf"/>
+ </mime-type>
<mime-type type="inode/blockdevice">
<comment>Block device</comment>
</mime-type>
diff --git a/tests/mime-detection/list b/tests/mime-detection/list
index 3879ed5..1aa89a0 100644
--- a/tests/mime-detection/list
+++ b/tests/mime-detection/list
@@ -10,7 +10,7 @@
# Images
test.bmp image/bmp
-test.cel image/x-cel xxx
+test.cel image/x-kiss-cel
test.dcm application/dicom
test.eps image/x-eps
# https://bugs.freedesktop.org/show_bug.cgi?id=55264