Member Function Documentation
QPixmap::QPixmap()
Constructs a null pixmap.
See also isNull().
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.
Warning: This will create a QPixmap with uninitialized data. Call fill() to fill the pixmap with an appropriate color before drawing onto it with QPainter.
See also isNull().
QPixmap::QPixmap(const QString & fileName, const char * format = 0, 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 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.
See also Reading and Writing Image Files.
QPixmap::QPixmap(const char * const[] xpm)
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:
static const char * const start_xpm[]={
"16 15 8 1",
"a c #cec6bd",
....
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.
QPixmap::QPixmap(const QPixmap & pixmap)
Constructs a pixmap that is a copy of the given pixmap.
See also copy().
QPixmap::QPixmap(const QSize & size)
This is an overloaded function.
Constructs a pixmap of the given size.
Warning: This will create a QPixmap with uninitialized data. Call fill() to fill the pixmap with an appropriate color before drawing onto it with QPainter.
QPixmap::~QPixmap()
Destroys the pixmap.
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.
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 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.
This function was introduced in Qt 4.7.
See also fromImage().
QPixmap QPixmap::copy(const QRect & rectangle = QRect()) const
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 Implicit Data Sharing documentation.
If the given rectangle is empty, the whole image is copied.
See also operator=(), QPixmap(), and Pixmap Transformations.
QPixmap QPixmap::copy(int x, int y, int width, int height) const
This is an overloaded function.
Returns a deep copy of the subset of the pixmap that is specified by the rectangle QRect( x, y, width, height).
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:
QPixmap myPixmap;
myPixmap->setMask(myPixmap->createHeuristicMask());
This function is slow because it involves converting to/from a QImage, and non-trivial computations.
See also QImage::createHeuristicMask() and createMaskFromColor().
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.
See also createHeuristicMask() and QImage::createMaskFromColor().
int QPixmap::defaultDepth() [static]
Returns the default pixmap depth used by the application.
On all platforms the depth of the primary screen will be returned.
See also depth(), QColormap::depth(), and Pixmap Information.
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.
See also defaultDepth() and Pixmap Information.
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.
void QPixmap::fill(const QColor & color = Qt::white)
Fills the pixmap with the given color.
The effect of this function is undefined when the pixmap is being painted on.
See also Pixmap Transformations.
void QPixmap::fill(const QPaintDevice * device, const QPoint & ofs)
QPixmap QPixmap::fromImage(const QImage & image, Qt::ImageConversionFlags flags = Qt::AutoColor) [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 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.
See also fromImageReader(), toImage(), and Pixmap Conversion.
QPixmap QPixmap::fromImageReader(QImageReader * imageReader, Qt::ImageConversionFlags flags = Qt::AutoColor) [static]
Create a QPixmap from an image read directly from an imageReader. The flags argument is a bitwise-OR of the 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.
See also fromImage(), toImage(), and Pixmap Conversion.
QPixmap QPixmap::grabWidget(QObject * widget, const QRect & rect) [static]
QPixmap QPixmap::grabWidget(QObject * widget, int x = 0, int y = 0, int w = -1, int h = -1) [static]
QPixmap QPixmap::grabWindow(WId window, int x = 0, int y = 0, int width = -1, int height = -1) [static]
This function is deprecated.
Creates and returns a pixmap constructed by grabbing the contents of the given window restricted by QRect(x, y, width, height).
The arguments (x, y) specify the offset in the window, whereas (width, height) specify the area to be copied. If width is negative, the function copies everything to the right border of the window. If height is negative, the function copies everything to the bottom of the window.
The window system identifier (WId) can be retrieved using the QWidget::winId() function. The rationale for using a window identifier and not a QWidget, is to enable grabbing of windows that are not part of the application, window system frames, and so on.
The grabWindow() function grabs pixels from the screen, not from the window, i.e. if there is another window partially or entirely over the one you grab, you get pixels from the overlying window, too. The mouse cursor is generally not grabbed.
Note on X11 that if the given window doesn't have the same depth as the root window, and another window partially or entirely obscures the one you grab, you will not get pixels from the overlying window. The contents of the obscured areas in the pixmap will be undefined and uninitialized.
On Windows Vista and above grabbing a layered window, which is created by setting the Qt::WA_TranslucentBackground attribute, will not work. Instead grabbing the desktop widget should work.
Warning: In general, grabbing an area outside the screen is not safe. This depends on the underlying window system.
Warning: The function is deprecated in Qt 5.0 since there might be platform plugins in which window system identifiers (WId) are local to a screen. Use QScreen::grabWindow() instead.
See also grabWidget(), Screenshot Example, and QScreen.
bool QPixmap::hasAlpha() const
Returns true if this pixmap has an alpha channel, or has a mask, otherwise returns false.
See also hasAlphaChannel() and mask().
bool QPixmap::hasAlphaChannel() const
Returns true if the pixmap has a format that respects the alpha channel, otherwise returns false.
See also hasAlpha().
int QPixmap::height() const
Returns the height of the pixmap.
See also size() and Pixmap Information.
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.
bool QPixmap::isQBitmap() const
Returns true if this is a QBitmap; otherwise returns false.
bool QPixmap::load(const QString & fileName, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor)
Loads a pixmap from the file with the given fileName. Returns true if the pixmap was successfully loaded; otherwise 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 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; the key used is internal and can not be acquired.
See also loadFromData() and Reading and Writing Image Files.
bool QPixmap::loadFromData(const uchar * data, uint len, const char * format = 0, 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 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.
See also load() and Reading and Writing Image Files.
bool QPixmap::loadFromData(const QByteArray & data, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor)
This is an overloaded function.
Loads a pixmap from the binary data using the specified format and conversion flags.
QBitmap QPixmap::mask() const
Extracts a bitmap mask from the pixmap's alpha channel.
Warning: This is potentially an expensive operation. The mask of the pixmap is extracted dynamically from the pixeldata.
See also setMask() and Pixmap Information.
QRect QPixmap::rect() const
Returns the pixmap's enclosing rectangle.
See also Pixmap Information.
bool QPixmap::save(const QString & fileName, const char * format = 0, 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 0, an image format will be chosen from fileName's suffix.
See also Reading and Writing Image Files.
bool QPixmap::save(QIODevice * device, const char * format = 0, int quality = -1) const
This is an overloaded function.
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:
QPixmap pixmap;
QByteArray bytes;
QBuffer buffer(&bytes);
buffer.open(QIODevice::WriteOnly);
pixmap.save(&buffer, "PNG");
QPixmap QPixmap::scaled(const QSize & size, Qt::AspectRatioMode aspectRatioMode = Qt::IgnoreAspectRatio, Qt::TransformationMode transformMode = Qt::FastTransformation) const
Scales the pixmap to the given size, using the aspect ratio and transformation modes specified by aspectRatioMode and transformMode.
- If aspectRatioMode is Qt::IgnoreAspectRatio, the pixmap is scaled to size.
- If aspectRatioMode is Qt::KeepAspectRatio, the pixmap is scaled to a rectangle as large as possible inside size, preserving the aspect ratio.
- If aspectRatioMode is Qt::KeepAspectRatioByExpanding, the pixmap is scaled to a rectangle as small as possible outside size, preserving the aspect ratio.
If the given size is empty, this function returns a null pixmap.
In some cases it can be more beneficial to draw the pixmap to a painter with a scale set rather than scaling the pixmap. This is the case when the painter is for instance based on OpenGL or when the scale factor changes rapidly.
See also isNull() and Pixmap Transformations.
QPixmap QPixmap::scaled(int width, int height, Qt::AspectRatioMode aspectRatioMode = Qt::IgnoreAspectRatio, Qt::TransformationMode transformMode = Qt::FastTransformation) const
This is an overloaded function.
Returns a copy of the pixmap scaled to a rectangle with the given width and height according to the given aspectRatioMode and transformMode.
If either the width or the height is zero or negative, this function returns a null pixmap.
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.
See also isNull() and Pixmap Transformations.
QPixmap QPixmap::scaledToWidth(int width, 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.
See also isNull() and Pixmap Transformations.
void QPixmap::scroll(int dx, int dy, int x, int y, int width, int height, QRegion * exposed = 0)
This convenience function is equivalent to calling QPixmap::scroll(dx, dy, QRect(x, y, width, height), exposed).
This function was introduced in Qt 4.6.
See also QWidget::scroll() and QGraphicsItem::scroll().
void QPixmap::scroll(int dx, int dy, const QRect & rect, QRegion * exposed = 0)
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.
QPixmap pixmap("background.png");
QRegion exposed;
pixmap.scroll(10, 10, pixmap.rect(), &exposed);
You cannot scroll while there is an active painter on the pixmap.
This function was introduced in Qt 4.6.
See also QWidget::scroll() and QGraphicsItem::scroll().
void QPixmap::setMask(const QBitmap & mask)
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.
Warning: This is potentially an expensive operation.
See also mask(), Pixmap Transformations, and QBitmap.
QSize QPixmap::size() const
Returns the size of the pixmap.
See also width(), height(), and Pixmap Information.
void QPixmap::swap(QPixmap & other)
Swaps pixmap other with this pixmap. This operation is very fast and never fails.
This function was introduced in Qt 4.8.
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.
See also fromImage() and Image Formats.
QPixmap QPixmap::transformed(const QTransform & transform, Qt::TransformationMode mode = Qt::FastTransformation) const
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.
See also trueMatrix() and Pixmap Transformations.
QPixmap QPixmap::transformed(const QMatrix & matrix, Qt::TransformationMode mode = Qt::FastTransformation) const
This is an overloaded function.
This convenience function loads the matrix into a QTransform and calls the overloaded function.
QTransform QPixmap::trueMatrix(const QTransform & matrix, int width, int height) [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.
See also transformed() and Pixmap Transformations.
QMatrix QPixmap::trueMatrix(const QMatrix & m, int w, int h) [static]
This is an overloaded function.
This convenience function loads the matrix m into a QTransform and calls the overloaded function with the QTransform and the width w and the height h.
int QPixmap::width() const
Returns the width of the pixmap.
See also size() and Pixmap Information.
QPixmap::operator QVariant() const
Returns the pixmap as a QVariant.
bool QPixmap::operator!() const
Returns true if this is a null pixmap; otherwise returns false.
See also isNull().
QPixmap & QPixmap::operator=(const QPixmap & pixmap)
Assigns the given pixmap to this pixmap and returns a reference to this pixmap.
See also copy() and QPixmap().