iphone:如何将网页(UIWebView)转换为pdf

时间:2010-04-16 05:42:42

标签: iphone

我想转换我的网页(在UIWebView中显示)pdf文件中的内容。

可以存储在特定目录(文档目录/任何用户定义的目录)。

所以稍后可以看到用户无法使用互联网连接。

是否有可能执行此功能。

我该怎么做......

提前感谢你......

1 个答案:

答案 0 :(得分:2)

图像可能是您的最佳选择。见Take snapshot of view / WebView programmatically

要获取图像,您需要使用:

UIGraphicsBeginImageContext(self.bounds.size);

[theView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();

UIGraphicsEndImageContext();

然后,保存到照片库:

UIImageWriteToSavedPhotosAlbum(viewImage,nil,NULL,NULL);