Why some of the content is getting cropped off after resizing the page to 7.31 x 11 size?

隐身守侯 提交于 2019-12-02 07:58:07

Of course your content is cropped off, that's what you told it to do. You need to shrink the content too, be prepending a scaling matrix to the page content stream:

    if (reSizepage != null)
    {
        reSizepage.setMediaBox(mediaBox);

        PDPageContentStream contentStream = new PDPageContentStream(document, reSizepage, PDPageContentStream.AppendMode.PREPEND, false);
        contentStream.transform(Matrix.getScaleInstance(0.9f, 0.9f));
        contentStream.close();
    }

similar, but better answer (resets all at the end) here

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!