0

有两个 PDF 文档 - A.pdf 和 B.pdf。它们具有相同的页面大小。我在两个文档的页面中添加了一个对象短语。

Stamper_A:=New PdfStamper(reader_A,  
             New System.IO.FileStream(
                 out_file1, 
                 System.IO.FileMode.CreateNew));

ContentByte_A:=Stamper_A.GetOverContent(2);
ColumnText.ShowTextAligned(
    ContentByte_A, 
    Element.ALIGN_LEFT, 
    phrase, 
    75, 
    680, 
    0);

Stamper_B:=New PdfStamper(reader_B,  New System.IO.FileStream(out_file2, System.IO.FileMode.CreateNew));
ContentByte_A:=Stamper_B.GetOverContent(2);
ColumnText.ShowTextAligned(ContentByte_B, Element.ALIGN_LEFT, phrase, 75, 680,0);

但在文件 out_file1 中的短语高于文件中的 out_file2。为什么会这样?

4

1 回答 1

2

A.pdf 和 B.pdf 具有不同的 MediaBox 和/或不同的 CropBox。

于 2012-12-12T15:00:15.793 回答