I use the print library to print PDF content, as described at the post below. It works just fine.
Now, I need to print PDF on one part of the page, and HTML on the same page.
Would it be possible to do that with the print library ?
Printing and Pdf creation
This is an Android 4.4+ (API 19+) library. Its two main features are: 1. Creating Pdf documents with the PdfDocument object. 2. Printing with the Printer object. Lets start with PdfDocument. Dim pdf As PdfDocument pdf.Initialize pdf.StartPage(595, 842) 'A4 size pdf.Canvas.DrawLine(2, 2, 593...
www.b4x.com
Now, I need to print PDF on one part of the page, and HTML on the same page.
Would it be possible to do that with the print library ?