Converting Worksheet to SVG in PHP
Contents
[
Hide
]
Aspose.Cells - Converting Worksheet to SVG
To convert Worksheet to SVG using Aspose.Cells for Java in PHP, simply invoke worksheet_to_svg() method of Converter module.
PHP Code
$saveFormat = new SaveFormat();
$path = $dataDir . "Template.xlsx";
//Create a workbook object from the template file
$workbook = new Workbook($path);
//Convert each worksheet into svg format in a single page.
$imgOptions = new ImageOrPrintOptions();
$imgOptions->setSaveFormat($saveFormat->SVG);
$imgOptions->setOnePagePerSheet(true);
//Convert each worksheet into svg format
$sheetCount = $workbook->getWorksheets()->getCount();
for($i=0; $i < $sheetCount; $i++)
{
$sheet = $workbook->getWorksheets()->get($i);
$sr = new SheetRender($sheet, $imgOptions);
$pageCount = $sr->getPageCount();
for ($k = 0; $k < $pageCount; $k++)
{
//Output the worksheet into Svg image format
$sr->toImage($k, $path . $sheet->getName() . $k . ".out.svg");
}
}
Download Running Code
Download Converting Worksheet to SVG (Aspose.Cells) from any of the below mentioned social coding sites: