add_svg方法

add_svg(upper_left_row, top, upper_left_column, left, height, width, svg_data, compatible_image_data)

添加 svg 图像。

返回

def add_svg(self, upper_left_row, top, upper_left_column, left, height, width, svg_data, compatible_image_data):
    ...
范围 类型 描述
upper_left_row int 左上行索引。
top int 表示形状从其左行的垂直偏移量,以像素为单位。
upper_left_column int 左上列索引。
left int 形状与其左列的水平偏移量,以像素为单位。
height int 形状的高度,以像素为单位。
width int 形状的宽度,以像素为单位。
svg_data bytes svg 图像数据。
compatible_image_data bytes 从 svg 转换图像数据以与 Excel 2016 或更低版本兼容。

例子

from aspose import pycore

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

也可以看看