I am implementing pdf editing application by using itextpdf. I added a text into pdf and I am drawing a name on android system canvas by using canvas.drawPath() method.Like that I want to draw a names on pdfCanvas is it possible?.
I tried some of the example for drawing curves and rectangle on pdf canvas but is not giving exact solution.For drawing curves on pdf canvas I am using "PdfContentByte".In this class I found some of the methods
curveFromTo(x1,y1,x3,y3) curveTo(x2,y2,x3,y3) curveTo(x1,y1,x2,y2,x3,y3)
in this methods I am using curveFromTo() after saving it's giving mirror path not original path.
means if I draw PDF on android canvas its rotating like mirror image.
Is it possible to draw a path on PDF file.And is there any method like canvas.drawPAth();