Convertir hoja de cálculo a SVG en PHP
Contents
[
Hide
]
Aspose.Cells - Convertir hoja de trabajo a SVG
Para convertir hoja de cálculo a SVG usando Aspose.Cells for Java en PHP, simplemente invoque el método worksheet_to_svg() del módulo Converter.
Código PHP
$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");
}
}
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: