使用命令行工具将pdf a4拆分为a5

时间:2011-10-25 10:41:54

标签: c# pdf

我正在寻找一个免费的命令行工具,能够将A4 pdf文档信息拆分为A5 pdf文件。

我已经看过http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/但它缺少文档,所以我无法使用它。

我的A4文档由多个页面组成,其中一面始终为空。 Original A4 PDF 我想最终得到这样的结果。 enter image description here

首选命令行工具,但也可以接受C#中的解决方案。

1 个答案:

答案 0 :(得分:1)

这只是一个例子,使用itextsharp它不适合A5中最好的A4 它只需导入一页A4并将其放入A5 ..

只需设置边距即可获得所需的输出....

我正在使用itextsharp

var _readerGlobal = new PdfReader(@"c:\temp\bicicleta.pdf");
MemoryStream _thePdfFile = new MemoryStream();

var _documentGlobal = new Document(PageSize.A5, 50, 50, 50, 50);

var _writerGlobal = PdfWriter.GetInstance(_documentGlobal, _thePdfFile);
_writerGlobal.SetFullCompression();

_documentGlobal.Open();

var _cbGlobal = _writerGlobal.DirectContent;
PdfImportedPage page1 = _writerGlobal.GetImportedPage(_readerGlobal, 1);
_cbGlobal.AddTemplate(page1, 1f, 0, 0, 1f, 0, 0);

_documentGlobal.CloseDocument();

var _pdfBytes = _thePdfFile.ToArray();
File.WriteAllBytes(@"c:\temp\bicicletaA5.pdf", _pdfBytes);