Convert PNG to JPEG2000 with NET REST API

In this simple topic, you’ll learn how to convert PNG to JPEG2000 with NET REST API. We will develop a PNG to JPEG2000 converter with C# Low Code API by following to the comprehensive steps mentioned in the following sections. The created application can be used with any .NET application supported in macOS, Windows, or Linux environments and conversion can be done for free.

Prerequisite

Steps to Convert PNG to JPEG2000 with NET REST API

  1. Set the Client ID and Client Secret for the API to convert PNG to JPEG2000
  2. Create an instance of the ImagingAPI class with client credentials to perform PNG to JPEG2000 conversion
  3. Specify the source PNG and output JPEG2000 file names
  4. Access and load the source PNG file and upload it to cloud storage
  5. Create an instance of the ConvertImageRequest with input PNG file stream and output JPEG2000 format
  6. Call the ConvertImage method to convert PNG to JPEG2000 with NET REST API
  7. Save the returned JPEG2000 file stream on the local disk

The simple steps entail exporting the file type from PNG to JPEG2000 with C# Low Code API. We will commence with the initialization of the SDK by using an instance of the ImagingAPI class. We will then access the source PNG file using a FileStream from the disk and then by using a ConvertImageRequest class instance perform the conversion to a JPEG2000 using the ConvertImage() method.

Code for PNG to JPEG2000 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 PngToJpeg2000Converter
{
public void PngToJp2()
{
var clientID = "Client ID";
var clientSecret = "Client Secret";
var apiBaseUrl = "https://api.aspose.cloud";
var localPath = "C:/Words/";
var pngToJp2ImageApi = new ImagingApi(clientSecret, clientID, apiBaseUrl);
// Source and output file names
var inputFileName = "Source.png";
var outputFileName = "PngtoJpeg2000.jp2";
var outputFormat = "jp2";
var remoteFolder = null; // source file is saved at the root of the storage
var remoteStorage = null; // remote cloud Storage place name
try
{
// Upload the local source PNG image to Cloud Storage
var inpuFileStream = File.Open(localPath + '/' + inputFileName, FileMode.Open);
inpuFileStream.Position = 0;
var uploadPngImageeReq = new UploadFileRequest(inputFileName, inpuFileStream, null);
pngToJp2ImageApi.UploadFile(uploadPngImageeReq);
var convertPngToJp2Request = new ConvertImageRequest(inputFileName, outputFormat,
remoteFolder, remoteStorage);
var jp2DataStream = pngToJp2ImageApi.ConvertImage(convertPngToJp2Request);
jp2DataStream.Position = 0;
using (var fileStream = File.Create(localPath + outputFileName + "." + outputFormat))
{
jp2DataStream.Seek(0, SeekOrigin.Begin);
jp2DataStream.CopyTo(fileStream);
}
}
catch (Exception e)
{
Console.WriteLine(e.Message);
}
}
}
}

This crisp example code demonstrates how to convert PNG to JPEG2000 with C# Cloud API. After addressing the required pre-requisite steps, you have to provide a path to access the source PNG image on the disk and by using the Aspose.Imaging REST API SDK performs the rendering to JPEG2000. The resultant JPEG2000 image file stream is received as a response after the conversion is completed and you can then save it locally on the disk.

In this topic, we have learned to transform PNG to JPEG2000 with Cloud API. If you are interested in performing PNG to JPEG conversion, refer to the article on how to Convert PNG to JPG with NET REST API.

 English