to_image yöntemi

to_image

Belirli bir sayfayı bir dosyaya dönüştürün.

def to_image(self, page_index, file_name):
    ...
ParametreTipTanım
page_indexinthangi sayfanın dönüştürüleceğini belirtin
file_namestrçıktı görüntüsünün dosya adı

Örnek

Aşağıdaki kod, ilk sayfanın ilk sayfasını png görüntüsüne çıkarır.

from aspose.cells import Workbook
from aspose.cells.drawing import ImageType
from aspose.cells.rendering import ImageOrPrintOptions, SheetRender

# load the source file with images.
wb = Workbook("Book1.xlsx")
imgOpt = ImageOrPrintOptions()
# set output image type.
imgOpt.image_type = ImageType.PNG
# render the first sheet.
sr = SheetRender(wb.worksheets[0], imgOpt)
# output the first page of the sheet to image.
sr.to_image(0, "output.png")

to_image

Belirli bir sayfayı bir akışa dönüştürün.

def to_image(self, page_index, stream):
    ...
ParametreTipTanım
page_indexinthangi sayfanın dönüştürüleceğini belirtin
streamio.RawIOBaseçıktı görüntüsünün akışı

Ayrıca bakınız