Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.03 KB

Note_00004_20151218.md

File metadata and controls

46 lines (30 loc) · 1.03 KB

变更记录

序号 录入时间 录入人 备注
1 2015-09-09 Alfred Jiang -
2 2015-12-18 Alfred Jiang -

方案名称

UIWebView - 使用 UIWebViewToFile 实现 UIWebView 内容转为 Image 或 PDF

关键字

UIWebView \ UIImage \ PDF \ 长页面截图

需求场景

  1. 需要将较长页面的 Web 内容转为 Image 或 PDF 文件时

参考链接

  1. GitHub - UIWebViewToFile
  2. 将UIWebView显示的内容转为图片和PDF

详细内容

  1. 添加头文件
#import "UIWebView+ToFile.h"
  1. 调用公共接口函数实现转换
@interface UIWebView (ToFile)

- (UIImage *)imageRepresentation;

- (NSData *)PDFData;

@end

效果图

(无)

备注

(无)