Diagramm in SVG Format konvertieren

Contents
[ ]

Der folgende Beispielcode erklärt, wie man Aspose.Cells verwendet, um ein Diagramm in ein SVG-Formatbild zu konvertieren. Der Code lädt die Quelldatei von Excel und speichert dann das erste auf dem ersten Arbeitsblatt gefundenen Diagramm als SVG.

Der folgende Screenshot zeigt das konvertierte Diagramm als SVG-Formatbild, das mit dem Beispielcode erstellt wurde.

Ausgabebild

todo:image_alt_text

Da SVG ein auf XML basierendes Format ist, können Sie das Ausgabe-Diagrammbild auch in einem Texteditor wie Notepad öffnen, wie in diesem Screenshot gezeigt.

Ausgabe SCG in einem Texteditor

todo:image_alt_text

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getDataDir(ConvertCharttoImageinSVGFormat.class);
// Create workbook object from source Excel file
Workbook workbook = new Workbook(dataDir + "sample.xlsx");
// Access the first worksheet
Worksheet worksheet = workbook.getWorksheets().get(0);
// Access the first chart inside the worksheet
Chart chart = worksheet.getCharts().get(0);
// Save the chart into image in SVG format
ImageOrPrintOptions options = new ImageOrPrintOptions();
options.setImageType(ImageType.SVG);
chart.toImage(dataDir + "ChartImage.svg", options);