QTextImageFormatclass provides formatting information for images in aQTextDocument. 更多 …
Inline images are represented by a Unicode value U+FFFC (OBJECT REPLACEMENT CHARACTER) which has an associated
QTextImageFormat. The image format specifies a name withsetName()that is used to locate the image. The size of the rectangle that the image will occupy is specified in pixels usingsetWidth()andsetHeight(). The desired image quality may be set withsetQuality().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
¶
QTextImageFormat(format)
QTextImageFormat(QTextImageFormat)
- param format
- param QTextImageFormat
Creates a new image format object.
PySide2.QtGui.QTextImageFormat.
height
(
)
¶
qreal
Returns the height of the rectangle occupied by the image.
另请参阅
PySide2.QtGui.QTextImageFormat.
name
(
)
¶
unicode
Returns the name of the image. The name refers to an entry in the application’s resources file.
另请参阅
PySide2.QtGui.QTextImageFormat.
quality
(
)
¶
int
Returns the value set by
setQuality()
.
另请参阅
PySide2.QtGui.QTextImageFormat.
setHeight
(
height
)
¶
height
–
qreal
设置
height
of the rectangle occupied by the image.
另请参阅
PySide2.QtGui.QTextImageFormat.
setName
(
name
)
¶
name – unicode
设置
name
of the image. The
name
is used to locate the image in the application’s resources.
另请参阅
PySide2.QtGui.QTextImageFormat.
setQuality
(
[
quality=100
]
)
¶
quality
–
int
Sets the quality that should be used by exporters when exporting the image.
QTextDocumentWriter
will export jpg images with the
quality
set here when exporting to ODF files if
quality
is set to a value between 0 and 100. Or it will export png images if
quality
is set to 100 (default) or greater.
另请参阅
PySide2.QtGui.QTextImageFormat.
setWidth
(
width
)
¶
width
–
qreal
设置
width
of the rectangle occupied by the image.
另请参阅
PySide2.QtGui.QTextImageFormat.
width
(
)
¶
qreal
Returns the width of the rectangle occupied by the image.
另请参阅