Can anyone help me out with Image Conversion Using Aspose.Imaging

Hello there,

As I’m currently working on a project where I need to convert various image formats using Aspose.Imaging. Specifically, I’m interested in converting from formats like JPG, PNG, BMP to PDF.

Could someone please guide me on how to achieve this using Aspose.Imaging?

I’d appreciate any code snippets, documentation references, or tips on efficiently handling this task.

Thank you in advance for your help.

Hello @roberrtt
We appreciate your interest in Aspose.Imaging.
You can get more code snippets here:
For .NET

For Java

API Reference

The simplest way to convert any supported format into PDF is

using Apose.Imaging;

using (var image = Image.Load("input.bmp-or-png-or-any-supported-format"))
{
    image.Save("out.pdf");
}

Please, feel free to ask how can we help you.
Best regards!