diff options
author | Timothy Pearson <[email protected]> | 2011-07-10 15:24:15 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2011-07-10 15:24:15 -0500 |
commit | bd0f3345a938b35ce6a12f6150373b0955b8dd12 (patch) | |
tree | 7a520322212d48ebcb9fbe1087e7fca28b76185c /plugins/src/imageformats/jpeg/main.cpp | |
download | qt3-bd0f3345a938b35ce6a12f6150373b0955b8dd12.tar.gz qt3-bd0f3345a938b35ce6a12f6150373b0955b8dd12.zip |
Add Qt3 development HEAD version
Diffstat (limited to 'plugins/src/imageformats/jpeg/main.cpp')
-rw-r--r-- | plugins/src/imageformats/jpeg/main.cpp | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/plugins/src/imageformats/jpeg/main.cpp b/plugins/src/imageformats/jpeg/main.cpp new file mode 100644 index 0000000..d2fa377 --- /dev/null +++ b/plugins/src/imageformats/jpeg/main.cpp @@ -0,0 +1,76 @@ +#ifndef QT_CLEAN_NAMESPACE +#define QT_CLEAN_NAMESPACE +#endif +#include <qimageformatplugin.h> + +#ifndef QT_NO_IMAGEFORMATPLUGIN + +#ifdef QT_NO_IMAGEIO_JPEG +#undef QT_NO_IMAGEIO_JPEG +#endif +#include "../../../../src/kernel/qjpegio.cpp" + +class JPEGFormat : public QImageFormatPlugin +{ +public: + JPEGFormat(); + + QStringList keys() const; + bool loadImage( const QString &format, const QString &filename, QImage * ); + bool saveImage( const QString &format, const QString &filename, const QImage & ); + bool installIOHandler( const QString & ); +}; + +JPEGFormat::JPEGFormat() +{ +} + + +QStringList JPEGFormat::keys() const +{ + QStringList list; + list << "JPEG"; + + return list; +} + +bool JPEGFormat::loadImage( const QString &format, const QString &filename, QImage *image ) +{ + if ( format != "JPEG" ) + return FALSE; + + QImageIO io; + io.setFileName( filename ); + io.setImage( *image ); + + read_jpeg_image( &io ); + + return TRUE; +} + +bool JPEGFormat::saveImage( const QString &format, const QString &filename, const QImage &image ) +{ + if ( format != "JPEG" ) + return FALSE; + + QImageIO io; + io.setFileName( filename ); + io.setImage( image ); + + write_jpeg_image( &io ); + + return TRUE; +} + +bool JPEGFormat::installIOHandler( const QString &name ) +{ + if ( name.upper() != "JPEG" ) + return FALSE; + + qInitJpegIO(); + return TRUE; +} + +Q_EXPORT_PLUGIN( JPEGFormat ) + +#endif // QT_NO_IMAGEFORMATPLUGIN |