QTextImageFormat 類

The QTextImageFormat 類提供格式化信息為圖像在 QTextDocument . 更多...

頭: #include <QTextImageFormat>
qmake: QT += gui
繼承: QTextCharFormat

注意: 此類的所有函數 可重入 .

公共函數

QTextImageFormat ()
qreal height () const
bool isValid () const
QString name () const
void setHeight (qreal height )
void setName (const QString & name )
void setWidth (qreal width )
qreal width () const

詳細描述

The QTextImageFormat 類提供格式化信息為圖像在 QTextDocument .

Inline images are represented by a Unicode value U+FFFC (OBJECT REPLACEMENT CHARACTER) which has an associated QTextImageFormat . The image format specifies a name with setName () that is used to locate the image. The size of the rectangle that the image will occupy is specified using setWidth () 和 setHeight ().

Images can be supplied in any format for which Qt has an image reader, so SVG drawings can be included alongside PNG, TIFF and other bitmap formats.

另請參閱 QImage and QImageReader .

成員函數文檔編製

QTextImageFormat:: QTextImageFormat ()

創建新的圖像格式對象。

qreal QTextImageFormat:: height () const

Returns the height of the rectangle occupied by the image.

另請參閱 width () 和 setHeight ().

bool QTextImageFormat:: isValid () const

返迴 true if this image format is valid; otherwise returns false .

QString QTextImageFormat:: name () const

Returns the name of the image. The name refers to an entry in the application's resources file.

另請參閱 setName ().

void QTextImageFormat:: setHeight ( qreal height )

設置 height of the rectangle occupied by the image.

另請參閱 height () 和 setWidth ().

void QTextImageFormat:: setName (const QString & name )

設置 name of the image. The name is used to locate the image in the application's resources.

另請參閱 name ().

void QTextImageFormat:: setWidth ( qreal width )

設置 width of the rectangle occupied by the image.

另請參閱 width () 和 setHeight ().

qreal QTextImageFormat:: width () const

Returns the width of the rectangle occupied by the image.

另請參閱 height () 和 setWidth ().