Cosmin
Cosmin

Reputation: 2908

Android - Print multiple images

Is there a way to print multiple images on Android without selecting the Printer for each image (or presenting the OS Printing UI)?

I am interested in both pre Printing Framework and also using the Printing Framework.

https://developers.google.com/cloud-print/docs/android#integration-steps

By looking at the documentation it doesn't seem so, but maybe I am missing something.

Thank you, Cosmin

Upvotes: 1

Views: 2886

Answers (1)

Nonos
Nonos

Reputation: 2518

I think you will need to create a multi-page pdf that contains the images that you'd like to print. This tutorial has details on how to connect to the Android print manager and get your content ready for printing. In particular, you can look at this section which shows how you can use a PdfDocument object to create a pdf page by page from a bitmap.

Upvotes: 1

Related Questions