Viadeo Twitter Google Bookmarks ! Facebook Digg del.icio.us MySpace Yahoo MyWeb Blinklist Netvouz Reddit Simpy StumbleUpon Bookmarks Windows Live Favorites 
Logo Documentation Qt ·  Page d'accueil  ·  Toutes les classes  ·  Classes principales  ·  Annotées  ·  Classes groupées  ·  Modules  ·  Fonctions  · 

QPixmap Class Reference
[QtGui module]

The QPixmap class is an off-screen image representation that can be used as a paint device. More...

 #include <QPixmap>

Inherits QPaintDevice.

Inherited by Q3CanvasPixmap and QBitmap.

Public Types

Public Functions

  • QPixmap ( int width, int height )
  • QPixmap ( const QString & fileName, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor )
  • QPixmap ( const char * const[] xpm )
  • QPixmap ( const QPixmap & pixmap )
  • QPixmap ( const QSize & size )
  • QPixmap alphaChannel () const
  • QPixmap copy ( const QRect & rectangle = QRect() ) const
  • QPixmap copy ( int x, int y, int width, int height ) const
  • QBitmap createHeuristicMask ( bool clipTight = true ) const
  • QBitmap createMaskFromColor ( const QColor & maskColor ) const
  • int depth () const
  • void detach ()
  • void fill ( const QColor & fillColor = Qt::white )
  • void fill ( const QWidget * widget, const QPoint & offset )
  • void fill ( const QWidget * widget, int x, int y )
  • Qt::HANDLE handle () const
  • bool hasAlpha () const
  • bool hasAlphaChannel () const
  • int height () const
  • bool isNull () const
  • bool isQBitmap () const
  • bool load ( const QString & fileName, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor )
  • bool loadFromData ( const uchar * data, uint len, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor )
  • bool loadFromData ( const QByteArray & data, const char * format = 0, Qt::ImageConversionFlags flags = Qt::AutoColor )
  • QBitmap mask () const
  • QRect rect () const
  • bool save ( const QString & fileName, const char * format = 0, int quality = -1 ) const
  • bool save ( QIODevice * device, const char * format = 0, int quality = -1 ) const
  • QPixmap scaled ( const QSize & size, Qt::AspectRatioMode aspectRatioMode = Qt::IgnoreAspectRatio, Qt::TransformationMode transformMode = Qt::FastTransformation ) const
  • QPixmap scaled ( int width, int height, Qt::AspectRatioMode aspectRatioMode = Qt::IgnoreAspectRatio, Qt::TransformationMode transformMode = Qt::FastTransformation ) const
  • QPixmap scaledToHeight ( int height, Qt::TransformationMode mode = Qt::FastTransformation ) const
  • QPixmap scaledToWidth ( int width, Qt::TransformationMode mode = Qt::FastTransformation ) const
  • int serialNumber () const
  • void setAlphaChannel ( const QPixmap & alphaChannel )
  • void setMask ( const QBitmap & newmask )
  • QSize size () const
  • QImage toImage () const
  • CGImageRef toMacCGImageRef () const
  • HBITMAP toWinHBITMAP ( HBitmapFormat format = NoAlpha ) const
  • QPixmap transformed ( const QMatrix & matrix, Qt::TransformationMode mode = Qt::FastTransformation ) const
  • int width () const
  • const QX11Info & x11Info () const
  • Qt::HANDLE x11PictureHandle () const
  • bool operator! () const
  • QPixmap & operator= ( const QPixmap & pixmap )

Static Public Members

  • QPixmap fromImage ( const QImage & image, Qt::ImageConversionFlags flags = Qt::AutoColor )
  • QPixmap fromMacCGImageRef ( CGImageRef image )
  • QPixmap fromWinHBITMAP ( HBITMAP bitmap, HBitmapFormat format = NoAlpha )
  • QPixmap grabWidget ( QWidget * widget, const QRect & rectangle )
  • QPixmap grabWidget ( QWidget * widget, int x = 0, int y = 0, int width = -1, int height = -1 )
  • QPixmap grabWindow ( WId window, int x = 0, int y = 0, int width = -1, int height = -1 )
  • QMatrix trueMatrix ( const QMatrix & matrix, int width, int height )

Related Non-Members

  • QDataStream & operator<< ( QDataStream & stream, const QPixmap & pixmap )
  • QDataStream & operator>> ( QDataStream & stream, QPixmap & pixmap )

Additional Inherited Members


