如何在swift中从HTML字符串创建PDF文件时在pdf中设置底部空间?

时间:2015-11-12 08:12:34

标签: ios swift pdf space bottom-type

按照以下示例进行操作。

https://gist.github.com/nyg/b8cd742250826cb1471f

如果可以让底部空间更加完美,这对我来说就是一个很好的例子。

1 个答案:

答案 0 :(得分:0)

经过大量的测试和搜索后,任何可能的, 我找到了这个主题( Is there any way to generate PDF file from a XML/HTML template in iOs) 并修改一些代码如下:

//let page = CGRect(x: 0, y: 0, width: 595.2, height: 841.8); // A4, 72 dpi    
let page = CGRect(x: 0, y: 0, width: 575.2, height: 821.8); // A4, 72 dpi
..
..
..
//UIGraphicsBeginPDFContextToData(pdfData, CGRectZero, nil);
UIGraphicsBeginPDFContextToData(pdfData, CGRect(x: 0, y: 0, width: 595.2, height: 841.8) , nil);