to_image方法

to_image

创建形状图像并将其以指定格式保存到流中。

def to_image(self, stream, image_type):
    ...
范围类型描述
streamio.RawIOBase输出流。
image_typeImageType保存图像的类型。

评论

支持以下格式: .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_filestr
optionsaspose.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):
    ...
范围类型描述
streamio.RawIOBase
optionsaspose.cells.rendering.ImageOrPrintOptions

例子

from aspose.cells.rendering import ImageOrPrintOptions
from io import BytesIO

imageStream = BytesIO()
op = ImageOrPrintOptions()
shape.to_image(imageStream, op)

也可以看看