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_row | int | 左上行索引。 |
top | int | 表示形状相对于其左行的垂直偏移量,以像素为单位。 |
upper_left_column | int | 左上列索引。 |
left | int | 形状相对于其左列的水平偏移量,以像素为单位。 |
height | int | 形状的高度,以像素为单位。 |
width | int | 形状的宽度,以像素为单位。 |
image_byte_data | bytes | 图像字节数据。 |
compatible_image_data | bytes | 从 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)