挿入するレイヤーの回転角度を指定レイヤーの回転角度を90度単位で指定します。
90度単位で回転角度を指定し、6.1.1 レイヤーに使用するPDF文書ページを設定と同様にしてレイヤーを挿入します。
PtlParamDrawLayer.APIsetRotate(int value): 回転角度を設定
角度は絶対値で90度単位のみで指定してください。それ以外の値を指定した場合の動作は保証されません。回転角度を設定する場合は他の関数より先に設定してください。
package cookbook; import jp.co.antenna.ptl.*; public class DrawLayerSetRotationAngle { // そのクラスのusageを表示する関数 private static void printUsage() { System.out.println("usage: java DrawLayerSetRotationAngle in-pdf-file" + " out-pdf-file page-num insert-pdf-file" + " page-num-to-insert rotation-angle"); System.out.println("rotation-angle:"); System.out.println("回転する角度。0, 90, 180, 270のいずれかで指定。"); } /** * @param args the command line arguments */ public static void main(String[] args) { if (args.length < 5) { printUsage(); return; } try (PtlParamInput inputFile = new PtlParamInput(args[0]); PtlParamOutput outputFile = new PtlParamOutput(args[1]); PtlPDFDocument doc = new PtlPDFDocument()) { // PDFファイルをロードします。 doc.load(inputFile); // コマンドライン引数の判定 int pageToAdd = Integer.parseInt(args[2]); int numPages = doc.getPageCount(); System.out.println("ページ数:" + numPages); if((numPages < 0)||(numPages < pageToAdd)) { System.err.println("page-numは入力PDFの全ページ数よりも小さい正の値を" + "指定してください。"); printUsage(); return; } String insertPDFPath = args[3]; int insertPageNum = Integer.parseInt(args[4]); int angle = Integer.parseInt(args[5]); switch(angle) { case 0: case 90: case 180: case 270: break; default : System.out.println("rotation-angleは0, 90, 180, 270のいずれかを" + "指定して下さい。"); printUsage(); return ; } try (PtlPages pages = doc.getPages()) { // ページコンテナの取得 // ページコンテナが空かどうか if (pages.isEmpty()) { System.out.println("ページコンテナが空"); return; } // ページの取得(パラメータindexは0が先頭のため1を引く) try (PtlPage page = pages.get(pageToAdd - 1)) { //レイヤーの描画 drawLayerSetRotationAngle(page, insertPDFPath, insertPageNum, angle); } } // ファイルに保存します。 doc.save(outputFile); } ...【ExtractText.javaと同じ処理のため省略 ・エラーメッセージ処理と出力】... } public static void drawLayerSetRotationAngle(PtlPage page, String insertPDFPath, int insertPageNum, int angle) throws PtlException, Exception, Error { try (PtlSize pageSize = page.getSize(); // ページサイズ PtlContent content = page.getContent(); // ページコンテントの取得 PtlPDFDocument docToInsert = new PtlPDFDocument(); //挿入するPDF PtlParamInput inputFileToInsert = new PtlParamInput(insertPDFPath); // 描画矩形の指定(PDFいっぱいに指定) PtlRect rect = new PtlRect(0.0f, 0.0f, pageSize.getWidth(), pageSize.getHeight())) { // PDFファイルをロードします。 docToInsert.load(inputFileToInsert); try (PtlPages pagesToInsert = docToInsert.getPages()) { // ページコンテナの取得 // ページコンテナが空かどうか if (pagesToInsert.isEmpty()) { System.out.println("ページコンテナが空"); return; } // ページの取得(パラメータindexは0が先頭のため1を引く) // レイヤーのパラメーターの取得 try (PtlPage pageInsert = pagesToInsert.get(insertPageNum - 1); PtlParamDrawLayer param = new PtlParamDrawLayer()) { // レイヤーの回転角度を指定 param.setRotate(angle); // レイヤーにするページ param.setPage(pageInsert); // レイヤーの名前 param.setName("Layer1"); // レイヤーを前面に param.setZorder(PtlParamDrawLayer.ZORDER.ZORDER_FRONT); // レイヤーを表示 param.setShow(PtlParamDrawLayer.SHOW.SHOW_ON); // レイヤーの描画 content.drawLayer(rect, PtlContent.ALIGN.ALIGN_CENTER, param); } } } } }
DrawLayerSetRotationAngle.java
C:\samples>>java cookbook.DrawLayerSetRotationAngle usage: java DrawLayerSetRotationAngle in-pdf-file out-pdf-file page-num insert-pdf-file page-num-to-insert rotation-angle rotation-angle: 回転する角度。0, 90, 180, 270のいずれかで指定。 C:\samples>>java cookbook.DrawLayerSetRotationAngle AHLetterHead.pdf DrawLayerSetRotationAngle.pdf 1 AHLogo.pdf 1 270 ページ数:1 -- 完了 --
次の図のようにロゴのレイヤーは時計回りに270度回転されています。