我有一个现有的PDF。整个文档的页面大小为A4。如果我想将第2页的页面大小修改为Legal,那么如何使用ABCPdf实现该目标?
由于
答案 0 :(得分:0)
你有没有尝试过类似的东西?
Using yourDoc As New Doc()
With yourDoc
.Read (yourpath)
.PageNumber =2
.MediaBox.String = "Legal"
.Save(new_path)
.Clear()
End With
End Using
页面大小: http://www.websupergoo.com/helppdfnet/source/5-abcpdf/xrect/2-properties/string.htm