to_image方法
to_image
创建形状图像并将其以指定格式保存到流中。
def to_image(self, stream, image_type):
...
范围 | 类型 | 描述 |
---|---|---|
stream | io.RawIOBase | 输出流。 |
image_type | ImageType | 保存图像的类型。 |
评论
支持以下格式: .bmp、.gif、.jpg、.jpeg、.tiff、.emf。
例子
from aspose.cells.drawing import ImageType
from io import BytesIO
imageStream = BytesIO()
shape.to_image(imageStream, ImageType.PNG)
to_image
将形状保存到文件中。
def to_image(self, image_file, options):
...
范围 | 类型 | 描述 |
---|---|---|
image_file | str | |
options | aspose.cells.rendering.ImageOrPrintOptions |
例子
from aspose.cells.rendering import ImageOrPrintOptions
op = ImageOrPrintOptions()
shape.to_image("exmaple.png", op)
to_image
将形状保存到流中。
def to_image(self, stream, options):
...
范围 | 类型 | 描述 |
---|---|---|
stream | io.RawIOBase | |
options | aspose.cells.rendering.ImageOrPrintOptions |
例子
from aspose.cells.rendering import ImageOrPrintOptions
from io import BytesIO
imageStream = BytesIO()
op = ImageOrPrintOptions()
shape.to_image(imageStream, op)