Convertir hoja de trabajo a SVG en Ruby
Contents
[
Hide
]
Aspose.Cells - Convertir hoja de trabajo a SVG
Para convertir una Hoja de cálculo a SVG usando Aspose.Cells for Java en Ruby, simplemente invoque el método worksheet_to_svg() del módulo Convertidor.
Código Ruby
def worksheet_to_svg(workbook)
# Convert each worksheet into svg format in a single page.
img_options = Rjb::import('com.aspose.cells.ImageOrPrintOptions').new
save_format = Rjb::import('com.aspose.cells.SaveFormat')
img_options.setSaveFormat(save_format.SVG)
img_options.setOnePagePerSheet(true)
# Convert each worksheet into svg format
sheet_count = workbook.getWorksheets().getCount()
i=0
while i < sheet_count
sheet = workbook.getWorksheets().get(i)
sr = Rjb::import('com.aspose.cells.SheetRender').new(sheet, img_options)
k=0
while sr.getPageCount()
# Output the worksheet into Svg image format
sr.toImage(k, @data_dir + sheet.getName() + "#{k}.svg")
end
end
puts "SVG saved successfully."
end
Descargar Código en Ejecución
Descargar Conversión de Hoja de cálculo a SVG (Aspose.Cells) desde cualquiera de los sitios de codificación social mencionados a continuación: