Default paper size and unit for PDF documents on iOS

后端 未结 1 960
野趣味
野趣味 2021-02-04 09:44

For creating PDF documents in iOS, in the official documentation (http://developer.apple.com/library/ios/#documentation/2DDrawing/Conceptual/DrawingPrintingiOS/GeneratingPDF/Gen

1条回答
  •  执笔经年
    2021-02-04 09:53

    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.

    0 讨论(0)
提交回复
热议问题