android / graphics-samples

Multiple samples showing the best practices in graphics on Android.
Apache License 2.0
311 stars 134 forks source link

black border around content #17

Open codingjeremy opened 5 years ago

codingjeremy commented 5 years ago

Issue by 2ndGAB Wednesday Jan 17, 2018 at 12:33 GMT Originally opened as https://github.com/googlesamples/android-PdfRendererBasic/issues/19


Hello, I'm trying to use PDFRenderer to convert a PDF file generated by the Android' PrintManager Below is this generated pdf file which seems perfectly correct. TestPrint.pdf And here is the code I use to convert this file in a bitmap.

    mCurrentPage = mPdfRenderer.openPage(index);

    int width = (int)(203.0 / 72.0 * mCurrentPage.getWidth() + 0.5);
    int height = (int)(203.0 / 72.0 * mCurrentPage.getHeight() + 0.5);

    Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);

    mCurrentPage.render(bitmap, null, null, PdfRenderer.Page.RENDER_MODE_FOR_PRINT);

And below is the generated Bitmap. could you please tell me where does this 80 pixels wide black border comes from? screenshot_19700129-125550

nikh-06 commented 2 years ago

Any update for this ?