qimage.h 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479
  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 QIMAGE_H
  40. #define QIMAGE_H
  41. #include <QtGui/qcolor.h>
  42. #include <QtGui/qrgb.h>
  43. #include <QtGui/qpaintdevice.h>
  44. #include <QtGui/qpixelformat.h>
  45. #include <QtGui/qtransform.h>
  46. #include <QtCore/qbytearray.h>
  47. #include <QtCore/qrect.h>
  48. #include <QtCore/qstring.h>
  49. #if QT_DEPRECATED_SINCE(5, 0)
  50. #include <QtCore/qstringlist.h>
  51. #endif
  52. QT_BEGIN_NAMESPACE
  53. class QIODevice;
  54. class QStringList;
  55. class QMatrix;
  56. class QTransform;
  57. class QVariant;
  58. template <class T> class QList;
  59. template <class T> class QVector;
  60. struct QImageData;
  61. class QImageDataMisc; // internal
  62. #if QT_DEPRECATED_SINCE(5, 0)
  63. class QImageTextKeyLang {
  64. public:
  65. QT_DEPRECATED QImageTextKeyLang(const char* k, const char* l) : key(k), lang(l) { }
  66. QT_DEPRECATED QImageTextKeyLang() { }
  67. QByteArray key;
  68. QByteArray lang;
  69. bool operator< (const QImageTextKeyLang& other) const
  70. { return key < other.key || (key==other.key && lang < other.lang); }
  71. bool operator== (const QImageTextKeyLang& other) const
  72. { return key==other.key && lang==other.lang; }
  73. inline bool operator!= (const QImageTextKeyLang &other) const
  74. { return !operator==(other); }
  75. private:
  76. friend class QImage;
  77. QImageTextKeyLang(bool /*dummy*/) {}
  78. };
  79. #endif
  80. typedef void (*QImageCleanupFunction)(void*);
  81. class Q_GUI_EXPORT QImage : public QPaintDevice
  82. {
  83. public:
  84. enum InvertMode { InvertRgb, InvertRgba };
  85. enum Format {
  86. Format_Invalid,
  87. Format_Mono,
  88. Format_MonoLSB,
  89. Format_Indexed8,
  90. Format_RGB32,
  91. Format_ARGB32,
  92. Format_ARGB32_Premultiplied,
  93. Format_RGB16,
  94. Format_ARGB8565_Premultiplied,
  95. Format_RGB666,
  96. Format_ARGB6666_Premultiplied,
  97. Format_RGB555,
  98. Format_ARGB8555_Premultiplied,
  99. Format_RGB888,
  100. Format_RGB444,
  101. Format_ARGB4444_Premultiplied,
  102. Format_RGBX8888,
  103. Format_RGBA8888,
  104. Format_RGBA8888_Premultiplied,
  105. Format_BGR30,
  106. Format_A2BGR30_Premultiplied,
  107. Format_RGB30,
  108. Format_A2RGB30_Premultiplied,
  109. Format_Alpha8,
  110. Format_Grayscale8,
  111. #if 0
  112. // reserved for future use
  113. Format_Grayscale16,
  114. #endif
  115. #ifndef Q_QDOC
  116. NImageFormats
  117. #endif
  118. };
  119. QImage() Q_DECL_NOEXCEPT;
  120. QImage(const QSize &size, Format format);
  121. QImage(int width, int height, Format format);
  122. QImage(uchar *data, int width, int height, Format format, QImageCleanupFunction cleanupFunction = Q_NULLPTR, void *cleanupInfo = Q_NULLPTR);
  123. QImage(const uchar *data, int width, int height, Format format, QImageCleanupFunction cleanupFunction = Q_NULLPTR, void *cleanupInfo = Q_NULLPTR);
  124. QImage(uchar *data, int width, int height, int bytesPerLine, Format format, QImageCleanupFunction cleanupFunction = Q_NULLPTR, void *cleanupInfo = Q_NULLPTR);
  125. QImage(const uchar *data, int width, int height, int bytesPerLine, Format format, QImageCleanupFunction cleanupFunction = Q_NULLPTR, void *cleanupInfo = Q_NULLPTR);
  126. #ifndef QT_NO_IMAGEFORMAT_XPM
  127. explicit QImage(const char * const xpm[]);
  128. #endif
  129. explicit QImage(const QString &fileName, const char *format = Q_NULLPTR);
  130. QImage(const QImage &);
  131. #ifdef Q_COMPILER_RVALUE_REFS
  132. inline QImage(QImage &&other) Q_DECL_NOEXCEPT
  133. : QPaintDevice(), d(Q_NULLPTR)
  134. { qSwap(d, other.d); }
  135. #endif
  136. ~QImage();
  137. QImage &operator=(const QImage &);
  138. #ifdef Q_COMPILER_RVALUE_REFS
  139. inline QImage &operator=(QImage &&other) Q_DECL_NOEXCEPT
  140. { qSwap(d, other.d); return *this; }
  141. #endif
  142. inline void swap(QImage &other) Q_DECL_NOEXCEPT
  143. { qSwap(d, other.d); }
  144. bool isNull() const;
  145. int devType() const Q_DECL_OVERRIDE;
  146. bool operator==(const QImage &) const;
  147. bool operator!=(const QImage &) const;
  148. operator QVariant() const;
  149. void detach();
  150. bool isDetached() const;
  151. QImage copy(const QRect &rect = QRect()) const;
  152. inline QImage copy(int x, int y, int w, int h) const
  153. { return copy(QRect(x, y, w, h)); }
  154. Format format() const;
  155. #if defined(Q_COMPILER_REF_QUALIFIERS) && !defined(QT_COMPILING_QIMAGE_COMPAT_CPP)
  156. Q_ALWAYS_INLINE QImage convertToFormat(Format f, Qt::ImageConversionFlags flags = Qt::AutoColor) const & Q_REQUIRED_RESULT
  157. { return convertToFormat_helper(f, flags); }
  158. Q_ALWAYS_INLINE QImage convertToFormat(Format f, Qt::ImageConversionFlags flags = Qt::AutoColor) && Q_REQUIRED_RESULT
  159. {
  160. if (convertToFormat_inplace(f, flags))
  161. return std::move(*this);
  162. else
  163. return convertToFormat_helper(f, flags);
  164. }
  165. #else
  166. QImage convertToFormat(Format f, Qt::ImageConversionFlags flags = Qt::AutoColor) const Q_REQUIRED_RESULT;
  167. #endif
  168. QImage convertToFormat(Format f, const QVector<QRgb> &colorTable, Qt::ImageConversionFlags flags = Qt::AutoColor) const Q_REQUIRED_RESULT;
  169. int width() const;
  170. int height() const;
  171. QSize size() const;
  172. QRect rect() const;
  173. int depth() const;
  174. int colorCount() const;
  175. int bitPlaneCount() const;
  176. QRgb color(int i) const;
  177. void setColor(int i, QRgb c);
  178. void setColorCount(int);
  179. bool allGray() const;
  180. bool isGrayscale() const;
  181. uchar *bits();
  182. const uchar *bits() const;
  183. const uchar *constBits() const;
  184. int byteCount() const;
  185. uchar *scanLine(int);
  186. const uchar *scanLine(int) const;
  187. const uchar *constScanLine(int) const;
  188. int bytesPerLine() const;
  189. bool valid(int x, int y) const;
  190. bool valid(const QPoint &pt) const;
  191. int pixelIndex(int x, int y) const;
  192. int pixelIndex(const QPoint &pt) const;
  193. QRgb pixel(int x, int y) const;
  194. QRgb pixel(const QPoint &pt) const;
  195. void setPixel(int x, int y, uint index_or_rgb);
  196. void setPixel(const QPoint &pt, uint index_or_rgb);
  197. QColor pixelColor(int x, int y) const;
  198. QColor pixelColor(const QPoint &pt) const;
  199. void setPixelColor(int x, int y, const QColor &c);
  200. void setPixelColor(const QPoint &pt, const QColor &c);
  201. QVector<QRgb> colorTable() const;
  202. #if QT_VERSION >= QT_VERSION_CHECK(6,0,0)
  203. void setColorTable(const QVector<QRgb> &colors);
  204. #else
  205. void setColorTable(const QVector<QRgb> colors);
  206. #endif
  207. qreal devicePixelRatio() const;
  208. void setDevicePixelRatio(qreal scaleFactor);
  209. void fill(uint pixel);
  210. void fill(const QColor &color);
  211. void fill(Qt::GlobalColor color);
  212. bool hasAlphaChannel() const;
  213. void setAlphaChannel(const QImage &alphaChannel);
  214. QImage alphaChannel() const;
  215. QImage createAlphaMask(Qt::ImageConversionFlags flags = Qt::AutoColor) const;
  216. #ifndef QT_NO_IMAGE_HEURISTIC_MASK
  217. QImage createHeuristicMask(bool clipTight = true) const;
  218. #endif
  219. QImage createMaskFromColor(QRgb color, Qt::MaskMode mode = Qt::MaskInColor) const;
  220. inline QImage scaled(int w, int h, Qt::AspectRatioMode aspectMode = Qt::IgnoreAspectRatio,
  221. Qt::TransformationMode mode = Qt::FastTransformation) const
  222. { return scaled(QSize(w, h), aspectMode, mode); }
  223. QImage scaled(const QSize &s, Qt::AspectRatioMode aspectMode = Qt::IgnoreAspectRatio,
  224. Qt::TransformationMode mode = Qt::FastTransformation) const;
  225. QImage scaledToWidth(int w, Qt::TransformationMode mode = Qt::FastTransformation) const;
  226. QImage scaledToHeight(int h, Qt::TransformationMode mode = Qt::FastTransformation) const;
  227. QImage transformed(const QMatrix &matrix, Qt::TransformationMode mode = Qt::FastTransformation) const;
  228. static QMatrix trueMatrix(const QMatrix &, int w, int h);
  229. QImage transformed(const QTransform &matrix, Qt::TransformationMode mode = Qt::FastTransformation) const;
  230. static QTransform trueMatrix(const QTransform &, int w, int h);
  231. #if defined(Q_COMPILER_REF_QUALIFIERS) && !defined(QT_COMPILING_QIMAGE_COMPAT_CPP)
  232. QImage mirrored(bool horizontally = false, bool vertically = true) const &
  233. { return mirrored_helper(horizontally, vertically); }
  234. QImage &&mirrored(bool horizontally = false, bool vertically = true) &&
  235. { mirrored_inplace(horizontally, vertically); return qMove(*this); }
  236. QImage rgbSwapped() const &
  237. { return rgbSwapped_helper(); }
  238. QImage &&rgbSwapped() &&
  239. { rgbSwapped_inplace(); return qMove(*this); }
  240. #else
  241. QImage mirrored(bool horizontally = false, bool vertically = true) const;
  242. QImage rgbSwapped() const;
  243. #endif
  244. void invertPixels(InvertMode = InvertRgb);
  245. bool load(QIODevice *device, const char* format);
  246. bool load(const QString &fileName, const char *format = Q_NULLPTR);
  247. bool loadFromData(const uchar *buf, int len, const char *format = Q_NULLPTR);
  248. inline bool loadFromData(const QByteArray &data, const char *aformat = Q_NULLPTR)
  249. { return loadFromData(reinterpret_cast<const uchar *>(data.constData()), data.size(), aformat); }
  250. bool save(const QString &fileName, const char *format = Q_NULLPTR, int quality = -1) const;
  251. bool save(QIODevice *device, const char *format = Q_NULLPTR, int quality = -1) const;
  252. static QImage fromData(const uchar *data, int size, const char *format = Q_NULLPTR);
  253. inline static QImage fromData(const QByteArray &data, const char *format = Q_NULLPTR)
  254. { return fromData(reinterpret_cast<const uchar *>(data.constData()), data.size(), format); }
  255. #if QT_DEPRECATED_SINCE(5, 0)
  256. QT_DEPRECATED inline int serialNumber() const { return cacheKey() >> 32; }
  257. #endif
  258. qint64 cacheKey() const;
  259. QPaintEngine *paintEngine() const Q_DECL_OVERRIDE;
  260. // Auxiliary data
  261. int dotsPerMeterX() const;
  262. int dotsPerMeterY() const;
  263. void setDotsPerMeterX(int);
  264. void setDotsPerMeterY(int);
  265. QPoint offset() const;
  266. void setOffset(const QPoint&);
  267. QStringList textKeys() const;
  268. QString text(const QString &key = QString()) const;
  269. void setText(const QString &key, const QString &value);
  270. QPixelFormat pixelFormat() const Q_DECL_NOTHROW;
  271. static QPixelFormat toPixelFormat(QImage::Format format) Q_DECL_NOTHROW;
  272. static QImage::Format toImageFormat(QPixelFormat format) Q_DECL_NOTHROW;
  273. #if QT_DEPRECATED_SINCE(5, 0)
  274. QT_DEPRECATED inline QString text(const char *key, const char *lang = Q_NULLPTR) const;
  275. QT_DEPRECATED inline QList<QImageTextKeyLang> textList() const;
  276. QT_DEPRECATED inline QStringList textLanguages() const;
  277. QT_DEPRECATED inline QString text(const QImageTextKeyLang&) const;
  278. QT_DEPRECATED inline void setText(const char* key, const char* lang, const QString&);
  279. #endif
  280. #if QT_DEPRECATED_SINCE(5, 0)
  281. QT_DEPRECATED inline int numColors() const;
  282. QT_DEPRECATED inline void setNumColors(int);
  283. QT_DEPRECATED inline int numBytes() const;
  284. #endif
  285. protected:
  286. virtual int metric(PaintDeviceMetric metric) const Q_DECL_OVERRIDE;
  287. QImage mirrored_helper(bool horizontal, bool vertical) const;
  288. QImage rgbSwapped_helper() const;
  289. void mirrored_inplace(bool horizontal, bool vertical);
  290. void rgbSwapped_inplace();
  291. QImage convertToFormat_helper(Format format, Qt::ImageConversionFlags flags) const;
  292. bool convertToFormat_inplace(Format format, Qt::ImageConversionFlags flags);
  293. QImage smoothScaled(int w, int h) const;
  294. private:
  295. friend class QWSOnScreenSurface;
  296. QImageData *d;
  297. friend class QRasterPlatformPixmap;
  298. friend class QBlittablePlatformPixmap;
  299. friend class QPixmapCacheEntry;
  300. public:
  301. typedef QImageData * DataPtr;
  302. inline DataPtr &data_ptr() { return d; }
  303. };
  304. Q_DECLARE_SHARED(QImage)
  305. // Inline functions...
  306. inline bool QImage::valid(const QPoint &pt) const { return valid(pt.x(), pt.y()); }
  307. inline int QImage::pixelIndex(const QPoint &pt) const { return pixelIndex(pt.x(), pt.y());}
  308. inline QRgb QImage::pixel(const QPoint &pt) const { return pixel(pt.x(), pt.y()); }
  309. inline void QImage::setPixel(const QPoint &pt, uint index_or_rgb) { setPixel(pt.x(), pt.y(), index_or_rgb); }
  310. inline QColor QImage::pixelColor(const QPoint &pt) const { return pixelColor(pt.x(), pt.y()); }
  311. inline void QImage::setPixelColor(const QPoint &pt, const QColor &c) { setPixelColor(pt.x(), pt.y(), c); }
  312. #if QT_DEPRECATED_SINCE(5, 0)
  313. QT_WARNING_PUSH
  314. QT_WARNING_DISABLE_GCC("-Wdeprecated-declarations")
  315. QT_WARNING_DISABLE_MSVC(4996)
  316. inline QString QImage::text(const char* key, const char* lang) const
  317. {
  318. if (!d)
  319. return QString();
  320. QString k = QString::fromLatin1(key);
  321. if (lang && *lang)
  322. k += QLatin1Char('/') + QString::fromLatin1(lang);
  323. return text(k);
  324. }
  325. inline QList<QImageTextKeyLang> QImage::textList() const
  326. {
  327. QList<QImageTextKeyLang> imageTextKeys;
  328. if (!d)
  329. return imageTextKeys;
  330. QStringList keys = textKeys();
  331. for (int i = 0; i < keys.size(); ++i) {
  332. int index = keys.at(i).indexOf(QLatin1Char('/'));
  333. if (index > 0) {
  334. QImageTextKeyLang tkl(true);
  335. tkl.key = keys.at(i).left(index).toLatin1();
  336. tkl.lang = keys.at(i).mid(index+1).toLatin1();
  337. imageTextKeys += tkl;
  338. }
  339. }
  340. return imageTextKeys;
  341. }
  342. inline QStringList QImage::textLanguages() const
  343. {
  344. if (!d)
  345. return QStringList();
  346. QStringList keys = textKeys();
  347. QStringList languages;
  348. for (int i = 0; i < keys.size(); ++i) {
  349. int index = keys.at(i).indexOf(QLatin1Char('/'));
  350. if (index > 0)
  351. languages += keys.at(i).mid(index+1);
  352. }
  353. return languages;
  354. }
  355. inline QString QImage::text(const QImageTextKeyLang&kl) const
  356. {
  357. if (!d)
  358. return QString();
  359. QString k = QString::fromLatin1(kl.key.constData());
  360. if (!kl.lang.isEmpty())
  361. k += QLatin1Char('/') + QString::fromLatin1(kl.lang.constData());
  362. return text(k);
  363. }
  364. inline void QImage::setText(const char* key, const char* lang, const QString &s)
  365. {
  366. if (!d)
  367. return;
  368. detach();
  369. // In case detach() ran out of memory
  370. if (!d)
  371. return;
  372. QString k = QString::fromLatin1(key);
  373. if (lang && *lang)
  374. k += QLatin1Char('/') + QString::fromLatin1(lang);
  375. setText(k, s);
  376. }
  377. QT_WARNING_POP
  378. inline int QImage::numColors() const
  379. {
  380. return colorCount();
  381. }
  382. inline void QImage::setNumColors(int n)
  383. {
  384. setColorCount(n);
  385. }
  386. inline int QImage::numBytes() const
  387. {
  388. return byteCount();
  389. }
  390. #endif
  391. // QImage stream functions
  392. #if !defined(QT_NO_DATASTREAM)
  393. Q_GUI_EXPORT QDataStream &operator<<(QDataStream &, const QImage &);
  394. Q_GUI_EXPORT QDataStream &operator>>(QDataStream &, QImage &);
  395. #endif
  396. #ifndef QT_NO_DEBUG_STREAM
  397. Q_GUI_EXPORT QDebug operator<<(QDebug, const QImage &);
  398. #endif
  399. QT_END_NAMESPACE
  400. #endif // QIMAGE_H