• PySide 模块
  • PySide.QtGui
  • 内容表

    上一话题

    QTextTableCellFormat

    下一话题

    QSizePolicy

    QTextImageFormat

    概要

    函数

    详细描述

    PySide.QtGui.QTextImageFormat class provides formatting information for images in a PySide.QtGui.QTextDocument .

    Inline images are represented by an object replacement character (0xFFFC in Unicode) which has an associated PySide.QtGui.QTextImageFormat . The image format specifies a name with PySide.QtGui.QTextImageFormat.setName() that is used to locate the image. The size of the rectangle that the image will occupy is specified using PySide.QtGui.QTextImageFormat.setWidth() and PySide.QtGui.QTextImageFormat.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.

    class PySide.QtGui. QTextImageFormat
    class PySide.QtGui. QTextImageFormat ( format )
    class PySide.QtGui. QTextImageFormat ( QTextImageFormat )
    参数:

    Creates a new image format object.

    Creates a new image format with the same attributes as the given text format.

    PySide.QtGui.QTextImageFormat. height ( )
    返回类型: PySide.QtCore.qreal

    Returns the height of the rectangle occupied by the image.

    PySide.QtGui.QTextImageFormat. name ( )
    返回类型: unicode

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

    PySide.QtGui.QTextImageFormat. setHeight ( height )
    参数: height PySide.QtCore.qreal

    设置 height of the rectangle occupied by the image.

    PySide.QtGui.QTextImageFormat. setName ( name )
    参数: name – unicode

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

    PySide.QtGui.QTextImageFormat. setWidth ( width )
    参数: width PySide.QtCore.qreal

    设置 width of the rectangle occupied by the image.

    PySide.QtGui.QTextImageFormat. width ( )
    返回类型: PySide.QtCore.qreal

    Returns the width of the rectangle occupied by the image.