QTextImageFormat Class Reference

[ QtGui module]

The QTextImageFormat class provides formatting information for images in a QTextDocument . 更多...

继承 QTextCharFormat .

方法


详细描述

The QTextImageFormat class provides formatting information for images in a QTextDocument .

Inline images are represented by an object replacement character (0xFFFC in Unicode) 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.


方法文档编制

QTextImageFormat.__init__ ( self )

Creates a new image format object.

QTextImageFormat.__init__ ( self , QTextImageFormat )

float QTextImageFormat.height ( self )

Returns the height of the rectangle occupied by the image.

另请参阅 width () 和 setHeight ().

bool QTextImageFormat.isValid ( self )

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

QString QTextImageFormat.name ( self )

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

另请参阅 setName ().

QTextImageFormat.setHeight ( self , float  aheight )

设置 height of the rectangle occupied by the 图像。

另请参阅 height () 和 setWidth ().

QTextImageFormat.setName ( self , QString  aname )

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

另请参阅 name ().

QTextImageFormat.setWidth ( self , float  awidth )

设置 width of the rectangle occupied by the 图像。

另请参阅 width () 和 setHeight ().

float QTextImageFormat.width ( self )

Returns the width of the rectangle occupied by the image.

另请参阅 height () 和 setWidth ().