旋转单页文档

问题描述

| 使用iText时,如何旋转PdF的第二页。 我希望第一页和其他页面保持相同的方向。 我知道 ...
Document document = new Document(PageSize.A4.rotate(),50,50);
但这将旋转一切。     

解决方法

        从http://itextpdf.com/examples/iia.php?id=232:
/*
 * This class is part of the book \"iText in Action - 2nd Edition\"
 * written by Bruno Lowagie (ISBN: 9781935182610)
 * For more info,go to: http://itextpdf.com/examples/
 * This example only works with the AGPL version of iText.
 */

package part4.chapter13;

import java.io.FileOutputStream;
import java.io.IOException;

import part1.chapter03.MovieTemplates;

import com.itextpdf.text.DocumentException;
import com.itextpdf.text.pdf.PdfDictionary;
import com.itextpdf.text.pdf.PdfName;
import com.itextpdf.text.pdf.PdfNumber;
import com.itextpdf.text.pdf.PdfReader;
import com.itextpdf.text.pdf.PdfStamper;

public class RotatePages {

    /** The resulting PDF. */
    public static final String RESULT
        = \"results/part4/chapter13/timetable_rotated.pdf\";

    /**
     * Manipulates a PDF file src with the file dest as result
     * @param src the original PDF
     * @param dest the resulting PDF
     * @throws IOException
     * @throws DocumentException
     */
    public void manipulatePdf(String src,String dest)
        throws IOException,DocumentException {
        PdfReader reader = new PdfReader(MovieTemplates.RESULT);
        int n = reader.getNumberOfPages();
        int rot;
        PdfDictionary pageDict;
        for (int i = 1; i <= n; i++) {
            rot = reader.getPageRotation(i);
            pageDict = reader.getPageN(i);
            pageDict.put(PdfName.ROTATE,new PdfNumber(rot + 90));
        }
        PdfStamper stamper = new PdfStamper(reader,new FileOutputStream(RESULT));
        stamper.close();
        reader.close();
    }

    /**
     * Main method creating the PDF.
     * @param    args    no arguments needed
     * @throws DocumentException 
     * @throws IOException 
     */
    public static void main(String[] args)
        throws IOException,DocumentException {
        new MovieTemplates().createPdf(MovieTemplates.RESULT);
        new RotatePages().manipulatePdf(MovieTemplates.RESULT,RESULT);
    }
}
    ,        您可以在
document.addNew();
之前使用
document.setPageSize()
。 例如:
Document document = new Document();
....
document.setPageSize(PageSie.A4);
document.newPage();
......

document.setPageSize(PageSize.A4.rotate());
document.newPage();
对我来说效果很好。     ,        我旋转方向:
PdfWriter writer = new PdfWriter(out);
PdfDocument pdf = new PdfDocument(writer);
Document document = new Document(pdf,PageSize.LETTER.rotate());
    

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...