add_icons方法

add_icons

添加 svg 图像。

退货

def add_icons(self, upper_left_row, top, upper_left_column, left, height, width, image_byte_data, compatible_image_data):
    ...
范围类型描述
upper_left_rowint左上行索引。
topint表示形状相对于其左行的垂直偏移量,以像素为单位。
upper_left_columnint左上列索引。
leftint形状相对于其左列的水平偏移量,以像素为单位。
heightint形状的高度,以像素为单位。
widthint形状的宽度,以像素为单位。
image_byte_databytes图像字节数据。
compatible_image_databytes从 svg 转换图像数据,以便与 Excel 2016 或更低版本兼容。

例子

from aspose import pycore
import bytearray
import int

# add icon
with open("icon.svg", "rb") as fs:
    len = pycore.cast(int, utils.filesize(fs))
    imageData = bytearray(len)
    fs.readinto(imageData)
    picture = shapes.add_icons(4, 0, 5, 0, -1, -1, imageData, None)

也可以看看