Detailed 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's subclasses (such as QPushButton and QToolButton). QLabel has a pixmap property, whereas QAbstractButton has an icon property. And because QPixmap is a QPaintDevice subclass, QPainter can be used to draw directly onto pixmaps.

In addition to the ordinary constructors, a QPixmap can be constructed using the static grabWidget() and grabWindow() functions which creates a QPixmap and paints the given widget, or window, in it.

Note that the pixel data in a pixmap is internal and is managed by the underlying window system. Pixels can only be accessed through QPainter functions or by converting the QPixmap to a QImage. Depending on the system, QPixmap is stored using a RGB32 or a premultiplied alpha format. If the image has an alpha channel, and if the system allows, the preferred format is premultiplied alpha. Note also that QPixmap, unlike QImage, may be hardware dependent. On X11 and Mac, a QPixmap is stored on the server side while a QImage is stored on the client side (on Windows, these two classes have an equivalent internal representation, i.e. both QImage and QPixmap are stored on the client side and don't use any GDI resources).

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. On Windows, the QPixmap class also supports conversion between HBITMAP and 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 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.

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's embedded resources. See The Qt Resource System overview for details on how to embed images and other resource files in the application's executable.

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

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

FormatDescriptionQt's support
BMPWindows BitmapRead/write
GIFGraphic Interchange Format (optional)Read
JPGJoint Photographic Experts GroupRead/write
JPEGJoint Photographic Experts GroupRead/write
PNGPortable Network GraphicsRead/write
PBMPortable BitmapRead
PGMPortable GraymapRead
PPMPortable PixmapRead/write
XBMX11 BitmapRead/write
XPMX11 PixmapRead/write

(To configure Qt with GIF support, pass -qt-gif to the configure script or check the appropriate option in the graphical installer.)

Pixmap Information

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

Available Functions
GeometryThe size(), width() and height() functions provide information about the pixmap's size. The rect() function returns the image's enclosing rectangle.
Alpha componentThe hasAlphaChannel() returns true if the pixmap has a format that respects the alpha channel, otherwise returns false, while the hasAlpha() function returns true if the pixmap has an alpha channel or a mask (otherwise false).

The alphaChannel() function returns the alpha channel as a new QPixmap object, while the mask() function returns the mask as a QBitmap object. The alpha channel and mask can be set using the setAlphaChannel() and setMask() functions, respectively.

Low-level informationThe 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 serialNumber() 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 to display the widget. 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 QBitmap::fromImage() instead.

In addition, on Windows, the QPixmap class supports conversion to and from HBitmap: the toWinHBITMAP() function creates a HBITMAP equivalent to the QPixmap, based on the given HBitmapFormat, and returns the HBITMAP handle. The fromWinHBITMAP() function returns a QPixmap that is equivalent to the given bitmap which has the specified format.

Pixmap Transformations

QPixmap supports a number of functions for creating a new pixmap that is a transformed version of the original: 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.

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.

There are also functions for changing attributes of a pixmap. in-place: The fill() function fills the entire image with the given color, the setMask() function sets a mask bitmap, and the setAlphaChannel() function sets the pixmap's alpha channel.

See also QBitmap, QImage, QImageReader, and QImageWriter.


Member Type Documentation

enum QPixmap::HBitmapFormat

This enum defines how the conversion between HBITMAP and QPixmap is performed.

Warning: This enum is only available on Windows.

ConstantValueDescription
QPixmap::NoAlpha0The alpha channel is ignored and always treated as being set to fully opaque. This is preferred if the HBITMAP is used with standard GDI calls, such as BitBlt().
QPixmap::PremultipliedAlpha1The HBITMAP is treated as having a alpha channel and premultiplied colors. This is preferred if the HBITMAP is accessed through the AlphaBlend() GDI function.

See also fromWinHBITMAP() and toWinHBITMAP().


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.

The content of the pixmap is uninitialized. If either width or height is zero, a null pixmap is constructed.

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 )

Constructs a pixmap of the given size.

QPixmap::~QPixmap ()

Destroys the pixmap.

QPixmap QPixmap::alphaChannel () const

Returns the alpha channel of the pixmap as a new grayscale QPixmap in which each pixel's red, green, and blue values are given the alpha value of the original pixmap. The color depth of the returned pixmap is the system depth on X11 and 8-bit on Windows and Mac OS X.

