diff options
author | Alex Henrie <alexhenrie24@gmail.com> | 2024-05-06 20:35:49 -0600 |
---|---|---|
committer | David Faure <faure@kde.org> | 2024-06-01 19:23:24 +0000 |
commit | cdccf96e605975766306189e9881ef5843c7f87d (patch) | |
tree | 3298cd7270548bd3f189f22e8d1f344007a42fa3 /data | |
parent | c9d379c8ee92251cd10c2b9014bb41effadc07b0 (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
Diffstat (limited to 'data')
-rw-r--r-- | data/freedesktop.org.xml.in | 10 |
1 files changed, 10 insertions, 0 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> |