Android Question Canvas on PDFView

Douwe Siegersma

Member
Licensed User
Hello,

I'm using PDFView2 (PDFium) to load and show a PDF file.
I want to draw lines on it by using a canvas but this doesn't work.

B4X:
    Canvas1.Initialize(PDFView1)
    C.DrawLine(100,100,100,500,Colors.Red,5)
    Activity.Invalidate
 

DonManfred

Expert
Licensed User
Longtime User
renderPageBitmap or renderPageBitmap2
 
Upvote 1
Top