Convertir Hoja de Cálculo a Imagen en Python
Contents
[
Hide
]
Aspose.Cells - Convertir hoja de trabajo a imagen
Para convertir una hoja de trabajo a imagen usando Aspose.Cells for Java en Ruby, simplemente invoque el módulo Converter.
Código Python
imageFormat = self.ImageFormat
#Instantiate a workbook with path to an Excel file
book = self.Workbook(self.dataDir + "Book1.xls")
#Create an object for ImageOptions
imgOptions = self.ImageOrPrintOptions()
#Set the image type
imgOptions.setImageFormat(imageFormat.getPng())
#Get the first worksheet.
sheet = book.getWorksheets().get(0)
#Create a SheetRender object for the target sheet
sr =self.SheetRender(sheet, imgOptions)
for i in range(sr.getPageCount()):
#Generate an image for the worksheet
sr.toImage(i, self.dataDir + "mysheetimg" + ".png")
\# Print message
print "Images generated successfully."
Descargar Código en Ejecución
Descargar Hoja de Cálculo a Imagen (Aspose.Cells) desde cualquiera de los sitios de codificación social mencionados a continuación: