In this topic, we will explore, how to convert PSD to PDF with NET REST API. We will create a PSD to PDF converter with C# Low Code API by following the detailed and lucid steps mentioned in the following section. The generated application can be integrated with any .NET application supported in Linux, Windows, or macOS environments and conversion can be done for free.
Prerequisite
- Create an account and get API credentials to perform PSD to PDF conversion
- Download Aspose.Imaging Cloud SDK for .NET to convert PSD to PDF
- Setup C# .NET project with the above SDK to render PSD as PDF
Steps to Convert PSD to PDF with NET REST API
- Set the Client ID and Client Secret for the API to convert PSD to PDF
- Create an instance of ImagingAPI class with client credentials to perform PSD to PDF conversion
- Specify the source PSD and output PDF file names
- Read the source PSD file and upload it to cloud storage
- Create an instance of the ConvertImageRequest with input PSD file stream and output PDF format
- Call the ConvertImage method to convert PSD to PDF with NET REST API
- Save the rendered PDF file stream on the local disk
The above steps converts the file type from PSD to PDF with C# Low Code API. We will start with the initialization of the configuration of the SDK by creating an instance of the ImagingAPI class. We will then open the source PSD file using a FileStream from the disk and create a ConvertImageRequest class object that will further be used to perform the conversion to a PDF using the ConvertImage() method.
Code for PSD to PDF Conversion in NET Low Code API
using Aspose.Imaging.Cloud.Sdk.Api; | |
using Aspose.Imaging.Cloud.Sdk.Model.Requests; | |
using Aspose.Imaging.Cloud.Sdk.Model; | |
using System; | |
using System.IO; | |
namespace Kb_Aspose.KB | |
{ | |
public class SvgToPdfConverter | |
{ | |
public void PsdToPdf() | |
{ | |
var clientID = "Client ID"; | |
var clientSecret = "Client Secret"; | |
var apiBaseUrl = "https://api.aspose.cloud"; | |
var localPath = "C:/Words/"; | |
var psdToPdfImageApi = new ImagingApi(clientSecret, clientID, apiBaseUrl); | |
// Source and output file names | |
var inputFileName = "Source.psd"; | |
var outputFileName = "PSDtoPDF.pdf"; | |
try | |
{ | |
// Upload the local image to Cloud Storage | |
var inpuFileStream = File.Open(localPath + '/' + inputFileName, FileMode.Open); | |
inpuFileStream.Position = 0; | |
var uploadPsdFileRequest = new UploadFileRequest(inputFileName, inpuFileStream, null); | |
psdToPdfImageApi.UploadFile(uploadPsdFileRequest); | |
var outputFormat = "pdf"; | |
var remoteFolder = null; // Input file is saved at the root of the storage | |
var remoteStorage = null; // Cloud Storage name | |
var convertPsdToPdfRequest = new ConvertImageRequest(inputFileName, outputFormat, | |
remoteFolder, remoteStorage); | |
var pdfDataStream = psdToPdfImageApi.ConvertImage(convertPsdToPdfRequest); | |
pdfDataStream.Position = 0; | |
using (var fileStream = File.Create(localPath + outputFileName + "." + outputFormat)) | |
{ | |
pdfDataStream.Seek(0, SeekOrigin.Begin); | |
pdfDataStream.CopyTo(fileStream); | |
} | |
} | |
catch (Exception e) | |
{ | |
Console.WriteLine(e.Message); | |
} | |
} | |
} | |
} |
This simple example code exhibits how to convert PSD to PDF with C# Cloud API. You need to provide a valid path for the PSD image on the disk with the help of the Aspose.Imaging REST API SDK, perform the conversion process, and then after the conversion process is completed, download the output PDF file stream to save it locally.
In this article, we have witnessed to transform PSD to PDF with Cloud API. If you are interested in performing SVG to PDF conversion, refer to the article on how to Convert SVG to PDF with NET REST API.