使用 AlivePDF 获取页面大小

发布于 2024-12-07 15:15:09 字数 89 浏览 0 评论 0原文

使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一场春暖 2024-12-14 15:15:09

希望这会对您有所帮助。查看 Page 对象的 AlivePDF API 文档(请参阅此处) 我找到了公共属性“宽度”和“高度”。

在我的代码中,给定一个名为 myPDF 的 PDF 对象,我使用:

var sizeWidth:int = myPDF.getPage(i).width;
var sizeHeight:int = myPDF.getPage(i).height;

获取页面 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:

var sizeWidth:int = myPDF.getPage(i).width;
var sizeHeight:int = myPDF.getPage(i).height;

to get the width and height of page i.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文