This short tutorial guides on how to convert SVG into PDF using C# REST API. It will teach you the process of developing an SVG to PDF converter using C# Low Code API with a .NET-based Cloud SDK. You will learn the workings of the API and download the converted file from the Cloud storage.
Prerequisite
- Create an account API credentials to change SVG to PDF
- Download Aspose.PDF Cloud SDK for Dotnet for converting SVG to PDF
- Setup C# project with the above SDK
Steps to Change SVG to PDF using C# REST API
- Create an instance of the PdfApi object with client ID and secret for changing SVG to PDF
- Define the name of the source SVG file name for use in Cloud storage
- Read all bytes from the source SVG and create a MemoryStream object
- Invoke the UploadFile() method to upload the memory stream to the Cloud storage
- Call the GetSvgInStorageToPdf() method to transform the SVG file in the Cloud storage to a PDF file
- Parse the API response and retrieve the memory stream containing the PDF file
These steps summarize the process of changing SVG to PDF using C# REST Interface. Read all the bytes of the SVG file into a memory stream, upload it to a Cloud storage, and call the GetSvgInStorageToPdf() method to transform the SVG file to PDF. Finally, retrieve the resultant PDF file generated from the SVG using the API response and save it on the disk.
Code to Convert SVG File to PDF using C# REST Interface
using System; | |
using System.IO; | |
using Aspose.Pdf.Cloud.Sdk.Api; | |
using Aspose.Pdf.Cloud.Sdk.Model; | |
using System.Collections.Generic; | |
namespace Aspose.PDF.Cloud.Examples.Kb | |
{ | |
public class PdfTasks | |
{ | |
public static void ConvertSvgToPdf() | |
{ | |
// Initialize API with credentials | |
var pdfService = new PdfApi("key", "id"); | |
string documentName = "sample.svg"; | |
// Upload the SVG file | |
using (var mdFileStream = new MemoryStream(File.ReadAllBytes(documentName))) | |
{ | |
var uploadResult = pdfService.UploadFile(documentName, mdFileStream); | |
} | |
var response = pdfService.GetSvgInStorageToPdf(documentName); | |
FileStream fileStream = new FileStream("output.pdf", FileMode.Create, FileAccess.Write); | |
response.CopyTo(fileStream); | |
} | |
} | |
} |
This code has demonstrated the transformation of the file format from SVG to PDF using C# RESTful Service. The memory stream can be generated from the file on the disk or retrieved from a database or network. You can further modify the newly created PDF by uploading it to the Cloud storage and performing desired operations as per the requirement.
This guide has taught us to convert the SVG file to PDF. To convert a PS file to PDF, refer to the article on Convert a PS file to PDF using C# REST API.