QPixmap

PyQt5.QtGui.QPixmap

Inherits from QPaintDevice.

Inherited by QBitmap.

Description

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鈥檚 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 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.

Reading and Writing Image Files

QPixmap provides several ways of reading an image file: The file can be loaded when constructing the QPixmap object, or by using the load() or loadFromData() functions later on. When loading an image, the file name can either refer to an actual file on disk or to one of the application鈥檚 embedded resources. See The Qt Resource System overview for details on how to embed images and other resource files in the application鈥檚 executable.

Simply call the save() function to save a QPixmap object.

The complete list of supported file formats are available through the supportedImageFormats() and supportedImageFormats() functions. New file formats can be added as plugins. By default, Qt supports the following formats:

Format

Description

Qt鈥檚 support

BMP

Windows Bitmap

Read/write

GIF

Graphic Interchange Format (optional)

Read

JPG

Joint Photographic Experts Group

Read/write

JPEG

Joint Photographic Experts Group

Read/write

PNG

Portable Network Graphics

Read/write

PBM

Portable Bitmap

Read

PGM

Portable Graymap

Read

PPM

Portable Pixmap

Read/write

XBM

X11 Bitmap

Read/write

XPM

X11 Pixmap

Read/write

Pixmap Information

QPixmap provides a collection of functions that can be used to obtain a variety of information about the pixmap:

Available Functions

Geometry

The size(), width() and height() functions provide information about the pixmap鈥檚 size. The rect() function returns the image鈥檚 enclosing rectangle.

Alpha component

The hasAlphaChannel() returns true if the pixmap has a format that respects the alpha channel, otherwise returns false. The hasAlpha(), setMask() and mask() functions are legacy and should not be used. They are potentially very slow.

The createHeuristicMask() function creates and returns a 1-bpp heuristic mask (i.e. a QBitmap) for this pixmap. It works by selecting a color from one of the corners and then chipping away pixels of that color, starting at all the edges. The createMaskFromColor() function creates and returns a mask (i.e. a QBitmap) for the pixmap based on a given color.

Low-level information

The depth() function returns the depth of the pixmap. The defaultDepth() function returns the default depth, i.e. the depth used by the application on the given screen.

The cacheKey() function returns a number that uniquely identifies the contents of the QPixmap object.

The x11Info() function returns information about the configuration of the X display used by the screen to which the pixmap currently belongs. The x11PictureHandle() function returns the X11 Picture handle of the pixmap for XRender support. Note that the two latter functions are only available on x11.

Pixmap Conversion

A QPixmap object can be converted into a QImage using the toImage() function. Likewise, a QImage can be converted into a QPixmap using the fromImage(). If this is too expensive an operation, you can use fromImage() instead.

To convert a QPixmap to and from HICON you can use the QtWinExtras functions QtWin::toHICON() and QtWin::fromHICON() respectively.

Pixmap Transformations

QPixmap supports a number of functions for creating a new pixmap that is a transformed version of the original:

The scaled(), scaledToWidth() and scaledToHeight() functions return scaled copies of the pixmap, while the copy() function creates a QPixmap that is a plain copy of the original one.

The transformed() function returns a copy of the pixmap that is transformed with the given transformation matrix and transformation mode: Internally, the transformation matrix is adjusted to compensate for unwanted translation, i.e. transformed() returns the smallest pixmap containing all transformed points of the original pixmap. The static trueMatrix() function returns the actual matrix used for transforming the pixmap.

Note: When using the native X11 graphics system, the pixmap becomes invalid when the QApplication instance is destroyed.

Methods

__init__()

Constructs a null pixmap.

See also

isNull().


__init__(QSize)

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.


__init__(List[str])

TODO


__init__(QPixmap)

Constructs a pixmap that is a copy of the given pixmap.

See also

copy().


__init__(Any)

TODO


__init__(int, int)

TODO


__init__(str, format: str = None, flags: Union[ImageConversionFlags, ImageConversionFlag] = Qt.ImageConversionFlag.AutoColor)

TODO


cacheKey() → int

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 will change when the pixmap is altered.


convertFromImage(QImage, flags: Union[ImageConversionFlags, ImageConversionFlag] = AutoColor) → bool

Replaces this pixmap鈥檚 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鈥檚 image without creating a new QPixmap as fromImage() would.

