Convert JPG to PDF
Contents
[
Hide
]
No need to wonder how to convert JPG to PDF, because Apose.PDF for Android via Java library has best decision.
You can very easy convert a JPG images to PDF with Aspose.PDF for Android via Java by following steps:
- Initialize object of Document class
- Load JPG image and add to paragraph
- Save output PDF
The code snippet below shows how to convert JPG Image to PDF:
public void convertJPEGtoPDF () {
// Initialize document object
document=new Document();
Page page=document.getPages().add();
Image image=new Image();
File imgFileName=new File(fileStorage, "Conversion/sample.jpg");
try {
inputStream=new FileInputStream(imgFileName);
} catch (FileNotFoundException e) {
resultMessage.setText(e.getMessage());
return;
}
// Load sample JPEG image file
image.setImageStream(inputStream);
page.getParagraphs().add(image);
File pdfFileName=new File(fileStorage, "JPEG-to-PDF.pdf");
// Save output document
try {
document.save(pdfFileName.toString());
} catch (Exception e) {
resultMessage.setText(e.getMessage());
return;
}
resultMessage.setText(R.string.success_message);
}