![]() |
Qt 6.x
The Qt SDK
|
Returns a copy of the pixmap that is transformed using the given transformation transform and transformation mode. More...
#include <qpixmap.h>
Public Types | |
typedef QExplicitlySharedDataPointer< QPlatformPixmap > | DataPtr |
![]() | |
enum | PaintDeviceMetric { PdmWidth = 1 , PdmHeight , PdmWidthMM , PdmHeightMM , PdmNumColors , PdmDepth , PdmDpiX , PdmDpiY , PdmPhysicalDpiX , PdmPhysicalDpiY , PdmDevicePixelRatio , PdmDevicePixelRatioScaled } |
Public Member Functions | |
QPixmap () | |
Constructs a null pixmap. | |
QPixmap (QPlatformPixmap *data) | |
QPixmap (int w, int h) | |
Constructs a pixmap with the given width and height. | |
QPixmap (const QSize &) | |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Constructs a pixmap of the given size. | |
QPixmap (const QString &fileName, const char *format=nullptr, Qt::ImageConversionFlags flags=Qt::AutoColor) | |
Constructs a pixmap from the file with the given fileName. | |
QPixmap (const char *const xpm[]) | |
Constructs a pixmap from the given xpm data, which must be a valid XPM image. | |
QPixmap (const QPixmap &) | |
Constructs a pixmap that is a copy of the given pixmap. | |
QPixmap (QPixmap &&other) noexcept | |
Move-constructs a QPixmap instance from other. | |
~QPixmap () | |
Destroys the pixmap. | |
QPixmap & | operator= (const QPixmap &) |
Assigns the given pixmap to this pixmap and returns a reference to this pixmap. | |
void | swap (QPixmap &other) noexcept |
bool | operator== (const QPixmap &) const =delete |
bool | operator!= (const QPixmap &) const =delete |
operator QVariant () const | |
Returns the pixmap as a QVariant. | |
bool | isNull () const |
Returns true if this is a null pixmap; otherwise returns false . | |
int | devType () const override |
int | width () const |
Returns the width of the pixmap. | |
int | height () const |
Returns the height of the pixmap. | |
QSize | size () const |
Returns the size of the pixmap. | |
QRect | rect () const |
Returns the pixmap's enclosing rectangle. | |
int | depth () const |
Returns the depth of the pixmap. | |
void | fill (const QColor &fillColor=Qt::white) |
Fills the pixmap with the given color. | |
QBitmap | mask () const |
Returns true if this pixmap has an alpha channel, or has a mask, otherwise returns false . | |
void | setMask (const QBitmap &) |
Sets a mask bitmap. | |
qreal | devicePixelRatio () const |
Returns the device pixel ratio for the pixmap. | |
void | setDevicePixelRatio (qreal scaleFactor) |
Sets the device pixel ratio for the pixmap. | |
QSizeF | deviceIndependentSize () const |
Returns the size of the pixmap in device independent pixels. | |
bool | hasAlpha () const |
bool | hasAlphaChannel () const |
QBitmap | createHeuristicMask (bool clipTight=true) const |
Creates and returns a heuristic mask for this pixmap. | |
QBitmap | createMaskFromColor (const QColor &maskColor, Qt::MaskMode mode=Qt::MaskInColor) const |
Creates and returns a mask for this pixmap based on the given maskColor. | |
QPixmap | scaled (int w, int h, Qt::AspectRatioMode aspectMode=Qt::IgnoreAspectRatio, Qt::TransformationMode mode=Qt::FastTransformation) const |
QPixmap | scaled (const QSize &s, Qt::AspectRatioMode aspectMode=Qt::IgnoreAspectRatio, Qt::TransformationMode mode=Qt::FastTransformation) const |
QPixmap | scaledToWidth (int w, Qt::TransformationMode mode=Qt::FastTransformation) const |
Returns a scaled copy of the image. | |
QPixmap | scaledToHeight (int h, Qt::TransformationMode mode=Qt::FastTransformation) const |
Returns a scaled copy of the image. | |
QPixmap | transformed (const QTransform &, Qt::TransformationMode mode=Qt::FastTransformation) const |
QImage | toImage () const |
Converts the pixmap to a QImage. | |
bool | load (const QString &fileName, const char *format=nullptr, Qt::ImageConversionFlags flags=Qt::AutoColor) |
Loads a pixmap from the file with the given fileName. | |
bool | loadFromData (const uchar *buf, uint len, const char *format=nullptr, Qt::ImageConversionFlags flags=Qt::AutoColor) |
Loads a pixmap from the len first bytes of the given binary data. | |
bool | loadFromData (const QByteArray &data, const char *format=nullptr, Qt::ImageConversionFlags flags=Qt::AutoColor) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Loads a pixmap from the binary data using the specified format and conversion flags. | |
bool | save (const QString &fileName, const char *format=nullptr, int quality=-1) const |
Saves the pixmap to the file with the given fileName using the specified image file format and quality factor. | |
bool | save (QIODevice *device, const char *format=nullptr, int quality=-1) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.This function writes a QPixmap to the given device using the specified image file format and quality factor. | |
bool | convertFromImage (const QImage &img, Qt::ImageConversionFlags flags=Qt::AutoColor) |
Replaces this pixmap's data with the given image using the specified flags to control the conversion. | |
QPixmap | copy (int x, int y, int width, int height) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns a deep copy of the subset of the pixmap that is specified by the rectangle QRect( x, y, width, height). | |
QPixmap | copy (const QRect &rect=QRect()) const |
Returns a deep copy of the subset of the pixmap that is specified by the given rectangle. | |
void | scroll (int dx, int dy, int x, int y, int width, int height, QRegion *exposed=nullptr) |
void | scroll (int dx, int dy, const QRect &rect, QRegion *exposed=nullptr) |
qint64 | cacheKey () const |
Returns a number that identifies this QPixmap. | |
bool | isDetached () const |
void | detach () |
Detaches the pixmap from shared pixmap data. | |
bool | isQBitmap () const |
Returns true if this is a QBitmap; otherwise returns false . | |
QPaintEngine * | paintEngine () const override |
bool | operator! () const |
Returns true if this is a null pixmap; otherwise returns false . | |
QPlatformPixmap * | handle () const |
DataPtr & | data_ptr () |
![]() | |
virtual | ~QPaintDevice () |
virtual int | devType () const |
bool | paintingActive () const |
virtual QPaintEngine * | paintEngine () const =0 |
int | width () const |
int | height () const |
int | widthMM () const |
int | heightMM () const |
int | logicalDpiX () const |
int | logicalDpiY () const |
int | physicalDpiX () const |
int | physicalDpiY () const |
qreal | devicePixelRatio () const |
qreal | devicePixelRatioF () const |
int | colorCount () const |
int | depth () const |
Static Public Member Functions | |
static int | defaultDepth () |
static QTransform | trueMatrix (const QTransform &m, int w, int h) |
Returns the actual matrix used for transforming a pixmap with the given width, height and matrix. | |
static QPixmap | fromImage (const QImage &image, Qt::ImageConversionFlags flags=Qt::AutoColor) |
Converts the given image to a pixmap using the specified flags to control the conversion. | |
static QPixmap | fromImageReader (QImageReader *imageReader, Qt::ImageConversionFlags flags=Qt::AutoColor) |
Create a QPixmap from an image read directly from an imageReader. | |
static QPixmap | fromImage (QImage &&image, Qt::ImageConversionFlags flags=Qt::AutoColor) |
![]() | |
static qreal | devicePixelRatioFScale () |
Protected Member Functions | |
int | metric (PaintDeviceMetric) const override |
![]() | |
QPaintDevice () noexcept | |
virtual int | metric (PaintDeviceMetric metric) const |
virtual void | initPainter (QPainter *painter) const |
virtual QPaintDevice * | redirected (QPoint *offset) const |
virtual QPainter * | sharedPainter () const |
Static Protected Member Functions | |
static QPixmap | fromImageInPlace (QImage &image, Qt::ImageConversionFlags flags=Qt::AutoColor) |
Friends | |
class | QPlatformPixmap |
class | QBitmap |
class | QPaintDevice |
class | QPainter |
class | QOpenGLWidget |
class | QWidgetPrivate |
class | QRasterBuffer |
Q_GUI_EXPORT QDataStream & | operator>> (QDataStream &, QPixmap &) |
Reads an image from the given stream into the given pixmap. | |
Related Symbols | |
(Note that these are not member symbols.) | |
QDataStream & | operator<< (QDataStream &stream, const QPixmap &pixmap) |
Writes the given pixmap to the given stream as a PNG image. | |
QDataStream & | operator>> (QDataStream &stream, QPixmap &pixmap) |
Reads an image from the given stream into the given pixmap. | |
Additional Inherited Members | |
![]() | |
ushort | painters |
Returns a copy of the pixmap that is transformed using the given transformation transform and transformation mode.
The original pixmap is not changed.
The transformation transform is internally adjusted to compensate for unwanted translation; i.e. the pixmap produced is the smallest pixmap that contains all the transformed points of the original pixmap. Use the trueMatrix() function to retrieve the actual matrix used for transforming the pixmap.
This function is slow because it involves transformation to a QImage, non-trivial computations and a transformation back to a QPixmap.
\inmodule QtGui
The QPixmap class is an off-screen image representation that can be used as a paint device.
Qt provides four classes for handling image data: QImage, QPixmap, QBitmap and QPicture. QImage is designed and optimized for I/O, and for direct pixel access and manipulation, while QPixmap is designed and optimized for showing images on screen. QBitmap is only a convenience class that inherits QPixmap, ensuring a depth of 1. The isQBitmap() function returns true
if a QPixmap object is really a bitmap, otherwise returns false
. Finally, the QPicture class is a paint device that records and replays QPainter commands.
A QPixmap can easily be displayed on the screen using QLabel or one of QAbstractButton's subclasses (such as QPushButton and QToolButton). QLabel has a pixmap property, whereas QAbstractButton has an icon property.
QPixmap objects can be passed around by value since the QPixmap class uses implicit data sharing. For more information, see the \l {Implicit Data Sharing} documentation. QPixmap objects can also be streamed.
Note that the pixel data in a pixmap is internal and is managed by the underlying window system. Because QPixmap is a QPaintDevice subclass, QPainter can be used to draw directly onto pixmaps. Pixels can only be accessed through QPainter functions or by converting the QPixmap to a QImage. However, the fill() function is available for initializing the entire pixmap with a given color.
There are functions to convert between QImage and QPixmap. Typically, the QImage class is used to load an image file, optionally manipulating the image data, before the QImage object is converted into a QPixmap to be shown on screen. Alternatively, if no manipulation is desired, the image file can be loaded directly into a QPixmap.
QPixmap provides a collection of functions that can be used to obtain a variety of information about the pixmap. In addition, there are several functions that enables transformation of the pixmap.
QPixmap::QPixmap | ( | ) |
Constructs a null pixmap.
Definition at line 78 of file qpixmap.cpp.
References QPlatformPixmap::PixmapType, qt_pixmap_thread_test(), and void.
Referenced by copy(), fromImage(), fromImageInPlace(), and fromImageReader().
|
explicit |
Definition at line 133 of file qpixmap.cpp.
QPixmap::QPixmap | ( | int | width, |
int | height | ||
) |
Constructs a pixmap with the given width and height.
If either width or height is zero, a null pixmap is constructed.
Definition at line 99 of file qpixmap.cpp.
|
explicit |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Constructs a pixmap of the given size.
Definition at line 114 of file qpixmap.cpp.
QPixmap::QPixmap | ( | const QString & | fileName, |
const char * | format = nullptr , |
||
Qt::ImageConversionFlags | flags = Qt::AutoColor |
||
) |
Constructs a pixmap from the file with the given fileName.
If the file does not exist or is of an unknown format, the pixmap becomes a null pixmap.
The loader attempts to read the pixmap using the specified format. If the format is not specified (which is the default), the loader probes the file for a header to guess the file format.
The file name can either refer to an actual file on disk or to one of the application's embedded resources. See the \l{resources.html}{Resource System} overview for details on how to embed images and other resource files in the application's executable.
If the image needs to be modified to fit in a lower-resolution result (e.g. converting from 32-bit to 8-bit), use the flags to control the conversion.
The fileName, format and flags parameters are passed on to load(). This means that the data in fileName is not compiled into the binary. If fileName contains a relative path (e.g. the filename only) the relevant file must be found relative to the runtime working directory.
Definition at line 167 of file qpixmap.cpp.
References fileName, load(), QPlatformPixmap::PixmapType, and qt_pixmap_thread_test().
|
explicit |
Constructs a pixmap from the given xpm data, which must be a valid XPM image.
Errors are silently ignored.
Note that it's possible to squeeze the XPM variable a little bit by using an unusual declaration:
The extra const
makes the entire definition read-only, which is slightly more efficient (for example, when the code is in a shared library) and ROMable when the application is to be stored in ROM.
Definition at line 221 of file qpixmap.cpp.
References QPlatformPixmap::BitmapType, QBitmap::fromImage(), fromImage(), and QPlatformPixmap::PixmapType.
QPixmap::QPixmap | ( | const QPixmap & | pixmap | ) |
Constructs a pixmap that is a copy of the given pixmap.
Definition at line 183 of file qpixmap.cpp.
References pixmap, QPlatformPixmap::PixmapType, and qt_pixmap_thread_test().
|
inlinenoexcept |
QPixmap::~QPixmap | ( | ) |
qint64 QPixmap::cacheKey | ( | ) | const |
Returns a number that identifies this QPixmap.
Distinct QPixmap objects can only have the same cache key if they refer to the same contents.
The cacheKey() will change when the pixmap is altered.
Definition at line 888 of file qpixmap.cpp.
References isNull(), and Q_ASSERT.
Referenced by QWindowsOleDropSource::createCursors(), QPdfEngine::drawPixmap(), QWindowsOleDropSource::GiveFeedback(), QBrush::operator==(), PixmapEntry::pixmap(), QPixmapIconEngine::scaledPixmap(), QLabel::setPixmap(), QWindowsDragCursorWindow::setPixmap(), and QBasicDrag::updateCursor().
bool QPixmap::convertFromImage | ( | const QImage & | image, |
Qt::ImageConversionFlags | flags = Qt::AutoColor |
||
) |
Replaces this pixmap's data with the given image using the specified flags to control the conversion.
The flags argument is a bitwise-OR of the \l{Qt::ImageConversionFlags}. Passing 0 for flags sets all the default options. Returns true
if the result is that this pixmap is not null.
Note: this function was part of Qt 3 support in Qt 4.6 and earlier. It has been promoted to official API status in 4.7 to support updating the pixmap's image without creating a new QPixmap as fromImage() would.
Definition at line 980 of file qpixmap.cpp.
References detach(), fromImage(), and isNull().
Referenced by QPixmapIconEngineEntry::QPixmapIconEngineEntry().
Returns a deep copy of the subset of the pixmap that is specified by the given rectangle.
For more information on deep copies, see the \l {Implicit Data Sharing} documentation.
If the given rectangle is empty, the whole image is copied.
Definition at line 276 of file qpixmap.cpp.
References QPixmap(), d, height(), QRect::isEmpty(), isNull(), rect(), and width().
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Returns a deep copy of the subset of the pixmap that is specified by the rectangle QRect( x, y, width, height).
Definition at line 153 of file qpixmap.h.
References copy().
Referenced by detach(), QWindowsVistaStylePrivate::drawBackgroundThruNativeBuffer(), QQC2::QWindowsXPStylePrivate::drawBackgroundThruNativeBuffer(), QWindowsDirect2DPaintEngine::drawPixmap(), QPainter::drawPixmap(), QBsdFbScreen::grabWindow(), QEglFSScreen::grabWindow(), QIntegrityFbScreen::grabWindow(), QLinuxFbScreen::grabWindow(), QVncScreen::grabWindow(), and QWindowsDirect2DBackingStore::resize().
QBitmap QPixmap::createHeuristicMask | ( | bool | clipTight = true | ) | const |
Creates and returns a heuristic mask for this pixmap.
The function works by selecting a color from one of the corners and then chipping away pixels of that color, starting at all the edges. If clipTight is true (the default) the mask is just large enough to cover the pixels; otherwise, the mask is larger than the data pixels.
The mask may not be perfect but it should be reasonable, so you can do things such as the following:
This function is slow because it involves converting to/from a QImage, and non-trivial computations.
Definition at line 657 of file qpixmap.cpp.
References createHeuristicMask(), QBitmap::fromImage(), and toImage().
Referenced by createHeuristicMask(), QGraphicsPixmapItemPrivate::updateShape(), and src_gui_image_qpixmap::wrapper0().
QBitmap QPixmap::createMaskFromColor | ( | const QColor & | maskColor, |
Qt::MaskMode | mode = Qt::MaskInColor |
||
) | const |
Creates and returns a mask for this pixmap based on the given maskColor.
If the mode is Qt::MaskInColor, all pixels matching the maskColor will be transparent. If mode is Qt::MaskOutColor, all pixels matching the maskColor will be opaque.
This function is slow because it involves converting to/from a QImage.
Definition at line 675 of file qpixmap.cpp.
References QImage::convertToFormat(), createMaskFromColor(), QImage::Format_ARGB32, QBitmap::fromImage(), QColor::rgba(), and toImage().
Referenced by createMaskFromColor().
|
static |
int QPixmap::depth | ( | ) | const |
Returns the depth of the pixmap.
The pixmap depth is also called bits per pixel (bpp) or bit planes of a pixmap. A null pixmap has depth 0.
Definition at line 525 of file qpixmap.cpp.
Referenced by QPainter::begin(), QCoreGraphicsPaintEngine::drawPixmap(), qt_mac_draw_pattern(), QXcbNativeBackingStore::resize(), and QPainterPrivate::updateEmulationSpecifier().
void QPixmap::detach | ( | ) |
Detaches the pixmap from shared pixmap data.
A pixmap is automatically detached by Qt whenever its contents are about to change. This is done in almost all QPixmap member functions that modify the pixmap (fill(), fromImage(), load(), etc.), and in QPainter::begin() on a pixmap.
There are two exceptions in which detach() must be called explicitly, that is when calling the handle() or the x11PictureHandle() function (only available on X11). Otherwise, any modifications done using system calls, will be performed on the shared data.
The detach() function returns immediately if there is just a single reference or if the pixmap has not been initialized yet.
Definition at line 1407 of file qpixmap.cpp.
References QPlatformPixmap::classId(), copy(), QImage::detach(), QImagePixmapCleanupHooks::executePlatformPixmapModificationHooks(), handle(), QRasterPlatformPixmap::image, and QPlatformPixmap::RasterClass.
Referenced by convertFromImage(), fill(), scroll(), setDevicePixelRatio(), and setMask().
QSizeF QPixmap::deviceIndependentSize | ( | ) | const |
Returns the size of the pixmap in device independent pixels.
This value should be used when using the pixmap size in user interface size calculations.
The return value is equivalent to pixmap.size() / pixmap.devicePixelRatio().
Definition at line 630 of file qpixmap.cpp.
Referenced by QPaintEngineEx::drawPixmap(), QWatermarkLabel::minimumSizeHint(), QSplashScreen::setPixmap(), and QShapedPixmapWindow::updateGeometry().
qreal QPixmap::devicePixelRatio | ( | ) | const |
Returns the device pixel ratio for the pixmap.
This is the ratio between {device pixels} and {device independent pixels}.
Use this function when calculating layout geometry based on the pixmap size: QSize layoutSize = image.size() / image.devicePixelRatio()
The default value is 1.0.
Definition at line 580 of file qpixmap.cpp.
Referenced by QCursor::QCursor(), _q_paintIntoCache(), QPixmapDropShadowFilter::draw(), QQC2::QCommonStyle::drawControl(), QCommonStyle::drawControl(), QPainter::drawPixmap(), QPainter::drawPixmap(), QCocoaScreen::grabWindow(), and QShapedPixmapWindow::setPixmap().
|
overridevirtual |
Reimplemented from QPaintDevice.
Definition at line 251 of file qpixmap.cpp.
References QInternal::Pixmap.
Fills the pixmap with the given color.
The effect of this function is undefined when the pixmap is being painted on.
Definition at line 854 of file qpixmap.cpp.
References d, detach(), hasAlphaChannel(), isNull(), QPaintDevice::paintingActive(), and qWarning.
Referenced by AvatarExample::AvatarExample(), QCursor::QCursor(), _q_paintIntoCache(), QBitmap::clear(), QWindowsOleDropSource::createCursors(), QGraphicsScenePrivate::drawItemHelper(), QPaintEngine::drawTiledPixmap(), QX11PaintEngine::drawTiledPixmap(), QCocoaScreen::grabWindow(), QtPrivate::QColorWell::mouseMoveEvent(), QtPrivate::QColorShowLabel::mouseMoveEvent(), qt_mac_draw_pattern(), QTabBarPrivate::setupMovableTab(), QHeaderViewPrivate::setupSectionIndicator(), QQC2_NAMESPACE::QMacStyle::standardIcon(), QMacStyle::standardIcon(), QQC2::QWindowsXPStyle::standardIcon(), QWindowsVistaStyle::standardIcon(), QMacStyle::styleHint(), QQC2_NAMESPACE::QMacStyle::styleHint(), and QSGSoftwarePainterNode::update().
|
static |
Converts the given image to a pixmap using the specified flags to control the conversion.
The flags argument is a bitwise-OR of the \l{Qt::ImageConversionFlags}. Passing 0 for flags sets all the default options.
In case of monochrome and 8-bit images, the image is first converted to a 32-bit pixmap and then filled with the colors in the color table. If this is too expensive an operation, you can use QBitmap::fromImage() instead.
Definition at line 1445 of file qpixmap.cpp.
References QPixmap(), QCoreApplication::instance(), QPlatformPixmap::PixmapType, QGuiApplicationPrivate::platformIntegration(), Q_UNLIKELY, and qWarning.
Referenced by QPixmap(), QSGSoftwarePixmapTexture::QSGSoftwarePixmapTexture(), QWaylandMouseTrackerPrivate::QWaylandMouseTrackerPrivate(), QDirectFBCursor::changeCursor(), convertFromImage(), Viewer::createImage(), createPixmapCursorFromData(), darkenPixmap(), QQC2_NAMESPACE::darkenPixmap(), QWindowsCursor::dragDefaultCursor(), QWindowsVistaStylePrivate::drawBackgroundThruNativeBuffer(), QQC2::QWindowsXPStylePrivate::drawBackgroundThruNativeBuffer(), QQC2::QCommonStyle::drawControl(), QQC2::QWindowsStyle::drawControl(), QCommonStyle::drawControl(), QWindowsVistaStyle::drawControl(), QPaintEngine::drawImage(), QWindowsDirect2DPaintEngine::drawImage(), QWin32PrintEngine::drawPixmap(), QQC2::QCommonStyle::drawPrimitive(), QCommonStyle::drawPrimitive(), QGtk3Interface::fileIcon(), QMacStyle::generatedIconPixmap(), QCommonStyle::generatedIconPixmap(), QQC2_NAMESPACE::QMacStyle::generatedIconPixmap(), QQC2::QCommonStyle::generatedIconPixmap(), QBsdFbScreen::grabWindow(), QEglFSScreen::grabWindow(), QIntegrityFbScreen::grabWindow(), QLinuxFbScreen::grabWindow(), QVncScreen::grabWindow(), QOffscreenBackingStore::grabWindow(), QCocoaScreen::grabWindow(), QHaikuScreen::grabWindow(), QIOSScreen::grabWindow(), QQnxScreen::grabWindow(), QMoviePrivate::infoForFrame(), QStyledItemDelegate::initStyleOption(), QMoviePrivate::next(), QtPrivate::QColorLuminancePicker::paintEvent(), QLabel::paintEvent(), QTexturedBrushData::pixmap(), QSvgIconEngine::pixmap(), qt_pixmapFromWinHBITMAP(), qt_pixmapFromWinHICON(), qt_xcb_pixmapFromXPixmap(), QAlphaWidget::render(), QtPrivate::QColorPicker::resizeEvent(), QAlphaWidget::run(), QItemDelegate::selectedPixmap(), QGtk3Storage::standardPixmap(), QQC2::QCommonStyle::standardPixmap(), QCommonStyle::standardPixmap(), QQuickDragAttachedPrivate::startDrag(), QQuickLabsPlatformIconLoader::toQIcon(), QPlatformPixmap::transformed(), and QX11PlatformPixmap::transformed().
|
inlinestatic |
Converts the given image to a pixmap without copying if possible.
Definition at line 91 of file qpixmap.h.
References QPlatformPixmap::fromImageInPlace().
|
staticprotected |
Definition at line 1472 of file qpixmap.cpp.
References QPixmap(), QCoreApplication::instance(), QPlatformPixmap::PixmapType, QGuiApplicationPrivate::platformIntegration(), Q_UNLIKELY, and qWarning.
|
static |
Create a QPixmap from an image read directly from an imageReader.
The flags argument is a bitwise-OR of the \l{Qt::ImageConversionFlags}. Passing 0 for flags sets all the default options.
On some systems, reading an image directly to QPixmap can use less memory than reading a QImage to convert it to QPixmap.
Definition at line 1499 of file qpixmap.cpp.
References QPixmap(), QCoreApplication::instance(), QPlatformPixmap::PixmapType, QGuiApplicationPrivate::platformIntegration(), Q_UNLIKELY, and qWarning.
QPlatformPixmap * QPixmap::handle | ( | ) | const |
Definition at line 1514 of file qpixmap.cpp.
Referenced by QPixmapCacheEntry::QPixmapCacheEntry(), QX11PaintEngine::begin(), CapabilitiesToStateMask::canBlitterDrawPixmap(), CapabilitiesToStateMask::canBlitterDrawPixmapOpacity(), detach(), QWindowsDirect2DPaintEngine::drawPixmap(), QX11PaintEngine::drawPixmap(), QBrush::operator==(), QWindowsDirect2DBackingStore::resize(), and QWindowsDirect2DPaintEnginePrivate::to_d2d_brush().
bool QPixmap::hasAlpha | ( | ) | const |
Referenced by QAlphaPaintEngine::drawPixmap(), QSplashScreen::setPixmap(), and QPainterPrivate::updateEmulationSpecifier().
bool QPixmap::hasAlphaChannel | ( | ) | const |
Referenced by CapabilitiesToStateMask::canBlitterDrawPixmap(), fill(), QSGSoftwareLayer::hasAlphaChannel(), QSGSoftwarePixmapTexture::hasAlphaChannel(), QBrush::isOpaque(), and QSGSoftwareNinePatchNode::isOpaque().
int QPixmap::height | ( | ) | const |
Returns the height of the pixmap.
Definition at line 484 of file qpixmap.cpp.
Referenced by QPixmapStyle::comboBoxSubControlRect(), copy(), QWindowsOleDropSource::createCursors(), createPixmapCursorFromData(), QAndroidStyle::AndroidImageDrawable::draw(), QQC2::QCommonStyle::drawControl(), QQC2::QWindowsStyle::drawControl(), QCommonStyle::drawControl(), QPixmapStyle::drawPanelItemViewItem(), QPainter::drawPixmap(), QCoreGraphicsPaintEngine::drawPixmap(), QPainter::drawPixmap(), drawTextItemDecoration(), QWin32PrintEngine::drawTiledPixmap(), QBlitterPaintEngine::fillRect(), QPixmapStyle::itemViewSizeFromContents(), QtPrivate::QColorWell::mouseMoveEvent(), QtPrivate::QColorShowLabel::mouseMoveEvent(), FinalWidget::mouseMoveEvent(), QSGSoftwareInternalImageNode::paint(), QSGSoftwareNinePatchNode::paint(), QtPrivate::QColorLuminancePicker::paintEvent(), QWizard::paintEvent(), QPixmapStyle::pixelMetric(), qt_mac_draw_pattern(), QOpenGL2PaintEngineExPrivate::updateBrushUniforms(), QQuickText::updatePaintNode(), and QGraphicsPixmapItemPrivate::updateShape().
bool QPixmap::isDetached | ( | ) | const |
Definition at line 961 of file qpixmap.cpp.
bool QPixmap::isNull | ( | ) | const |
Returns true
if this is a null pixmap; otherwise returns false
.
A null pixmap has zero width, zero height and no contents. You cannot draw in a null pixmap.
Definition at line 460 of file qpixmap.cpp.
Referenced by QCursor::QCursor(), _q_paintIntoCache(), QMessageBox::aboutQt(), QSvgIconEngine::actualSize(), QSvgIconEngine::addFile(), QPixmapIconEngine::availableSizes(), QPainter::begin(), QCoreGraphicsPaintEngine::begin(), QPixmapIconEngine::bestMatch(), bestSizeScaleMatch(), cacheKey(), convertFromImage(), copy(), createBitmapCursor(), QWindowsOleDropSource::createCursors(), createHIcon(), QWindowsCursor::dragDefaultCursor(), QPixmapDropShadowFilter::draw(), QPixmapStyle::drawCachedPixmap(), QQC2::QCommonStyle::drawControl(), QCommonStyle::drawControl(), QQC2::QWindowsXPStyle::drawControl(), QWindowsVistaStyle::drawControl(), QGraphicsScenePrivate::drawItemHelper(), QPainter::drawPixmap(), QCoreGraphicsPaintEngine::drawPixmap(), QWindowsDirect2DPaintEngine::drawPixmap(), QPainter::drawPixmap(), QPixmapStyle::drawSlider(), fill(), QXcbNativeBackingStore::flush(), QPixmapIconEngineEntry::isNull(), QFrameInfo::isValid(), QWizardPrivate::layoutInfoForCurrentPage(), load(), QTextDocument::loadResource(), QQuickJSContext2DPrototype::method_drawImage(), QSGSoftwareImageNode::paint(), QShapedPixmapWindow::paintEvent(), QWizard::paintEvent(), PixmapEntry::pixmap(), QSvgIconEngine::pixmap(), QGraphicsEffectSource::pixmap(), qt_pixmapToWinHICON(), QQuickContext2DCommandBuffer::replay(), QWindowsDirect2DBackingStore::resize(), QXcbNativeBackingStore::resize(), save(), save(), QPixmapIconEngine::scaledPixmap(), QXcbNativeBackingStore::scroll(), scroll(), setDevicePixelRatio(), setMask(), QX11PlatformPixmap::setMask(), QTexturedBrushData::setPixmap(), QWizardHeader::setup(), QMessageBoxPrivate::setupLayout(), QCocoaMessageDialog::show(), QWindowsSystemTrayIcon::showMessage(), QQC2::QCommonStyle::standardPixmap(), QCommonStyle::standardPixmap(), QQC2::QWindowsStyle::standardPixmap(), toImage(), QSGSoftwareInternalImageNode::update(), QShapedPixmapWindow::updateGeometry(), and QPixmapIconEngine::write().
bool QPixmap::isQBitmap | ( | ) | const |
Returns true
if this is a QBitmap; otherwise returns false
.
Definition at line 447 of file qpixmap.cpp.
References QPlatformPixmap::BitmapType.
Referenced by QPainter::drawPixmap(), QEmulationPaintEngine::drawPixmap(), QAlphaPaintEngine::drawPixmap(), QPainter::drawPixmap(), QBrush::isOpaque(), load(), QCoreGraphicsPaintEnginePrivate::setFillBrush(), and QOpenGL2PaintEngineExPrivate::updateBrushUniforms().
bool QPixmap::load | ( | const QString & | fileName, |
const char * | format = nullptr , |
||
Qt::ImageConversionFlags | flags = Qt::AutoColor |
||
) |
Loads a pixmap from the file with the given fileName.
Returns true if the pixmap was successfully loaded; otherwise invalidates the pixmap and returns false
.
The loader attempts to read the pixmap using the specified format. If the format is not specified (which is the default), the loader probes the file for a header to guess the file format.
The file name can either refer to an actual file on disk or to one of the application's embedded resources. See the \l{resources.html}{Resource System} overview for details on how to embed pixmaps and other resource files in the application's executable.
If the data needs to be modified to fit in a lower-resolution result (e.g. converting from 32-bit to 8-bit), use the flags to control the conversion.
Note that QPixmaps are automatically added to the QPixmapCache when loaded from a file in main thread; the key used is internal and cannot be acquired.
Definition at line 708 of file qpixmap.cpp.
References QFileInfo::absoluteFilePath(), QFileInfo::completeSuffix(), QPlatformPixmap::create(), QThread::currentThread(), QFileInfo::exists(), fileName, QPixmapCache::find(), info, QPixmapCache::insert(), QString::isEmpty(), isNull(), isQBitmap(), QFileInfo::lastModified(), QPlatformPixmap::PixmapType, qApp, QBitmap, QFileInfo::size(), QDateTime::toSecsSinceEpoch(), and QTimeZone::UTC.
Referenced by QBitmap::QBitmap(), QPixmap(), QAndroidStyle::AndroidImageDrawable::draw(), QQuickCanvasItem::loadImage(), PixmapEntry::pixmap(), and src_gui_image_qpixmapcache::wrapper0().
|
inline |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Loads a pixmap from the binary data using the specified format and conversion flags.
Definition at line 163 of file qpixmap.h.
References loadFromData().
bool QPixmap::loadFromData | ( | const uchar * | data, |
uint | len, | ||
const char * | format = nullptr , |
||
Qt::ImageConversionFlags | flags = Qt::AutoColor |
||
) |
Loads a pixmap from the len first bytes of the given binary data.
Returns true
if the pixmap was loaded successfully; otherwise invalidates the pixmap and returns false
.
The loader attempts to read the pixmap using the specified format. If the format is not specified (which is the default), the loader probes the file for a header to guess the file format.
If the data needs to be modified to fit in a lower-resolution result (e.g. converting from 32-bit to 8-bit), use the flags to control the conversion.
Definition at line 765 of file qpixmap.cpp.
References QPlatformPixmap::create(), and QPlatformPixmap::PixmapType.
Referenced by QTextHtmlParserNode::applyBackgroundImage(), loadFromData(), and QTextDocument::loadResource().
QBitmap QPixmap::mask | ( | ) | const |
Returns true
if this pixmap has an alpha channel, or has a mask, otherwise returns false
.
Returns true
if the pixmap has a format that respects the alpha channel, otherwise returns false
.
Extracts a bitmap mask from the pixmap's alpha channel.
Referenced by QCursor::QCursor(), main(), qt_pixmapToWinHICON(), QShapedPixmapWindow::setPixmap(), and QGraphicsPixmapItemPrivate::updateShape().
|
overrideprotectedvirtual |
Reimplemented from QPaintDevice.
QPixmap::operator QVariant | ( | ) | const |
Returns the pixmap as a QVariant.
Definition at line 383 of file qpixmap.cpp.
References QVariant::fromValue().
|
inline |
Returns true
if this is a null pixmap; otherwise returns false
.
Definition at line 119 of file qpixmap.h.
References QPlatformPixmap::isNull().
|
delete |
Assigns the given pixmap to this pixmap and returns a reference to this pixmap.
Move-assigns other to this QPixmap instance.
Definition at line 350 of file qpixmap.cpp.
References QPaintDevice::paintingActive(), pixmap, and qWarning.
|
delete |
|
overridevirtual |
Implements QPaintDevice.
QRect QPixmap::rect | ( | ) | const |
Returns the pixmap's enclosing rectangle.
Definition at line 509 of file qpixmap.cpp.
Referenced by QMoviePrivate::_q_loadNextFrame(), _q_paintIntoCache(), copy(), QPainter::drawPixmap(), QBlitterPaintEngine::drawPixmap(), QPaintEngineEx::drawPixmap(), qt_mac_draw_pattern(), and scroll().
bool QPixmap::save | ( | const QString & | fileName, |
const char * | format = nullptr , |
||
int | quality = -1 |
||
) | const |
Saves the pixmap to the file with the given fileName using the specified image file format and quality factor.
Returns true
if successful; otherwise returns false
.
The quality factor must be in the range [0,100] or -1. Specify 0 to obtain small compressed files, 100 for large uncompressed files, and -1 to use the default settings.
If format is \nullptr, an image format will be chosen from fileName's suffix.
Definition at line 807 of file qpixmap.cpp.
References fileName, and isNull().
Referenced by QDBusMenuItem::QDBusMenuItem(), QQC2::QWindowsXPStyle::drawComplexControl(), and Viewer::saveImage().
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.This function writes a QPixmap to the given device using the specified image file format and quality factor.
This can be used, for example, to save a pixmap directly into a QByteArray:
Definition at line 825 of file qpixmap.cpp.
References device, and isNull().
QPixmap QPixmap::scaled | ( | const QSize & | s, |
Qt::AspectRatioMode | aspectMode = Qt::IgnoreAspectRatio , |
||
Qt::TransformationMode | mode = Qt::FastTransformation |
||
) | const |
|
inline |
Definition at line 78 of file qpixmap.h.
References scaled().
Referenced by FinalWidget::mouseMoveEvent(), PixmapEntry::pixmap(), QPixmapIconEngine::scaledPixmap(), and QWindowsSystemTrayIcon::showMessage().
QPixmap QPixmap::scaledToHeight | ( | int | height, |
Qt::TransformationMode | mode = Qt::FastTransformation |
||
) | const |
Returns a scaled copy of the image.
The returned image is scaled to the given height using the specified transformation mode. The width of the pixmap is automatically calculated so that the aspect ratio of the pixmap is preserved.
If height is 0 or negative, a null pixmap is returned.
QPixmap Q_TRACE_INSTRUMENTQPixmap QPixmap::scaledToWidth | ( | int | w, |
Qt::TransformationMode | mode = Qt::FastTransformation |
||
) | const |
Returns a scaled copy of the image.
The returned image is scaled to the given width using the specified transformation mode. The height of the pixmap is automatically calculated so that the aspect ratio of the pixmap is preserved.
If width is 0 or negative, a null pixmap is returned.
Definition at line 1063 of file qpixmap.cpp.
Scrolls the area rect of this pixmap by (dx, dy). The exposed region is left unchanged. You can optionally pass a pointer to an empty QRegion to get the region that is exposed by the scroll operation.
You cannot scroll while there is an active painter on the pixmap.
Definition at line 313 of file qpixmap.cpp.
References QPainter::CompositionMode_Source, detach(), QPainter::drawPixmap(), QPainter::end(), isNull(), painter, pix, rect(), QPainter::setCompositionMode(), QRegion::translated(), and QRect::translated().
|
inline |
This convenience function is equivalent to calling QPixmap::scroll(dx, dy, QRect(x, y, width, height), exposed).
Definition at line 158 of file qpixmap.h.
References scroll().
Referenced by scroll(), and QGraphicsItem::scroll().
Sets the device pixel ratio for the pixmap.
This is the ratio between image pixels and device-independent pixels.
The default scaleFactor is 1.0. Setting it to something else has two effects:
QPainters that are opened on the pixmap will be scaled. For example, painting on a 200x200 image if with a ratio of 2.0 will result in effective (device-independent) painting bounds of 100x100.
Code paths in Qt that calculate layout geometry based on the pixmap size will take the ratio into account: QSize layoutSize = pixmap.size() / pixmap.devicePixelRatio() The net effect of this is that the pixmap is displayed as high-DPI pixmap rather than a large pixmap (see \l{Drawing High Resolution Versions of Pixmaps and Images}).
Definition at line 608 of file qpixmap.cpp.
References detach(), and isNull().
Referenced by _q_paintIntoCache(), QWindowsOleDropSource::createCursors(), QGraphicsScenePrivate::drawItemHelper(), QCocoaScreen::grabWindow(), QScreen::grabWindow(), QTabBarPrivate::setupMovableTab(), QHeaderViewPrivate::setupSectionIndicator(), QQC2_NAMESPACE::QMacStyle::standardIcon(), QMacStyle::standardIcon(), styleCachePixmap(), and QQC2::styleCachePixmap().
Sets a mask bitmap.
This function merges the mask with the pixmap's alpha channel. A pixel value of 1 on the mask means the pixmap's pixel is unchanged; a value of 0 means the pixel is transparent. The mask must have the same size as this pixmap.
Setting a null mask resets the mask, leaving the previously transparent pixels black. The effect of this function is undefined when the pixmap is being painted on.
Definition at line 547 of file qpixmap.cpp.
References detach(), isNull(), QPaintDevice::paintingActive(), and qWarning.
Referenced by QCursor::QCursor(), createPixmapCursorFromData(), QX11PlatformPixmap::transformed(), and src_gui_image_qpixmap::wrapper0().
QSize QPixmap::size | ( | ) | const |
Returns the size of the pixmap.
Definition at line 497 of file qpixmap.cpp.
Referenced by QCursor::QCursor(), QSvgIconEngine::actualSize(), QPixmapIconEngine::availableSizes(), QPixmapIconEngine::bestMatch(), bestSizeScaleMatch(), QPixmapDropShadowFilter::draw(), QQC2::QCommonStyle::drawControl(), QCommonStyle::drawControl(), QPaintEngine::drawImage(), QGraphicsScenePrivate::drawItemHelper(), QBlitterPaintEngine::drawPixmap(), QXcbNativeBackingStore::flush(), QCocoaScreen::grabWindow(), PixmapEntry::pixmap(), QSvgIconEngine::pixmap(), QXcbNativeBackingStore::resize(), QPixmapIconEngine::scaledPixmap(), QWindowsDragCursorWindow::setPixmap(), QShapedPixmapWindow::setPixmap(), QWizardHeader::setup(), QWindowsSystemTrayIcon::showMessage(), QSGSoftwareLayer::textureSize(), and QSGSoftwarePixmapTexture::textureSize().
Swaps pixmap other with this pixmap. This operation is very fast and never fails.
Definition at line 43 of file qpixmap.h.
References other().
Referenced by swap(), QBitmap::swap(), swap(), swap(), swap(), swap(), and swap().
QImage QPixmap::toImage | ( | ) | const |
Converts the pixmap to a QImage.
Returns a null image if the conversion fails.
If the pixmap has 1-bit depth, the returned image will also be 1 bit deep. Images with more bits will be returned in a format closely represents the underlying system. Usually this will be QImage::Format_ARGB32_Premultiplied for pixmaps with an alpha and QImage::Format_RGB32 or QImage::Format_RGB16 for pixmaps without alpha.
Note that for the moment, alpha masks on monochrome images are ignored.
Definition at line 412 of file qpixmap.cpp.
References isNull().
Referenced by QCursor::QCursor(), QFbCursor::changeCursor(), QEglFSKmsGbmCursor::changeCursor(), createBitmapCursor(), createHeuristicMask(), createMaskFromColor(), QCocoaDrag::drag(), QWindowsVistaStylePrivate::drawBackgroundThruNativeBuffer(), QQC2::QWindowsXPStylePrivate::drawBackgroundThruNativeBuffer(), QQC2::QCommonStyle::drawControl(), QQC2::QWindowsStyle::drawControl(), QCommonStyle::drawControl(), QCoreGraphicsPaintEngine::drawPixmap(), QWindowsDirect2DPaintEngine::drawPixmap(), QSvgPaintEngine::drawPixmap(), QPdfEngine::drawPixmap(), QTexturedBrushData::image(), FinalWidget::mouseMoveEvent(), qt_mac_draw_pattern(), qt_pixmapToWinHICON(), QAlphaWidget::run(), QCocoaMessageDialog::show(), QMacStyle::styleHint(), QQC2_NAMESPACE::QMacStyle::styleHint(), QWindowsDirect2DBackingStore::toImage(), QDirectFbBackingStore::toImage(), QXcbNativeBackingStore::toImage(), QSGSoftwareLayer::toImage(), and QSGSoftwarePainterNode::toImage().
QPixmap QPixmap::transformed | ( | const QTransform & | , |
Qt::TransformationMode | mode = Qt::FastTransformation |
||
) | const |
Referenced by createPixmapCursorFromData(), QBitmap::transformed(), and QSGSoftwareInternalImageNode::update().
|
static |
Returns the actual matrix used for transforming a pixmap with the given width, height and matrix.
When transforming a pixmap using the transformed() function, the transformation matrix is internally adjusted to compensate for unwanted translation, i.e. transformed() returns the smallest pixmap containing all transformed points of the original pixmap. This function returns the modified matrix, which maps points correctly from the original pixmap into the new pixmap.
Definition at line 436 of file qpixmap.cpp.
References QImage::trueMatrix().
Referenced by QWin32PrintEngine::drawPixmap(), and QX11PlatformPixmap::transformed().
int QPixmap::width | ( | ) | const |
Returns the width of the pixmap.
Definition at line 472 of file qpixmap.cpp.
Referenced by QPixmapStyle::comboBoxSubControlRect(), copy(), QWindowsOleDropSource::createCursors(), createPixmapCursorFromData(), QQC2::QCommonStyle::drawControl(), QQC2::QWindowsStyle::drawControl(), QCommonStyle::drawControl(), QQC2::QWindowsXPStyle::drawControl(), QWindowsVistaStyle::drawControl(), QPainter::drawPixmap(), QCoreGraphicsPaintEngine::drawPixmap(), QPainter::drawPixmap(), QWin32PrintEngine::drawTiledPixmap(), QBlitterPaintEngine::fillRect(), QtPrivate::QColorWell::mouseMoveEvent(), QtPrivate::QColorShowLabel::mouseMoveEvent(), FinalWidget::mouseMoveEvent(), QSGSoftwareInternalImageNode::paint(), QSGSoftwareNinePatchNode::paint(), QtPrivate::QColorLuminancePicker::paintEvent(), QPixmapStyle::pixelMetric(), qt_fill_tile(), qt_mac_draw_pattern(), QQC2_NAMESPACE::QMacStyle::standardIcon(), QMacStyle::standardIcon(), QOpenGL2PaintEngineExPrivate::updateBrushUniforms(), QQuickText::updatePaintNode(), and QGraphicsPixmapItemPrivate::updateShape().
|
related |
Writes the given pixmap to the given stream as a PNG image.
Note that writing the stream to a file will not produce a valid image file.
Definition at line 927 of file qpixmap.cpp.
References pixmap.
|
friend |
Reads an image from the given stream into the given pixmap.
Definition at line 940 of file qpixmap.cpp.
|
related |
Reads an image from the given stream into the given pixmap.
Definition at line 940 of file qpixmap.cpp.
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |