Default paper size and unit for PDF documents on iOS

狂风中的少年 提交于 2019-12-02 23:37:07

PDF and PostScript use "PostScript points" as a unit. A PostScript point is 1/72 inch. So the default page size is

612 x 792 points = 8.5 x 11 inch = 215.9 mm x 279.4 mm

This is the US Letter paper size.

The bounds rectangle in UIGraphicsBeginPDFPageWithInfo() defines the so-called "media box" of the PDF page. The media box is the size of the medium on which the page should be printed and therefore includes the margins.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!