QTextImageFormat

PyQt5.QtGui.QTextImageFormat

Inherits from QTextCharFormat.

Description

The QTextImageFormat class provides formatting information for images in a 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 in pixels using setWidth() and setHeight(). The desired image quality may be set with .

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.

See also

QImage, QImageReader.

Methods

__init__()

TODO


__init__(QTextImageFormat)

TODO


height() → float

See also

setHeight().


isValid() → bool

TODO


name() → str

See also

setName().


quality() → int

TODO


setHeight(float)

See also

height().


setName(str)

See also

name().


setQuality(quality: int = 100)

TODO


setWidth(float)

See also

width().


width() → float

See also

setWidth().