mirror of
https://bitbucket.org/smil3y/katie.git
synced 2025-02-24 10:52:56 +00:00
remove gif support leftovers
Signed-off-by: Ivailo Monev <xakepa10@gmail.com>
This commit is contained in:
parent
956c0274b7
commit
252743f18d
11 changed files with 2 additions and 7 deletions
|
@ -314,7 +314,6 @@ bool QImageData::checkForAlphaPixels() const
|
||||||
|
|
||||||
\table
|
\table
|
||||||
\header \o Format \o Description \o Katie's support
|
\header \o Format \o Description \o Katie's support
|
||||||
\row \o GIF \o Graphic Interchange Format (optional) \o Read
|
|
||||||
\row \o PNG \o Portable Network Graphics \o Read/write
|
\row \o PNG \o Portable Network Graphics \o Read/write
|
||||||
\row \o PBM \o Portable Bitmap \o Read
|
\row \o PBM \o Portable Bitmap \o Read
|
||||||
\row \o PGM \o Portable Graymap \o Read
|
\row \o PGM \o Portable Graymap \o Read
|
||||||
|
|
|
@ -155,7 +155,7 @@
|
||||||
knows which image formats your plugin supports.
|
knows which image formats your plugin supports.
|
||||||
|
|
||||||
Different plugins can support different capabilities. For example,
|
Different plugins can support different capabilities. For example,
|
||||||
you may have one plugin that supports reading the GIF format, and
|
you may have one plugin that supports reading the SVG format, and
|
||||||
another that supports writing. Qt will select the correct plugin
|
another that supports writing. Qt will select the correct plugin
|
||||||
for the job, depending on the return value of capabilities(). If
|
for the job, depending on the return value of capabilities(). If
|
||||||
several plugins support the same capability, Qt will select one
|
several plugins support the same capability, Qt will select one
|
||||||
|
@ -503,7 +503,7 @@ QImageIOPlugin::~QImageIOPlugin()
|
||||||
Returns the list of image keys this plugin supports.
|
Returns the list of image keys this plugin supports.
|
||||||
|
|
||||||
These keys are usually the names of the image formats that are implemented
|
These keys are usually the names of the image formats that are implemented
|
||||||
in the plugin (e.g., "svg" or "gif").
|
in the plugin (e.g., "svg").
|
||||||
|
|
||||||
\sa capabilities()
|
\sa capabilities()
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -1065,7 +1065,6 @@ QByteArray QImageReader::imageFormat(QIODevice *device)
|
||||||
|
|
||||||
\table
|
\table
|
||||||
\header \o Format \o Description
|
\header \o Format \o Description
|
||||||
\row \o GIF \o Graphic Interchange Format (optional)
|
|
||||||
\row \o PNG \o Portable Network Graphics
|
\row \o PNG \o Portable Network Graphics
|
||||||
\row \o PBM \o Portable Bitmap
|
\row \o PBM \o Portable Bitmap
|
||||||
\row \o PGM \o Portable Graymap
|
\row \o PGM \o Portable Graymap
|
||||||
|
|
|
@ -1385,7 +1385,6 @@ QPixmap QPixmap::transformed(const QMatrix &matrix, Qt::TransformationMode mode)
|
||||||
|
|
||||||
\table
|
\table
|
||||||
\header \o Format \o Description \o Qt's support
|
\header \o Format \o Description \o Qt's support
|
||||||
\row \o GIF \o Graphic Interchange Format (optional) \o Read
|
|
||||||
\row \o PNG \o Portable Network Graphics \o Read/write
|
\row \o PNG \o Portable Network Graphics \o Read/write
|
||||||
\row \o PBM \o Portable Bitmap \o Read
|
\row \o PBM \o Portable Bitmap \o Read
|
||||||
\row \o PGM \o Portable Graymap \o Read
|
\row \o PGM \o Portable Graymap \o Read
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 953 B |
Binary file not shown.
Before Width: | Height: | Size: 980 B |
Binary file not shown.
Before Width: | Height: | Size: 2.5 KiB |
Binary file not shown.
Before Width: | Height: | Size: 50 KiB |
Binary file not shown.
Before Width: | Height: | Size: 130 B |
Binary file not shown.
Before Width: | Height: | Size: 42 KiB |
|
@ -80,8 +80,6 @@ tst_QImageReader::tst_QImageReader()
|
||||||
images << QPair<QString, QByteArray>(QLatin1String("runners.ppm"), QByteArray("ppm"));
|
images << QPair<QString, QByteArray>(QLatin1String("runners.ppm"), QByteArray("ppm"));
|
||||||
images << QPair<QString, QByteArray>(QLatin1String("test.ppm"), QByteArray("ppm"));
|
images << QPair<QString, QByteArray>(QLatin1String("test.ppm"), QByteArray("ppm"));
|
||||||
images << QPair<QString, QByteArray>(QLatin1String("gnus.xbm"), QByteArray("xbm"));
|
images << QPair<QString, QByteArray>(QLatin1String("gnus.xbm"), QByteArray("xbm"));
|
||||||
images << QPair<QString, QByteArray>(QLatin1String("earth.gif"), QByteArray("gif"));
|
|
||||||
images << QPair<QString, QByteArray>(QLatin1String("trolltech.gif"), QByteArray("gif"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
tst_QImageReader::~tst_QImageReader()
|
tst_QImageReader::~tst_QImageReader()
|
||||||
|
|
Loading…
Add table
Reference in a new issue