本文整理汇总了Java中org.apache.pdfbox.pdmodel.PDPage.findMediaBox方法的典型用法代码示例。如果您正苦于以下问题:Java PDPage.findMediaBox方法的具体用法?Java PDPage.findMediaBox怎么用?Java PDPage.findMediaBox使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.apache.pdfbox.pdmodel.PDPage
的用法示例。
在下文中一共展示了PDPage.findMediaBox方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: openContentStream
import org.apache.pdfbox.pdmodel.PDPage; //导入方法依赖的package包/类
private PDPageContentStream openContentStream(PDPage page, boolean setPageSize, boolean applyPageOrientation) throws IOException {
contentStream = new PDPageContentStream(doc, page, true, false);
if (painter != null) {
PDRectangle pageSize = page.findMediaBox();
if (PageOrientation.LANDSCAPE.equals(painter.getPageOrientation())) {
if (setPageSize) {
painter.setPageHeight(pageSize.getWidth());
painter.setPageWidth(pageSize.getHeight());
}
if (applyPageOrientation) {
contentStream.concatenate2CTM(0, 1, -1, 0, pageSize.getWidth(), 0); // cos(theta) sin(theta) -sin(theta) cos(theta) 0 0 cm
}
} else {
if (setPageSize) {
painter.setPageHeight(pageSize.getHeight());
painter.setPageWidth(pageSize.getWidth());
}
}
}
return contentStream;
}
示例2: fillBeadRectangles
import org.apache.pdfbox.pdmodel.PDPage; //导入方法依赖的package包/类
private void fillBeadRectangles(PDPage page)
{
beadRectangles = new ArrayList<PDRectangle>();
for (PDThreadBead bead : page.getThreadBeads())
{
if (bead == null)
{
// can't skip, because of null entry handling in processTextPosition()
beadRectangles.add(null);
continue;
}
PDRectangle rect = bead.getRectangle();
// bead rectangle is in PDF coordinates (y=0 is bottom),
// glyphs are in image coordinates (y=0 is top),
// so we must flip
PDRectangle mediaBox = page.findMediaBox();
float upperRightY = mediaBox.getUpperRightY() - rect.getLowerLeftY();
float lowerLeftY = mediaBox.getUpperRightY() - rect.getUpperRightY();
rect.setLowerLeftY(lowerLeftY);
rect.setUpperRightY(upperRightY);
// adjust for cropbox
PDRectangle cropBox = page.findCropBox();
if (cropBox.getLowerLeftX() != 0 || cropBox.getLowerLeftY() != 0)
{
rect.setLowerLeftX(rect.getLowerLeftX() - cropBox.getLowerLeftX());
rect.setLowerLeftY(rect.getLowerLeftY() - cropBox.getLowerLeftY());
rect.setUpperRightX(rect.getUpperRightX() - cropBox.getLowerLeftX());
rect.setUpperRightY(rect.getUpperRightY() - cropBox.getLowerLeftY());
}
beadRectangles.add(rect);
}
}