Lines Matching refs:page
77 PdfDocument.Page page = mDocument.startPage(1); in writeBitmapToDocument() local
79 writeBitmapToPage(page, true); in writeBitmapToDocument()
82 writeBitmapToPage(page, false); in writeBitmapToDocument()
84 mDocument.finishPage(page); in writeBitmapToDocument()
87 private void writeBitmapToPage(PdfDocument.Page page, boolean fill) { in writeBitmapToPage() argument
88 RectF extent = new RectF(page.getInfo().getContentRect()); in writeBitmapToPage()
105 drawDirect(page, extent, fill, rotate); in writeBitmapToPage()
108 drawOptimized(page, extent, scale, rotate); in writeBitmapToPage()
115 private void drawDirect(PdfDocument.Page page, RectF extent, boolean fill, boolean rotate) { in drawDirect() argument
134 page.getCanvas().clipRect(extent); in drawDirect()
135 page.getCanvas().drawBitmap(mBitmap, matrix, new Paint(Paint.FILTER_BITMAP_FLAG)); in drawDirect()
141 private void drawOptimized(PdfDocument.Page page, RectF extent, float scale, boolean rotate) { in drawOptimized() argument
157 page.getCanvas().drawBitmap(targetBitmap, null, extent, null); in drawOptimized()