This basic article will guide you about how to convert Excel to SVG in C#. We can load the input file and then use a SvgSaveOptions class object for controlling the rendering of the source file. Moreover, you can convert Excel to vector graphics using C# by loading the input file in XLSX or any other MS Excel-supported format.
Steps to Convert Excel to SVG in C#
- Add Aspose.Cells library while using the NuGet package manager tool to convert Excel to SVG
- Create Workbook object to load the input Excel file to create SVG
- Create SvgSaveOptions class object to set different options
- Save output SVG image by specifying the file name
The simple steps above elaborate how simple it is to change Excel to SVG using C#. SVG images are sometimes feasible because the details of the image are not messed up at any image dimensions. So you may prefer to use this feature to create good previews of the Excel files.
Code to Convert Excel to Vector Graphics in C#
In this code sample, the Excel file is loaded using the Workbook class. Then SvgSaveOptions class object is used to specify different properties of the output SVG image. In the final step, change Excel to vector graphics using C# by mentioning the file path and the file name in the Save method as per your requirements.
This basic guide has explained how to export Excel to SVG using C#. However, if you are inclined to take a look at how to save Excel files as PDF, refer to the article on how to Save Excel File as PDF using C#.