如何将pdf平铺到具有边框

时间:2016-03-16 11:21:15

标签: c# pdf itextsharp itext

使用itextsharp我试图将单个(大)页面pdf文档(称为导入文档)平铺到一个新文档中,在该文档中该页面被分成几个DIN A4页面(称为输出文档)。但我想在输出的DIN A4页面周围画一个边框,只添加一个小于A4大小的导入文件。

澄清请看图片: enter image description here

左边是尺寸为A3的导入文件,就像是两张并排的A4页面(黑色虚线)。这应分为带有边框的A4页面(右侧)。由于新A4页面有边框,因此导入的部分小于A4。因此,对于A3导入的输出而不是2个A4页面,我将得到6页输出。绿线是我想画的边界。

我已经得到了什么?
从这个答案Split PDF我写了下面的代码(带按钮的WinForm),它已经正确地将pdf从a3平铺到2x A4。 (它是通用的,因此输入大小无关紧要):

public partial class Form1 : Form
{
    public Form1()
    {
        InitializeComponent();
    }

    private void button1_Click(object sender, EventArgs e)
    {
        //A4 210/297 millimeter
        double width = (21.0 / 2.54) * 72;
        double height = (29.7 / 2.54) * 72;

        string filename = "test_input_a3.pdf";
        filename = Path.Combine(Directory.GetCurrentDirectory(), filename);
        PdfReader reader = new PdfReader(filename);
        Rectangle origPagesize = reader.GetPageSizeWithRotation(1);

        Rectangle newPagesize = new Rectangle((float)width, (float)height);
        string outputFile = Path.Combine(Directory.GetCurrentDirectory(), "output.pdf");
        FileStream ms = new FileStream(outputFile, FileMode.Create);
        using (Document document = new Document(newPagesize))
        {
            PdfWriter writer = PdfWriter.GetInstance(document, ms);
            document.Open();
            PdfContentByte content = writer.DirectContent;
            PdfImportedPage page = writer.GetImportedPage(reader, 1);
            Rectangle bounding = page.BoundingBox;

            int countWidth = (int)(origPagesize.Width / newPagesize.Width) + (newPagesize.Width % origPagesize.Width > 0 ? 1 : 0);
            int countHeight = (int)(origPagesize.Height / newPagesize.Height) + (newPagesize.Height % origPagesize.Height > 0 ? 1 : 0);

            float x, y;
            for (int i = 0; i < countHeight * countWidth; i++)
            {
                x = -newPagesize.Width * (i % countWidth);
                y = newPagesize.Height * (i / countWidth - (countHeight - 1));

                content.AddTemplate(page, x, y);
                document.NewPage();
            }
        }            // Save the document...
        // ...and start a viewer.
        Process.Start(outputFile);

    }
}

我也可以在页面上绘制边框(不在代码中)。这是微不足道的。但我无法找到一个解决方案,如何在A4页面上拼贴小于A4的部分,并将它们放在边框内。

itext文档在方法描述上非常简短,我无法找到任何有助于解决此问题的方法。例如,提取大页面或类似内容的子部分的方法。

1 个答案:

答案 0 :(得分:0)

感谢@ChrisHaas在评论中的帮助,他指出了一个解决我问题的样本。

How to tile a PDF with margin

它通过在边距位置添加内容的矩形剪辑(在我的情况下是我想要绘制的边框)来扩展我从stackoverflow答案中获得的代码。

所以我必须在AddTemplate之前添加3行用于剪切,并在所有内容周围添加SaveState和RestoreState,因为我想在之后绘制边距:

content.SaveState();
content.Rectangle(margin, margin, newPagesizeInner.Width, newPagesizeInner.Height);
content.Clip();
content.NewPath();

content.AddTemplate(page, x, y);
content.RestoreState();