This tutorial shows you how to convert SVG to PDF with Java REST API. SVG (Scalable Vector Graphics) is an XML-based vector image format for two-dimensional graphics with support for interactivity and animation. The SVG specification is an open standard developed by the World Wide Web Consortium (W3C) since 1999. SVG images and their behaviors are defined in XML text files. This means that they can be searched, indexed, scripted, and compressed.
While, PDF (Portable Document Format) is a file format used to present and exchange documents reliably, independent of software, hardware, or operating system. PDF files contain text, images, data, and graphics and are created using Adobe Acrobat, Acrobat Capture, or similar products. PDFs can be viewed and printed using the free Adobe Reader software. If you’re interested in SVG to PDF Conversion in Java Low Code API then the same can be done by using the following code snippet.
Prerequisite
- Create account and get API credentials
- Download Aspose.Imaging Cloud SDK for Java
- Setup Java project with the above SDK
Steps to Convert SVG to PDF in Java REST API
- Set Client ID and Client Secret for the API
- Create an instance of ImagingAPI class with client credentials
- Specify input and output files
- Read input SVG file and upload to cloud storage
- Create an instance of ConvertImageRequest with input and output file formats
- Call convertImage method to Convert SVG to PDF using REST API
- Save the output PDF file on local disk
Code for SVG to PDF Conversion in Java Low Code API
String ClientID = Client.getID(); //replace Client.getID() with your own client ID here | |
String ClientSecret = Client.getSecret(); //replace3 Client.getSecret() with your own client secret here | |
String APIBaseUrl="https://api.aspose.cloud"; | |
String Local_Path = "C:/Temp/"; | |
ImagingApi imagingApiSdk = new ImagingApi(ClientSecret, ClientID, APIBaseUrl); | |
// Input & output file names | |
String inputFileName = "SVGtoPDF.svg"; | |
String outputFileName = "SVGtoPDF.pdf"; | |
try { | |
// Upload local image to Cloud Storage | |
File inputFile = new File(Local_Path + inputFileName); | |
FileInputStream inputFileStream = new FileInputStream(inputFile); | |
byte[] inputImageData = IOUtils.toByteArray(inputFileStream); | |
UploadFileRequest uploadFileRequest = new UploadFileRequest(inputFileName, inputImageData, null); | |
FilesUploadResult filesUploadResult = imagingApiSdk.uploadFile(uploadFileRequest); | |
String outputFormat = "pdf"; | |
String remoteFolder = null; // Input file is saved at the root of the storage | |
String remoteStorage = null; // Cloud Storage name | |
ConvertImageRequest convertImageRequest = new ConvertImageRequest(inputFileName, outputFormat, remoteFolder, remoteStorage); | |
byte[] convertedImageData = imagingApiSdk.convertImage(convertImageRequest); | |
// Save exported image to local storage | |
FileOutputStream fileOutputStream = new FileOutputStream(Local_Path + outputFileName); | |
fileOutputStream.write(convertedImageData); | |
fileOutputStream.close(); | |
} catch (Exception e) { | |
System.out.println(e.getMessage()); | |
} |
The above sample code empowers you to convert SVG to PDF with Java REST API. You only need to supply SVG file with the help of the Aspose.Imaging REST API SDK and download output PDF file to save it locally.
This SVG to PDF Conversion could be exploited with any no code or low code apps on Windows, Linux, or Mac.
You may also check out another similar feature at the following page: How to Convert WEBP to PDF with Java REST API