qimageiohandler.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. /****************************************************************************
  2. **
  3. ** Copyright (C) 2016 The Qt Company Ltd.
  4. ** Contact: https://www.qt.io/licensing/
  5. **
  6. ** This file is part of the QtGui module of the Qt Toolkit.
  7. **
  8. ** $QT_BEGIN_LICENSE:LGPL$
  9. ** Commercial License Usage
  10. ** Licensees holding valid commercial Qt licenses may use this file in
  11. ** accordance with the commercial license agreement provided with the
  12. ** Software or, alternatively, in accordance with the terms contained in
  13. ** a written agreement between you and The Qt Company. For licensing terms
  14. ** and conditions see https://www.qt.io/terms-conditions. For further
  15. ** information use the contact form at https://www.qt.io/contact-us.
  16. **
  17. ** GNU Lesser General Public License Usage
  18. ** Alternatively, this file may be used under the terms of the GNU Lesser
  19. ** General Public License version 3 as published by the Free Software
  20. ** Foundation and appearing in the file LICENSE.LGPL3 included in the
  21. ** packaging of this file. Please review the following information to
  22. ** ensure the GNU Lesser General Public License version 3 requirements
  23. ** will be met: https://www.gnu.org/licenses/lgpl-3.0.html.
  24. **
  25. ** GNU General Public License Usage
  26. ** Alternatively, this file may be used under the terms of the GNU
  27. ** General Public License version 2.0 or (at your option) the GNU General
  28. ** Public license version 3 or any later version approved by the KDE Free
  29. ** Qt Foundation. The licenses are as published by the Free Software
  30. ** Foundation and appearing in the file LICENSE.GPL2 and LICENSE.GPL3
  31. ** included in the packaging of this file. Please review the following
  32. ** information to ensure the GNU General Public License requirements will
  33. ** be met: https://www.gnu.org/licenses/gpl-2.0.html and
  34. ** https://www.gnu.org/licenses/gpl-3.0.html.
  35. **
  36. ** $QT_END_LICENSE$
  37. **
  38. ****************************************************************************/
  39. #ifndef QIMAGEIOHANDLER_H
  40. #define QIMAGEIOHANDLER_H
  41. #include <QtCore/qiodevice.h>
  42. #include <QtCore/qplugin.h>
  43. #include <QtCore/qfactoryinterface.h>
  44. #include <QtCore/qscopedpointer.h>
  45. QT_BEGIN_NAMESPACE
  46. class QImage;
  47. class QRect;
  48. class QSize;
  49. class QVariant;
  50. class QImageIOHandlerPrivate;
  51. class Q_GUI_EXPORT QImageIOHandler
  52. {
  53. Q_DECLARE_PRIVATE(QImageIOHandler)
  54. public:
  55. QImageIOHandler();
  56. virtual ~QImageIOHandler();
  57. void setDevice(QIODevice *device);
  58. QIODevice *device() const;
  59. void setFormat(const QByteArray &format);
  60. void setFormat(const QByteArray &format) const;
  61. QByteArray format() const;
  62. virtual QByteArray name() const;
  63. virtual bool canRead() const = 0;
  64. virtual bool read(QImage *image) = 0;
  65. virtual bool write(const QImage &image);
  66. enum ImageOption {
  67. Size,
  68. ClipRect,
  69. Description,
  70. ScaledClipRect,
  71. ScaledSize,
  72. CompressionRatio,
  73. Gamma,
  74. Quality,
  75. Name,
  76. SubType,
  77. IncrementalReading,
  78. Endianness,
  79. Animation,
  80. BackgroundColor,
  81. ImageFormat,
  82. SupportedSubTypes,
  83. OptimizedWrite,
  84. ProgressiveScanWrite,
  85. ImageTransformation
  86. #if QT_VERSION < QT_VERSION_CHECK(6, 0, 0)
  87. , TransformedByDefault
  88. #endif
  89. };
  90. enum Transformation {
  91. TransformationNone = 0,
  92. TransformationMirror = 1,
  93. TransformationFlip = 2,
  94. TransformationRotate180 = TransformationMirror | TransformationFlip,
  95. TransformationRotate90 = 4,
  96. TransformationMirrorAndRotate90 = TransformationMirror | TransformationRotate90,
  97. TransformationFlipAndRotate90 = TransformationFlip | TransformationRotate90,
  98. TransformationRotate270 = TransformationRotate180 | TransformationRotate90
  99. };
  100. Q_DECLARE_FLAGS(Transformations, Transformation)
  101. virtual QVariant option(ImageOption option) const;
  102. virtual void setOption(ImageOption option, const QVariant &value);
  103. virtual bool supportsOption(ImageOption option) const;
  104. // incremental loading
  105. virtual bool jumpToNextImage();
  106. virtual bool jumpToImage(int imageNumber);
  107. virtual int loopCount() const;
  108. virtual int imageCount() const;
  109. virtual int nextImageDelay() const;
  110. virtual int currentImageNumber() const;
  111. virtual QRect currentImageRect() const;
  112. protected:
  113. QImageIOHandler(QImageIOHandlerPrivate &dd);
  114. QScopedPointer<QImageIOHandlerPrivate> d_ptr;
  115. private:
  116. Q_DISABLE_COPY(QImageIOHandler)
  117. };
  118. #ifndef QT_NO_IMAGEFORMATPLUGIN
  119. #define QImageIOHandlerFactoryInterface_iid "org.qt-project.Qt.QImageIOHandlerFactoryInterface"
  120. class Q_GUI_EXPORT QImageIOPlugin : public QObject
  121. {
  122. Q_OBJECT
  123. public:
  124. explicit QImageIOPlugin(QObject *parent = Q_NULLPTR);
  125. virtual ~QImageIOPlugin();
  126. enum Capability {
  127. CanRead = 0x1,
  128. CanWrite = 0x2,
  129. CanReadIncremental = 0x4
  130. };
  131. Q_DECLARE_FLAGS(Capabilities, Capability)
  132. virtual Capabilities capabilities(QIODevice *device, const QByteArray &format) const = 0;
  133. virtual QImageIOHandler *create(QIODevice *device, const QByteArray &format = QByteArray()) const = 0;
  134. };
  135. Q_DECLARE_OPERATORS_FOR_FLAGS(QImageIOPlugin::Capabilities)
  136. #endif // QT_NO_IMAGEFORMATPLUGIN
  137. QT_END_NAMESPACE
  138. #endif // QIMAGEIOHANDLER_H