获取 PDF/PNG 作为 UIWebView 或 UIView 的输出
有没有办法获取 UIWebView 的内容并将其转换为 PDF 或 PNG 文件?例如,我希望通过在 Safari 打印时选择 PDF 按钮来获得与 Mac 上可用的输出类似的输出。我假设这是不可能的/内置的,但希望我会感到惊讶并找到一种将内容从网络视图获取到文件的方法。
谢谢!
Is there any way to get the content of a UIWebView
and convert it to a PDF or PNG file? I'd like to get similar output to that available on the Mac by selecting the PDF button when printing from Safari, for example. I'm assuming this isn't possible/built in yet, but hopefully I'll be surprised and find a way to get the content from a webview to a file.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
下面的代码将 UIWebView 的(完整)内容转换为 UIImage。
渲染 UIImage 后,我将其以 PNG 格式写入磁盘以查看结果。
当然,你可以用 UIImage 做任何你喜欢的事情。
注意:确保 UIWebView 已完全加载(UIWebViewDelegate 或 loading 属性)。
The code below will convert the (full) content of a UIWebView to an UIImage.
After rendering the UIImage I write it to disk as PNG to see the result.
Of course you could do with the UIImage whatever you like.
Note: make sure the UIWebView is fully loaded (UIWebViewDelegate or loading property).
从 Web 视图创建图像很简单:
获得图像后,您可以将其另存为 PNG。
也可以通过非常类似的方式创建 PDF,但仅限于尚未发布的 iPhone OS 版本。
Creating a image from a web view is simple:
Once you have the image you can save it as a PNG.
Creating PDFs is also possible in a very similar way, but only on a yet unreleased iPhone OS version.
@mjdth,请尝试使用
fileURLWithPath:isDirectory:
代替。URLWithString
也不适合我。@mjdth, try
fileURLWithPath:isDirectory:
instead.URLWithString
wasn't working for me either.您可以在 UIView 上使用以下类别来创建 PDF 文件:
坏消息:UIWebView 不会在 PDF 中创建漂亮的形状和文本,而是将自身呈现为 PDF 中的图像。
You can use the following category on UIView to create a PDF file:
Bad news: UIWebView does not create nice shapes and text in the PDF, but renders itself as an image into the PDF.