You can use this function while debugging to get a visible image of the alpha channel. If the pixmap doesn't have an alpha channel, i.e., the alpha channel's value for all pixels equals 0xff), a null pixmap is returned. You can check this with the isNull() function.

We show an example:

         pixmap = QPixmap(100, 100);
         pixmap.fill(Qt::transparent);

         QRadialGradient gradient(50, 50, 50, 50, 50);
         gradient.setColorAt(0, QColor::fromRgbF(1, 0, 0, 1));
         gradient.setColorAt(1, QColor::fromRgbF(0, 0, 0, 0));
         QPainter painter(&pixmap);
         painter.fillRect(0, 0, 100, 100, gradient);

         channelImage = pixmap.alphaChannel();
         update();
The pixmap and channelImage QPixmaps

See also setAlphaChannel() and Pixmap Information.

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 member function, provided for convenience.

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 transformation to a QImage, non-trivial computations and a transformation back to a QBitmap.

See also QImage::createHeuristicMask() and Pixmap Transformations.

QBitmap QPixmap::createMaskFromColor ( const QColor & maskColor ) const

Creates and returns a mask for this pixmap based on the given maskColor.

This function is slow because it involves transformation to a QImage and a transformation back to a QBitmap.

See also createHeuristicMask() and Pixmap Transformations.

int QPixmap::defaultDepth ()   [static]

Returns the default pixmap depth used by the application.

See also 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 & fillColor = Qt::white )

Fills the pixmap with the given fillColor.

See also Pixmap Transformations.

void QPixmap::fill ( const QWidget * widget, const QPoint & offset )

This is an overloaded member function, provided for convenience.

Fills the pixmap with the widget's background color or pixmap according to the given offset.

The QPoint offset defines a point in widget coordinates to which the pixmap's top-left pixel will be mapped to. This is only significant if the widget has a background pixmap; otherwise the pixmap will simply be filled with the background color of the widget.

void QPixmap::fill ( const QWidget * widget, int x, int y )

This is an overloaded member function, provided for convenience.

Fills the pixmap with the widget's background color or pixmap. The given point, (x, y), defines an offset in widget coordinates to which the pixmap's top-left pixel will be mapped to.

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 toImage() and Pixmap Conversion.

QPixmap QPixmap::fromMacCGImageRef ( CGImageRef image )   [static]

Returns a QPixmap that is equivalent to the given image.

Warning: This function is only available on Mac OS X.

This function was introduced in Qt 4.2.

See also toMacCGImageRef() and Pixmap Conversion.

QPixmap QPixmap::fromWinHBITMAP ( HBITMAP bitmap, HBitmapFormat format = NoAlpha )   [static]

Returns a QPixmap that is equivalent to the given bitmap. The conversion is based on the specified format.

Warning: This function is only available on Windows.

See also toWinHBITMAP() and Pixmap Conversion.

QPixmap QPixmap::grabWidget ( QWidget * widget, const QRect & rectangle )   [static]

Creates a pixmap and paints the given widget, restricted by the given rectangle, in it. If the widget has any children, then they are also painted in the appropriate positions.

If no rectangle is specified (the default) the entire widget is painted.

If widget is 0, the specified rectangle doesn't overlap the widget's rectangle, or an error occurs, the function will return a null QPixmap. If the rectangle is a superset of the given widget, the areas outside the widget are covered with the widget's background.

This function actually asks widget to paint itself (and its children to paint themselves) by calling paintEvent() with painter redirection turned on. But QPixmap also provides the grabWindow() function which is a bit faster grabbing pixels directly off the screen. In addition, if there are overlaying windows, grabWindow(), unlike grabWidget(), will see them.

Warning: Do not call this function from QWidget::paintEvent().

See also grabWindow().

QPixmap QPixmap::grabWidget ( QWidget * widget, int x = 0, int y = 0, int width = -1, int height = -1 )   [static]

This is an overloaded member function, provided for convenience.

Creates a pixmap and paints the given widget, restricted by QRect(x, y, width, height), in it.

Warning: Do not call this function from QWidget::paintEvent().

QPixmap QPixmap::grabWindow ( WId window, int x = 0, int y = 0, int width = -1, int height = -1 )   [static]

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 X11that 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.

Warning: In general, grabbing an area outside the screen is not safe. This depends on the underlying window system.

See also grabWidget() and Screenshot Example.

Qt::HANDLE QPixmap::handle () const

Returns the pixmap's handle to the device context.

