0
変更したPDFファイルをレンダリングしていない私はpdfboxが正しく
「をpdfboxアプリ-2.0.0-RC2.jar」を使用しています座標。
私の問題は、pdfファイルが変更され、新しいコンテンツが追加された場合です。このコンテンツは縮小されたファイルには含まれていません。添付された画像で
public static String scaleInputPdf(String sourceFileName, float xpos,
float ypos, float imgCtrlWidth, float imgCtrlHeight,
PDRectangle pageSize) throws IOException {
String workdir = "/tmp";
File tmpDir = new File(workdir);
if(! tmpDir.exists()) {
tmpDir.mkdir();
}
String destPath = workdir + "/Result.pdf";
PDDocument sourceDoc = null;
try {
// load the source PDF
sourceDoc = PDDocument.load(new File(sourceFileName));
// create a new PDF and add a blank page
PDDocument doc = new PDDocument();
for (int sourcePageNo = 0; sourcePageNo < sourceDoc
.getNumberOfPages(); sourcePageNo++) {
PDPage page = new PDPage();
page.setMediaBox(pageSize);
doc.addPage(page);
PDPage currentSourcePage = sourceDoc.getPage(sourcePageNo);
PDPageContentStream contents = new PDPageContentStream(doc,
page, true, true, true);
float scaleFactor = getScalingFactor(currentSourcePage,
imgCtrlWidth, imgCtrlHeight, pageSize);
PDFormXObject form = null;
// Create a Form XObject from the source document using
// LayerUtility
LayerUtility layerUtility = new LayerUtility(doc);
form = layerUtility.importPageAsForm(sourceDoc,
sourcePageNo);
// draw a scaled form
contents.saveGraphicsState();
Matrix scalingMatrix = Matrix.getScaleInstance(scaleFactor,
scaleFactor);
contents.transform(scalingMatrix);
Matrix translatingMatrix = Matrix.getTranslateInstance(
xpos,
getYPosition(currentSourcePage, pageSize, ypos,
scaleFactor));
contents.transform(translatingMatrix);
contents.drawForm(form);
contents.restoreGraphicsState();
contents.close();
}
doc.save(destPath);
doc.close();
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
if (sourceDoc != null) {
sourceDoc.close();
}
}
System.err.println("Done! /n file is at following location=" +destPath);
return destPath;
}
private static float getScalingFactor(PDPage sourcePage,
float imgCtrlWidth, float imgCtrlHeight, PDRectangle pageSize) {
PDRectangle imageSize = sourcePage.getMediaBox();
if (imageSize.getHeight() > 792) {
if (pageSize.equals(PDRectangle.LETTER)) {
imgCtrlWidth = 838.8f; // 932 * 0.90
imgCtrlHeight = 1018f; // 1132 *0.90
} else if (pageSize.equals(PDRectangle.A4)) {
imgCtrlWidth = 819f; // 910 * 0.90
imgCtrlHeight = 972f; // 1080 * 0.90
}
}
float scaleX = imgCtrlWidth/imageSize.getWidth();
float scaleY = imgCtrlHeight/imageSize.getHeight();
float scaleFactor = ((scaleX < scaleY) ? scaleX : scaleY);
if (imageSize.getHeight() > 792 && scaleFactor > 0.88) {
scaleFactor = 0.88f;
}
return scaleFactor;
}
private static float getYPosition(PDPage sourcePage,
PDRectangle finalDocPageSize, float yMarginPos, float scaleFactor) {
float yPos = yMarginPos;
float imgHeight = sourcePage.getMediaBox().getHeight();
PDRectangle cropBox = sourcePage.getCropBox();
if (imgHeight > 792) {
if (cropBox.getLowerLeftY() != 0) {
yPos = cropBox.getLowerLeftY() + 40;
}
} else {
yPos = (finalDocPageSize.getHeight() - (imgHeight * scaleFactor + yMarginPos));
}
return yPos;
}
}
ModifiedFile上記の方法からResultPDfから欠落している右コーナー、のコンテンツがある
:後
欠落部分には「注釈」という単語が含まれています。したがって、私はそれが実際に* pdfアノテーションであると仮定します。注釈は**通常のコンテンツの**一部ではありませんが、独自のコンテンツを持つページに緩やかに関連付けられた別個のエンティティです。これとは対照的に、(ソースページの内容をインポートする)XObjectsには注釈を付けることはできません。したがって、あなたのコードでは無視されます。ところで、2.0.0がリリースされても2.0.0のリリース候補を使用するのはなぜですか? – mkl
今は2.0.4です。 RC2は1歳です。なぜ私たちは新しいリリースを作るために熱心に働いたのか不思議に思うLOL –
まず最初に感謝したのは大丈夫です:) –