Go to the
documentation of this file.
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifndef QIMAGEWRITER_H
00043 #define QIMAGEWRITER_H
00044
00045 #include <QtCore/qbytearray.h>
00046 #include <QtCore/qlist.h>
00047 #include <QtGui/qimageiohandler.h>
00048
00049 QT_BEGIN_HEADER
00050
00051 QT_BEGIN_NAMESPACE
00052
00053 QT_MODULE(Gui)
00054
00055 class QIODevice;
00056 class QImage;
00057
00058 class QImageWriterPrivate;
00059 class Q_GUI_EXPORT QImageWriter
00060 {
00061 public:
00062 enum ImageWriterError {
00063 UnknownError,
00064 DeviceError,
00065 UnsupportedFormatError
00066 };
00067
00068 QImageWriter();
00069 explicit QImageWriter(QIODevice *device, const QByteArray &format);
00070 explicit QImageWriter(const QString &fileName, const QByteArray &format = QByteArray());
00071 ~QImageWriter();
00072
00073 void setFormat(const QByteArray &format);
00074 QByteArray format() const;
00075
00076 void setDevice(QIODevice *device);
00077 QIODevice *device() const;
00078
00079 void setFileName(const QString &fileName);
00080 QString fileName() const;
00081
00082 void setQuality(int quality);
00083 int quality() const;
00084
00085 void setCompression(int compression);
00086 int compression() const;
00087
00088 void setGamma(float gamma);
00089 float gamma() const;
00090
00091
00092 void setDescription(const QString &description);
00093 QString description() const;
00094
00095 void setText(const QString &key, const QString &text);
00096
00097 bool canWrite() const;
00098 bool write(const QImage &image);
00099
00100 ImageWriterError error() const;
00101 QString errorString() const;
00102
00103 bool supportsOption(QImageIOHandler::ImageOption option) const;
00104
00105 static QList<QByteArray> supportedImageFormats();
00106
00107 private:
00108 Q_DISABLE_COPY(QImageWriter)
00109 QImageWriterPrivate *d;
00110 };
00111
00112 QT_END_NAMESPACE
00113
00114 QT_END_HEADER
00115
00116 #endif // QIMAGEWRITER_H