2 * QImageIO Routines to read/write JPEG2000 images.
3 * copyright (c) 2002 Michael Ritzert <michael@ritzert.de>
5 * This library is distributed under the conditions of the GNU LGPL.
10 #include <QtGui/QImageIOPlugin>
12 class JP2Handler
: public QImageIOHandler
16 virtual ~JP2Handler();
19 bool read(QImage
*image
);
20 bool write(const QImage
&image
);
22 QByteArray
name() const;
23 bool supportsOption(ImageOption option
) const;
24 QVariant
option(ImageOption option
) const;
26 static bool canRead(QIODevice
*device
);