HTML
JPG
PSD
XML
AI
JPEG
Convert AI to JPEG via C#
How to Convert AI to JPEG Using C#
In order to convert AI to JPEG, we’ll use Aspose.PSD for .NET API which is a feature-rich, powerful and easy to use document manipulation and conversion API for C# platform. Open NuGet package manager, search for Aspose.PSD and install. You may also use the following command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.PSD
Steps to Convert AI to JPEG via C#
Aspose.PSD makes it easy for the developers to load & convert AI files to JPEG in just a few lines of code.
- Load the AI with Image.Load method
- Create an instance of JpegOptions class
- Call Image.Save method
- Pass output filename and object of JpegOptions
System Requirements
Aspose.PSD for .NET is supported on all major operating systems. Just make sure that you have the following prerequisites.
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, and PHP, VBScript, Delphi, C++ via COM Interop.
- Development environment like Microsoft Visual Studio.
- Aspose.PSD for .NET DLL referenced in your project.
This sample code shows AI to JPEG C# Conversion
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using (var image = (AiImage)Image.Load("template.ai")) | |
{ | |
image.Save("output.jpeg", new JpegOptions()); | |
} |