See also

fromImage().


copy(rect: QRect = QRect()) → QPixmap

TODO


copy(int, int, int, int) → QPixmap

TODO


createHeuristicMask(clipTight: bool = True) → QBitmap

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.


createMaskFromColor(Union[QColor, GlobalColor], mode: MaskMode = MaskInColor) → QBitmap

Creates and returns a mask for this pixmap based on the given maskColor. If the mode is MaskInColor, all pixels matching the maskColor will be transparent. If mode is MaskOutColor, all pixels matching the maskColor will be opaque.

This function is slow because it involves converting to/from a QImage.


@staticmethod
defaultDepth() → int

Returns the default pixmap depth used by the application.

On all platforms the depth of the primary screen will be returned.

Note: QGuiApplication must be created before calling this function.

See also

depth(), Pixmap Information.


depth() → int

TODO


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 begin() on a pixmap.

There are two exceptions in which 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 function returns immediately if there is just a single reference or if the pixmap has not been initialized yet.


devicePixelRatio() → float

TODO


devType() → int

TODO


fill(color: Union[QColor, GlobalColor] = Qt.GlobalColor.white)

TODO


@staticmethod
fromImage(QImage, flags: Union[ImageConversionFlags, ImageConversionFlag] = AutoColor) → QPixmap

TODO


@staticmethod
fromImageReader(QImageReader, flags: Union[ImageConversionFlags, ImageConversionFlag] = AutoColor) → QPixmap

TODO


hasAlpha() → bool

Returns true if this pixmap has an alpha channel, or has a mask, otherwise returns false.


hasAlphaChannel() → bool

Returns true if the pixmap has a format that respects the alpha channel, otherwise returns false.

See also

hasAlpha().


height() → int

TODO


isNull() → bool

TODO


isQBitmap() → bool

TODO


load(str, format: str = None, flags: Union[ImageConversionFlags, ImageConversionFlag] = AutoColor) → bool

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鈥檚 embedded resources. See the Resource System overview for details on how to embed pixmaps and other resource files in the application鈥檚 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(), Reading and Writing Image Files.


loadFromData(bytes, format: str = None, flags: Union[ImageConversionFlags, ImageConversionFlag] = AutoColor) → bool

TODO


loadFromData(Union[QByteArray, bytes, bytearray], format: str = None, flags: Union[ImageConversionFlags, ImageConversionFlag] = AutoColor) → bool

TODO


mask() → QBitmap

See also

setMask().


metric(PaintDeviceMetric) → int

TODO


paintEngine() → QPaintEngine

TODO


rect() → QRect

TODO


save(str, format: str = None, quality: int = -1) → bool

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鈥檚 suffix.

See also

Reading and Writing Image Files.


save(QIODevice, format: str = None, quality: int = -1) → bool

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"); // writes pixmap into bytes in PNG format

scaled(QSize, aspectRatioMode: AspectRatioMode = IgnoreAspectRatio, transformMode: TransformationMode = FastTransformation) → QPixmap

TODO


scaled(int, int, aspectRatioMode: AspectRatioMode = IgnoreAspectRatio, transformMode: TransformationMode = FastTransformation) → QPixmap

TODO


scaledToHeight(int, mode: TransformationMode = FastTransformation) → QPixmap

TODO


scaledToWidth(int, mode: TransformationMode = FastTransformation) → QPixmap

TODO


scroll(int, int, QRect) → QRegion

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.

See also

scroll().


scroll(int, int, int, int, int, int) → QRegion

TODO


setDevicePixelRatio(float)

TODO


setMask(QBitmap)

Sets a mask bitmap.

This function merges the mask with the pixmap鈥檚 alpha channel. A pixel value of 1 on the mask means the pixmap鈥檚 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, QBitmap.


size() → QSize

TODO


swap(QPixmap)

TODO


toImage() → QImage

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 Format_ARGB32_Premultiplied for pixmaps with an alpha and Format_RGB32 or Format_RGB16 for pixmaps without alpha.

Note that for the moment, alpha masks on monochrome images are ignored.

See also

fromImage(), Image Formats.


transformed(QTransform, mode: TransformationMode = FastTransformation) → QPixmap

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(), Pixmap Transformations.


@staticmethod
trueMatrix(QTransform, int, int) → QTransform

TODO


width() → int

TODO