Note that, since QPixmap make use of implicit data sharing, the detach() function must be called explicitly to ensure that only this pixmap's data is modified if the pixmap data is shared.

Warning: This function is X11 specific; using it is non-portable.

See also detach().

bool QPixmap::hasAlpha () const

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

See also hasAlphaChannel(), alphaChannel(), and mask().

bool QPixmap::hasAlphaChannel () const

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

See also alphaChannel() and 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.

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 member function, provided for convenience.

Loads a pixmap from the binary data using the specified format and conversion flags.

QBitmap QPixmap::mask () const

Returns the mask, or a null bitmap if no mask has been set.

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 member function, provided for convenience.

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

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.

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 member function, provided for convenience.

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.

int QPixmap::serialNumber () const

Returns a number that identifies the contents of this QPixmap object. Distinct QPixmap objects can only have the same serial number if they refer to the same contents (but they don't have to).

Warning: The serial number doesn't necessarily change when the pixmap is altered. This means that it may be dangerous to use it as a cache key. For caching pixmaps, we recommend using the QPixmapCache class whenever possible.

void QPixmap::setAlphaChannel ( const QPixmap & alphaChannel )

Sets the alpha channel of this pixmap to the given alphaChannel by converting the alphaChannel into 32 bit and using the intensity of the RGB pixel values.

The effect of this function is undefined when the pixmap is being painted on.

See also alphaChannel() and Pixmap Transformations.

void QPixmap::setMask ( const QBitmap & newmask )

Sets a mask bitmap.

The newmask bitmap defines the clip mask for this pixmap. Every pixel in newmask corresponds to a pixel in this pixmap. Pixel value 1 means opaque and pixel value 0 means transparent. The mask must have the same size as this pixmap.

Warning: Setting the mask on a pixmap will cause any alpha channel data to be cleared. For example:

         QPixmap alpha("image-with-alpha.png");
         QPixmap alphacopy = alpha;
         alphacopy.setMask(alphacopy.mask());

Now, alpha and alphacopy are visually different.

Setting a null mask resets the mask.

The effect of this function is undefined when the pixmap is being painted on.

See also mask(), Pixmap Transformations, and QBitmap.

QSize QPixmap::size () const

Returns the size of the pixmap.

See also width(), height(), and Pixmap Information.

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. If the pixmap has 2- to 8-bit depth, the returned image has 8-bit depth. If the pixmap has greater than 8-bit depth, the returned image has 32-bit depth.

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

See also fromImage() and Image Formats.

CGImageRef QPixmap::toMacCGImageRef () const

Creates a CGImageRef equivalent to the QPixmap. Returns the CGImageRef handle.

It is the caller's responsibility to release the CGImageRef data after use.

Warning: This function is only available on Mac OS X.

This function was introduced in Qt 4.2.

See also fromMacCGImageRef().

HBITMAP QPixmap::toWinHBITMAP ( HBitmapFormat format = NoAlpha ) const

Creates a HBITMAP equivalent to the QPixmap, based on the given format. Returns the HBITMAP handle.

It is the caller's responsibility to free the HBITMAP data after use.

Warning: This function is only available on Windows.

See also fromWinHBITMAP().

QPixmap QPixmap::transformed ( const QMatrix & matrix, Qt::TransformationMode mode = Qt::FastTransformation ) const

Returns a copy of the pixmap that is transformed using the given transformation matrix and transformation mode. The original pixmap is not changed.

The transformation matrix 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.

QMatrix QPixmap::trueMatrix ( const QMatrix & 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.

int QPixmap::width () const

Returns the width of the pixmap.

See also size() and Pixmap Information.

const QX11Info & QPixmap::x11Info () const

Returns information about the configuration of the X display used to display the widget.

Warning: This function is only available on X11.

See also Pixmap Information.

Qt::HANDLE QPixmap::x11PictureHandle () const

Returns the X11 Picture handle of the pixmap for XRender support.

This function will return 0 if XRender support is not compiled into Qt, if the XRender extension is not supported on the X11 display, or if the handle could not be created. Use of this function is not portable.

Warning: This function is only available on X11.

See also 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().


Related Non-Members

QDataStream & operator<< ( QDataStream & stream, const QPixmap & pixmap )

This is an overloaded member function, provided for convenience.

Writes the given pixmap to the the given stream as a PNG image. Note that writing the stream to a file will not produce a valid image file.

See also QPixmap::save() and Format of the QDataStream Operators.

QDataStream & operator>> ( QDataStream & stream, QPixmap & pixmap )

This is an overloaded member function, provided for convenience.

Reads an image from the given stream into the given pixmap.

See also QPixmap::load() and Format of the QDataStream Operators.


Member Type Documentation

enum QPixmap::ColorMode

This enum type defines the color modes that exist for converting QImage objects to QPixmap. It is provided here for compatibility with earlier versions of Qt.

Use Qt::ImageConversionFlags instead.

ConstantValueDescription
QPixmap::Auto0Select Color or Mono on a case-by-case basis.
QPixmap::Color1Always create colored pixmaps.
QPixmap::Mono2Always create bitmaps.


Member Function Documentation

QPixmap::QPixmap ( const QString & fileName, const char * format, ColorMode mode )

Use the constructor that takes a Qt::ImageConversionFlag instead.

QPixmap::QPixmap ( const QImage & image )

Constructs a pixmap from the QImage image.

Use the static fromImage() function instead.

bool QPixmap::convertFromImage ( const QImage & image, ColorMode mode )

Use the static fromImage() function instead.

bool QPixmap::convertFromImage ( const QImage & image, Qt::ImageConversionFlags flags = Qt::AutoColor )

This is an overloaded member function, provided for convenience.

Use the static fromImage() function instead.

QImage QPixmap::convertToImage () const

Use the toImage() function instead.

bool QPixmap::load ( const QString & fileName, const char * format, ColorMode mode )

This is an overloaded member function, provided for convenience.

Use the load() function that takes a Qt::ImageConversionFlag instead.

bool QPixmap::loadFromData ( const uchar * buf, uint len, const char * format, ColorMode mode )

This is an overloaded member function, provided for convenience.

Use the loadFromData() function that takes a Qt::ImageConversionFlag instead.

void QPixmap::resize ( int width, int height )

Use the QPixmap constructor that takes two ints (width and height) instead.

For example, if you have code like

 pixmap.resize(10, 20);

you can rewrite it as

 pixmap = QPixmap(10, 20);

void QPixmap::resize ( const QSize & size )

This is an overloaded member function, provided for convenience.

Use the QPixmap constructor that takes a QSize (size) instead.

For example, if you have code like

 pixmap.resize(size);

you can rewrite it as

 pixmap = QPixmap(size);

bool QPixmap::selfMask () const

Returns whether the pixmap is its own mask or not.

This function is no longer relevant since the concept of self masking doesn't exists anymore.

QPixmap QPixmap::xForm ( const QMatrix & matrix ) const

Use transformed() instead.

QPixmap::operator QImage () const

Returns the pixmap as a QImage.

Use the toImage() function instead.

QPixmap & QPixmap::operator= ( const QImage & image )

This is an overloaded member function, provided for convenience.

Converts the given image to a pixmap that is assigned to this pixmap.

Use the static fromImage() function instead.

Publicité

Best Of

Actualités les plus lues

Semaine
Mois
Année
  1. « Quelque chose ne va vraiment pas avec les développeurs "modernes" », un développeur à "l'ancienne" critique la multiplication des bibliothèques 64
  2. Apercevoir la troisième dimension ou l'utilisation multithreadée d'OpenGL dans Qt, un article des Qt Quarterly traduit par Guillaume Belz 0
  3. Les développeurs ignorent-ils trop les failles découvertes dans leur code ? Prenez-vous en compte les remarques des autres ? 17
  4. BlackBerry 10 : premières images du prochain OS de RIM qui devrait intégrer des widgets et des tuiles inspirées de Windows Phone 0
  5. Quelles nouveautés de C++11 Visual C++ doit-il rapidement intégrer ? Donnez-nous votre avis 10
  6. Adieu qmake, bienvenue qbs : Qt Building Suite, un outil déclaratif et extensible pour la compilation de projets Qt 17
  7. La rubrique Qt a besoin de vous ! 1
Page suivante

Le Qt Developer Network au hasard

Logo

Comment fermer une application

Le Qt Developer Network est un réseau de développeurs Qt anglophone, où ils peuvent partager leur expérience sur le framework. Lire l'article.

Communauté

Ressources

Liens utiles

Contact

  • Vous souhaitez rejoindre la rédaction ou proposer un tutoriel, une traduction, une question... ? Postez dans le forum Contribuez ou contactez-nous par MP ou par email (voir en bas de page).

Qt dans le magazine

Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. Qt 4.2
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP !
 
 
 
 
Partenaires

Hébergement Web