在这个简单的主题中,您将学习如何使用 NET REST API 将 JPG 转换为 JPEG2000。我们将按照以下部分中提到的全面步骤,使用 C# Low Code API 开发JPG 到 JPEG2000 转换器。创建的应用程序可与 macOS、Windows 或 Linux 环境中支持的任何 .NET 应用程序一起使用,并且可以免费进行转换。
先决条件
创建账户并获取 API 凭证 执行 JPG 到 JPEG2000 的转换
下载 Aspose.Imaging Cloud SDK for .NET to convert JPG to JPEG2000
使用上述 SDK 设置 C# .NET 项目,将 JPG 渲染为 JPEG2000
使用 NET REST API 将 JPG 转换为 JPEG2000 的步骤
- 设置 API 的客户端 ID 和客户端密钥,以将 JPG 转换为 JPEG2000
- 使用客户端凭据创建 ImagingAPI 类的实例,以执行 JPG 到 JPEG2000 的转换
- 指定源 JPG 和输出 JPEG2000 文件名
- 访问并加载源 JPG 文件并将其上传到云存储
- 使用输入 JPG 文件流和输出 JPEG2000 格式创建 ConvertImageRequest 实例
- 调用 ConvertImage 方法使用 NET REST API 将 JPG 转换为 JPEG2000
- 将返回的JPEG2000文件流保存在本地磁盘上
简单的步骤包括使用 C# Low Code API 将文件类型从 JPG 导出为 JPEG2000。我们将使用 ImagingAPI 类的实例开始初始化 SDK。然后,我们将使用磁盘中的 FileStream 访问源 JPG 文件,然后使用 ConvertImageRequest 类实例使用 ConvertImage() 方法执行到 JPEG2000 的转换。
NET Low Code API 中 JPG 到 JPEG2000 转换的代码
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 JpgToJpeg2000Converter | |
{ | |
public void JpgToJpeg2000() | |
{ | |
var clientID = "Client ID"; | |
var clientSecret = "Client Secret"; | |
var apiBaseUrl = "https://api.aspose.cloud"; | |
var localPath = "C:/Words/"; | |
var jpgToJpeg2000ImageApi = new ImagingApi(clientSecret, clientID, apiBaseUrl); | |
// Source and output file names | |
var inputFileName = "Source.jpg"; | |
var outputFileName = "JpgtoJpeg2000.jp2"; | |
var outputFormat = "jp2"; | |
var remoteFolder = null; // Input file is saved at the root of the storage | |
var remoteStorage = null; // remote cloud Storage name | |
try | |
{ | |
// Upload the local image to Cloud Storage | |
var inpuFileStream = File.Open(localPath + '/' + inputFileName, FileMode.Open); | |
inpuFileStream.Position = 0; | |
var uploadJpgFileRequest = new UploadFileRequest(inputFileName, inpuFileStream, null); | |
jpgToJpeg2000ImageApi.UploadFile(uploadJpgFileRequest); | |
var convertJpgToJpeg2000Request = new ConvertImageRequest(inputFileName, outputFormat, | |
remoteFolder, remoteStorage); | |
var jp2DataStream = jpgToJpeg2000ImageApi.ConvertImage(convertJpgToJpeg2000Request); | |
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 JPG to JPEG2000 with C# Cloud API. After addressing the required pre-requisite steps, you have to provide a path to access the source JPG image on the disk and by using the Aspose.Imaging REST API SDK performs the rendering to JPEG2000. 转换完成后,将收到生成的 JPEG2000 图像文件流作为响应,然后您可以将其保存在本地磁盘上。
在本主题中,我们学习了使用 Cloud API 将 JPG 转换为 JPEG2000。如果您有兴趣执行 GIF 到 JPEG2000 的转换,请参阅有关如何 使用 NET REST API 将 GIF 转换为 JPEG2000 的文章。