返回介绍

QPicture Class

发布于 2019-10-04 15:01:58 字数 8401 浏览 1086 评论 0 收藏 0

The QPicture class is a paint device that records and replays QPainter commands. More...

#include <qpicture.h>

Inherits QPaintDevice.

List of all member functions.

Public Members

  • QPicture ( intformatVersion = -1 )
  • QPicture ( constQPicture&pic )
  • ~QPicture ()
  • bool isNull () const
  • uint size () const
  • const char * data () const
  • virtual void setData ( constchar*data, uintsize )
  • bool play ( QPainter*painter )
  • bool load ( QIODevice*dev, constchar*format = 0 )
  • bool load ( constQString&fileName, constchar*format = 0 )
  • bool save ( QIODevice*dev, constchar*format = 0 )
  • bool save ( constQString&fileName, constchar*format = 0 )
  • QRect boundingRect () const
  • QPicture & operator= ( constQPicture&p )

Protected Members

  • virtual int metric ( intm ) const
  • void detach ()
  • QPicture copy () const

Related Functions

  • QDataStream & operator<< ( QDataStream&s, constQPicture&r )
  • QDataStream & operator>> ( QDataStream&s, QPicture&r )

Detailed Description

The QPicture class is a paint device that records and replays QPainter commands.

A picture serializes painter commands to an IO device in a platform-independent format. For example, a picture created under Windows can be read on a Sun SPARC.

Pictures are called meta-files on some platforms.

Qt pictures use a proprietary binary format. Unlike native picture (meta-file) formats on many window systems, Qt pictures have no limitations regarding their contents. Everything that can be painted can also be stored in a picture, e.g. fonts, pixmaps, regions, transformed graphics, etc.

QPicture is an implicitly shared class.

Example of how to record a picture:

    QPicture  pic;
    QPainter  p;
    p.begin( &pic );               // paint in picture
    p.drawEllipse( 10,20, 80,70 ); // draw an ellipse
    p.end();                       // painting done
    pic.save( "drawing.pic" );     // save picture
    

Example of how to replay a picture:

    QPicture  pic;
    pic.load( "drawing.pic" );     // load picture
    QPainter  p;
    p.begin( &myWidget );          // paint in myWidget
    p.drawPicture( pic );          // draw the picture
    p.end();                       // painting done
    

Pictures can also be drawn using play(). Some basic data about a picture is available, for example, size(), isNull() and boundingRect().

See also Graphics Classes, Image Processing Classes and Implicitly and Explicitly Shared Classes.


Member Function Documentation

QPicture::QPicture ( intformatVersion = -1 )

Constructs an empty picture.

The formatVersion parameter may be used to create a QPicture that can be read by applications that are compiled with earlier versions of Qt.

  • formatVersion == 1 is binary compatible with Qt 1.x and later.
  • formatVersion == 2 is binary compatible with Qt 2.0.x and later.
  • formatVersion == 3 is binary compatible with Qt 2.1.x and later.
  • formatVersion == 4 is binary compatible with Qt 3.x.

Note that the default formatVersion is -1 which signifies the current release, i.e. for Qt 3.0 a formatVersion of 4 is the same as the default formatVersion of -1.

Reading pictures generated by earlier versions of Qt is supported and needs no special coding; the format is automatically detected.

QPicture::QPicture ( constQPicture&pic )

Constructs a shallow copy of pic.

QPicture::~QPicture ()

Destroys the picture.

QRect QPicture::boundingRect () const

Returns the picture's bounding rectangle or an invalid rectangle if the picture contains no data.

QPicture QPicture::copy () const [protected]

Returns a deep copy of the picture.

const char * QPicture::data () const

Returns a pointer to the picture data. The pointer is only valid until the next non-const function is called on this picture. The returned pointer is 0 if the picture contains no data.

See also size() and isNull().

void QPicture::detach () [protected]

Detaches from shared picture data and makes sure that this picture is the only one referring to the data.

If multiple pictures share common data, this picture makes a copy of the data and detaches itself from the sharing mechanism. Nothing is done if there is just a single reference.

bool QPicture::isNull () const

Returns TRUE if the picture contains no data; otherwise returns FALSE.

bool QPicture::load ( constQString&fileName, constchar*format = 0 )

Loads a picture from the file specified by fileName and returns TRUE if successful; otherwise returns FALSE.

By default, the file will be interpreted as being in the native QPicture format. Specifying the format string is optional and is only needed for importing picture data stored in a different format.

Currently, the only external format supported is the W3C SVG format which requires the Qt XML module. The corresponding format string is "svg".

See also save().

Examples: picture/picture.cpp and xform/xform.cpp.

bool QPicture::load ( QIODevice*dev, constchar*format = 0 )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

dev is the device to use for loading.

int QPicture::metric ( intm ) const [virtual protected]

Internal implementation of the virtual QPaintDevice::metric() function.

Use the QPaintDeviceMetrics class instead.

A picture has the following hard-coded values: dpi=72, numcolors=16777216 and depth=24.

m is the metric to get.

QPicture& QPicture::operator= ( constQPicture&p )

Assigns a shallow copy of p to this picture and returns a reference to this picture.

bool QPicture::play ( QPainter*painter )

Replays the picture using painter, and returns TRUE if successful; otherwise returns FALSE.

This function does exactly the same as QPainter::drawPicture() with (x, y) = (0, 0).

bool QPicture::save ( constQString&fileName, constchar*format = 0 )

Saves a picture to the file specified by fileName and returns TRUE if successful; otherwise returns FALSE.

Specifying the file format string is optional. It's not recommended unless you intend to export the picture data for use by a third party reader. By default the data will be saved in the native QPicture file format.

Currently, the only external format supported is the W3C SVG format which requires the Qt XML module. The corresponding format string is "svg".

See also load().

Example: picture/picture.cpp.

bool QPicture::save ( QIODevice*dev, constchar*format = 0 )

This is an overloaded member function, provided for convenience. It behaves essentially like the above function.

dev is the device to use for saving.

void QPicture::setData ( constchar*data, uintsize ) [virtual]

Sets the picture data directly from data and size. This function copies the input data.

See also data() and size().

uint QPicture::size () const

Returns the size of the picture data.

See also data().


Related Functions

QDataStream& operator<< ( QDataStream&s, constQPicture&r )

Writes picture, r to the stream s and returns a reference to the stream.

QDataStream& operator>> ( QDataStream&s, QPicture&r )

Reads a picture from the stream s into picture r and returns a reference to the stream.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文