Conversion de feuille de calcul en SVG en Ruby
Contents
[
Hide
]
Aspose.Cells - Conversion de feuille de calcul en SVG
Pour convertir une feuille de calcul en SVG en utilisant Aspose.Cells for Java en Ruby, il suffit d’invoquer la méthode worksheet_to_svg() du module Convertisseur.
Code 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
Télécharger le code en cours d’exécution
Téléchargez Converting Worksheet to SVG (Aspose.Cells) depuis l’un des sites de codage social mentionnés ci-dessous: