Hi,
I am trying to convert a BMP image to a PDF file using Aspose.Imaging for Java 18.2 using this code:
Image image = Image.load(inputPath);
BmpImage bmpImage = (BmpImage) image;
PdfOptions pdfOptions = new PdfOptions();
bmpImage.save(outputPath, pdfOptions);
However when I do so, I get this exception:
com.aspose.imaging.internal.Exceptions.ArgumentException: Cannot save to the specified format as it is not supported at the moment.
I would like to request this conversion support please.
Cheers.
11243