QTextImageFormat 类提供格式化信息为图像在 QTextDocument . 更多...
头: | #include <QTextImageFormat> |
CMake: |
find_package(Qt6 REQUIRED COMPONENTS Gui)
target_link_libraries(mytarget PRIVATE Qt6::Gui) |
qmake: | QT += gui |
继承: | QTextCharFormat |
注意: 此类的所有函数 可重入 .
QTextImageFormat () | |
qreal | height () const |
bool | isValid () const |
QString | name () const |
int | quality () const |
void | setHeight (qreal height ) |
void | setName (const QString & name ) |
void | setQuality (int quality = 100) |
void | setWidth (qreal width ) |
qreal | width () const |
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 in pixels using setWidth () 和 setHeight (). The desired image quality may be set with setQuality ().
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 .
创建新的图像格式对象。
Returns the height of the rectangle occupied by the image.
返回
true
if this image format is valid; otherwise returns
false
.
Returns the name of the image. The name refers to an entry in the application's resources file.
另请参阅 setName ().
Returns the value set by setQuality ().
另请参阅 setQuality ().
设置 height of the rectangle occupied by the image.
设置 name of the image. The name is used to locate the image in the application's resources.
另请参阅 name ().
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.
另请参阅 quality ().
设置 width of the rectangle occupied by the image.
Returns the width of the rectangle occupied by the image.