使用 AlivePDF 获取页面大小
使用 AlivePDF 创建 PDF 时是否可以获取 PDF 的页面宽度和页面高度?
我需要这个来将形状放置在页面的右侧,没有边距或填充,粘在右侧。
Is it possible to get the page width and page height for a PDF during creation with AlivePDF?
I need this to place a shape to the right side of the page, no margin or padding, sticked to the right side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
希望这会对您有所帮助。查看 Page 对象的 AlivePDF API 文档(请参阅此处) 我找到了公共属性“宽度”和“高度”。
在我的代码中,给定一个名为 myPDF 的 PDF 对象,我使用:
获取页面 i 的宽度和高度。
Hopefully this will help you. Looking at the AlivePDF API documentation for the Page object (See here) I've found the public properties "width" and "height".
In my code, given a PDF object called myPDF, I use:
to get the width and height of page i.