Convert PDF to SVG in PHP
Import PDF pages and export them as SVG images with Aspose.Slides for PHP via Java
Convert PDF to SVG in PHP
Use Aspose.Slides for PHP via Java to import the pages of a PDF document as slides and export each slide as an SVG image.
Call addFromPdf to import the PDF pages, then call writeAsSvg for each slide. You can also test PDF conversion in your
browser
.
You can install the library from Composer using the following command:
Console/Terminal
composer require aspose/slides
This sample code shows PDF to SVG PHP Conversion
$presentation = new Presentation();
try {
$presentation->getSlides()->removeAt(0);
$presentation->getSlides()->addFromPdf("document.pdf");
$slideCount = java_values($presentation->getSlides()->size());
for ($slideIndex = 0; $slideIndex < $slideCount; $slideIndex++) {
$slide = $presentation->getSlides()->get_Item($slideIndex);
$filePath = "slide_" . ($slideIndex + 1) . ".svg";
$outputStream = new Java("java.io.FileOutputStream", $filePath);
try {
$slide->writeAsSvg($outputStream);
} finally {
$outputStream->close();
}
}
} finally {
$presentation->dispose();
}
How to Convert PDF to SVG in PHP
These are the steps to convert a PDF file to SVG using PHP.
Create a
Presentation, remove its default slide, and import the PDF pages withaddFromPdf.Access each slide through a variable and create an output stream for its SVG file.
Call
writeAsSvgwith the output stream.
System Requirements
Before running the PHP conversion example, make sure that you have the following prerequisites.
- Install PHP 7 or later, add the PHP directory to the system
PATH, and setallow_url_includetoOnin thephp.inifile. - Install JRE 8 and set the
JAVA_HOMEenvironment variable to the installed JRE directory. - Install and configure Apache Tomcat 8.0 with PHP/Java Bridge as described in the installation guide .
Save PDF as SVG in PHP
Use the free app to see a demonstration of the PDF-to-SVG conversion process.Free App to Convert PDF to SVG
Other Supported Conversions
You can also convert PDF to many other file formats. See other supported conversions below: