Convert Image to PDF in C#
PowerPoint .NET API for converting images to PDF documentats on NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms
Convert Image to PDF in C#
How do I convert Image to PDF programmatically?
Using Aspose.Slides for .NET , any developer or application can convert Image to PDF format with just a few lines of C# code.
As a modern document processing API, Aspose.Slides for .NET creates PDFs from JPG or PNG images quickly. Aspose PowerPoint library allows you to convert Image to PDF and many other file formats
To install Aspose.Slides: Open NuGet package manager. Search for Aspose.Slides and install it.
Or you can install Aspose.Slides by running this command from the Package Manager Console.
Package Manager Console Command
PM> Install-Package Aspose.Slides.NET
How to Convert Image to PDF in C#
Developers and applications can convert Image to PDF this way:
Create an instance of the Presentation class.
Load the image.
Add a PictureFrame.
Call the save method to save the file as PDF.
System Requirements
Before you run the Image to PDF conversion C# code, your machine must have these prerequisities:
- Microsoft Windows or a compatible OS with .NET Framework, .NET Core, Windows Azure, Mono or Xamarin Platforms.
- Development environment like Microsoft Visual Studio.
- Aspose.Slides for .NET DLL has been referenced in your project.
C# code to convert Image to PDF
using (Presentation pres = new Presentation())
{
IPPImage image = pres.Images.AddImage(File.ReadAllBytes(imagePath));
pres.Slides[0].Shapes.AddPictureFrame(ShapeType.Rectangle, 0, 0, 720, 540, image);
pres.Save("image.pdf", SaveFormat.Pdf);
}
Free Online Converter
Other Supported Conversions
Aspose.Slides supports conversion operations for many file formats