kdelibs/kimgio
Ivailo Monev 0326a6026c kimgio: set the quality to 100 before writing the image from magick handler
partially fixes one gwenview test case, the other part is adjustment in the
test case since some image formats are automatically rotated

Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
2022-05-21 05:29:53 +03:00
..
AUTHORS kimgio: AUTHORS file update [ci skip] 2021-07-27 15:38:15 +03:00
bmp.desktop kimgio: handle BMP, JPEG, TIFF and TGA formats via magick plugin 2021-12-14 21:21:21 +02:00
CMakeLists.txt kimgio: handle PBM, PGM, PPM and XBM via magick plugin 2021-12-16 06:44:38 +02:00
dds.desktop kimgio: replace most plugins with ImageMagick based plugin 2021-07-25 22:25:45 +03:00
eps.desktop kimgio: replace most plugins with ImageMagick based plugin 2021-07-25 22:25:45 +03:00
exr.desktop kimgio: replace most plugins with ImageMagick based plugin 2021-07-25 22:25:45 +03:00
gif.desktop kimgio: handle GIF format via magick plugin 2021-12-15 11:43:00 +02:00
ico.desktop kimgio: handle BMP, JPEG, TIFF and TGA formats via magick plugin 2021-12-14 21:21:21 +02:00
jp2.desktop kimgio: replace most plugins with ImageMagick based plugin 2021-07-25 22:25:45 +03:00
jpg.desktop kimgio: handle BMP, JPEG, TIFF and TGA formats via magick plugin 2021-12-14 21:21:21 +02:00
magick.cpp kimgio: set the quality to 100 before writing the image from magick handler 2022-05-21 05:29:53 +03:00
magick.h kimgio: set the magick handler format to the actual image format 2022-05-21 03:12:22 +03:00
pbm.desktop kimgio: handle PBM, PGM, PPM and XBM via magick plugin 2021-12-16 06:44:38 +02:00
pcx.desktop kimgio: replace most plugins with ImageMagick based plugin 2021-07-25 22:25:45 +03:00
pgm.desktop kimgio: handle PBM, PGM, PPM and XBM via magick plugin 2021-12-16 06:44:38 +02:00
ppm.desktop kimgio: handle PBM, PGM, PPM and XBM via magick plugin 2021-12-16 06:44:38 +02:00
psd.desktop kimgio: replace most plugins with ImageMagick based plugin 2021-07-25 22:25:45 +03:00
qimageio_plugin.desktop initial import 2014-11-13 01:04:59 +02:00
README kimgio: handle PBM, PGM, PPM and XBM via magick plugin 2021-12-16 06:44:38 +02:00
tga.desktop kimgio: handle BMP, JPEG, TIFF and TGA formats via magick plugin 2021-12-14 21:21:21 +02:00
tiff.desktop kimgio: handle BMP, JPEG, TIFF and TGA formats via magick plugin 2021-12-14 21:21:21 +02:00
webp.cpp kimgio: adjust to Katie changes 2022-03-03 02:56:52 +02:00
webp.desktop kimgio: adjust to recent webp MIME type change 2015-11-05 03:48:16 +02:00
webp.h kimgio: adjust to Katie changes 2022-03-03 02:56:52 +02:00
x-dcraw.desktop kimgio: handle RAW format via magick plugin 2021-07-31 22:33:15 +03:00
x-webp.desktop kimgio: adjust to recent webp MIME type change 2015-11-05 03:48:16 +02:00
xbm.desktop kimgio: handle PBM, PGM, PPM and XBM via magick plugin 2021-12-16 06:44:38 +02:00
xcf.desktop kimgio: replace most plugins with ImageMagick based plugin 2021-07-25 22:25:45 +03:00

This directory contains Katie imageformat plugins. See Katie docs for
writing a new handler.

Current formats include:

WEBP    <read> <write>

along with whatever ImageMagick supports but it is assumed that it supports
reading atleast the following formats (even if they cannot be loaded) for
compatibility:

PBM     <read>
PGM     <read>
PPM     <read>
XBM     <read>
BMP     <read>
ICO     <read>
JPEG    <read>
TGA     <read>
TIFF    <read>
GIF     <read>
DDS     <read>
EPS     <read>
EXR     <read>
JP2     <read>
PCX     <read>
PSD     <read>
XCF     <read>
RAW     <read>

If you want to want to contribute plugin for image format and there is no solid
C/C++ library for it (like there is for WebP) then it is unlikely it will be
accepted.