目錄
- 各種格式文件轉(zhuǎn)PDF
- 多張圖片轉(zhuǎn)PDF
- UIWebView轉(zhuǎn)圖片
各種格式文件轉(zhuǎn)PDF
其實(shí)就是用UIWebView去加載文件,然后通過UIPrintPageRenderer
和UIGraphicsBeginPDFContextToData
配合使用將UIWebview上顯示的內(nèi)容生成PDF文件。給UIWebView添加一個(gè)分類,在分類里面添加以下方法:
- (NSData *)convert2PDFData{
// 返回視圖的打印格式化
UIViewPrintFormatter *format = [self viewPrintFormatter];
UIPrintPageRenderer *render = [[UIPrintPageRenderer alloc] init];
[render addPrintFormatter:format startingAtPageAtIndex:0];
// 設(shè)置PDF文件每頁的尺寸
CGRect pageRect = CGRectMake(0, 0, 600, 768);
// 呈現(xiàn)每個(gè)頁面的上下文的尺寸大小
CGRect printableRect = CGRectInset(pageRect, 50, 50);
[render setValue:[NSValue valueWithCGRect:pageRect] forKey:@"paperRect"];
[render setValue:[NSValue valueWithCGRect:printableRect] forKey:@"printableRect"];
NSMutableData *pdfData = [NSMutableData data];
// 文檔信息 可設(shè)置為nil
// CFMutableDictionaryRef myDictionary = CFDictionaryCreateMutable(nil, 0,
// &kCFTypeDictionaryKeyCallBacks,
// &kCFTypeDictionaryValueCallBacks);
// CFDictionarySetValue(myDictionary, kCGPDFContextTitle, CFSTR("My PDF File"));
// CFDictionarySetValue(myDictionary, kCGPDFContextCreator, CFSTR("My Name"));
UIGraphicsBeginPDFContextToData(pdfData, pageRect, NULL);
for (NSInteger i = 0; i < [render numberOfPages]; i++) {
UIGraphicsBeginPDFPage();
CGRect bounds = UIGraphicsGetPDFContextBounds();
[render drawPageAtIndex:i inRect:bounds];
}
UIGraphicsEndPDFContext();
return pdfData;
}
多張圖片轉(zhuǎn)PDF
在UIWebview加載單張圖片,通過上述方法也是能將圖片轉(zhuǎn)成PDF文件的何乎,但如果是多張圖片要通過UIWebview來實(shí)現(xiàn)比較麻煩。蘋果在UIGraphics.h
給我們提供了一個(gè)繪制PDF的方法:UIKIT_EXTERN BOOL UIGraphicsBeginPDFContextToFile(NSString *path, CGRect bounds, NSDictionary * __nullable documentInfo) NS_AVAILABLE_IOS(3_2);
- path:文件保存路徑
- bounds:設(shè)置PDF每頁的寬高,設(shè)置CGRectZero為默認(rèn)值( 612 by 792 points)
- documentInfo :設(shè)置文檔的額外信息阿弃,比如文檔作者和密碼這樣的信息,可以為nil羞延。
為了PDF顯示效果渣淳,我將PDF的size設(shè)置成默認(rèn)Size,而且一張圖片作為PDF的一頁并且居中顯示伴箩,但是這個(gè)時(shí)候你不能保證每張圖片尺寸一樣入愧。因?yàn)槿绻鹖mage Size如果大于PDF Size,這樣轉(zhuǎn)換后的PDF就不能正常顯示了,所以我需要判斷每張圖片的的實(shí)際大小嗤谚,根據(jù)圖片的寬高比去對原圖片進(jìn)行縮放棺蛛。
具體實(shí)現(xiàn)如下:
+ (BOOL)convertPDFWithImages:(NSArray<UIImage *>*)images fileName:(NSString *)fileName{
if (!images || images.count == 0) return NO;
// pdf文件存儲(chǔ)路徑
NSString *pdfPath = [self saveDirectory:fileName];
NSLog(@"****************文件路徑:%@*******************",pdfPath);
BOOL result = UIGraphicsBeginPDFContextToFile(pdfPath, CGRectZero, NULL);
// pdf每一頁的尺寸大小
CGRect pdfBounds = UIGraphicsGetPDFContextBounds();
CGFloat pdfWidth = pdfBounds.size.width;
CGFloat pdfHeight = pdfBounds.size.height;
NSLog(@"%@",NSStringFromCGRect(pdfBounds));
[images enumerateObjectsUsingBlock:^(UIImage * _Nonnull image, NSUInteger idx, BOOL * _Nonnull stop) {
// 繪制PDF
UIGraphicsBeginPDFPage();
// 獲取每張圖片的實(shí)際長寬
CGFloat imageW = image.size.width;
CGFloat imageH = image.size.height;
// CGRect imageBounds = CGRectMake(0, 0, imageW, imageH);
// NSLog(@"%@",NSStringFromCGRect(imageBounds));
// 每張圖片居中顯示
// 如果圖片寬高都小于PDF寬高
if (imageW <= pdfWidth && imageH <= pdfHeight) {
CGFloat originX = (pdfWidth - imageW) * 0.5;
CGFloat originY = (pdfHeight - imageH) * 0.5;
[image drawInRect:CGRectMake(originX, originY, imageW, imageH)];
}
else{
CGFloat w,h; // 先聲明縮放之后的寬高
// 圖片寬高比大于PDF
if ((imageW / imageH) > (pdfWidth / pdfHeight)){
w = pdfWidth - 20;
h = w * imageH / imageW;
}else{
// 圖片高寬比大于PDF
h = pdfHeight - 20;
w = h * imageW / imageH;
}
[image drawInRect:CGRectMake((pdfWidth - w) * 0.5, (pdfHeight - h) * 0.5, w, h)];
}
}];
UIGraphicsEndPDFContext();
return result;
}
UIWebView轉(zhuǎn)圖片
在項(xiàng)目里經(jīng)常需要用到WebView去展示各種頁面,然后需要把整個(gè)頁面的內(nèi)容轉(zhuǎn)為圖片轉(zhuǎn)發(fā)出去巩步,簡書里也有這個(gè)功能旁赊。具體實(shí)現(xiàn)步驟如下:
- 將 UIWebView 分屏截取,然后將截取的圖片拼接成一張圖片
- 將 UIWebView 從頭椅野,contentOffset = (0, 0)终畅,開始截取webView.bounds.size.height高度的圖片
- 然后將 webView 可見區(qū)域下移繼續(xù)截屏钞钙,這樣將所有截取的圖片按照順序拼接,就能得到整個(gè) UIWebView 顯示內(nèi)容的完整圖片声离。
實(shí)現(xiàn)代碼如下:
CGSize boundsSize = self.bounds.size;
CGFloat boundsWidth = self.bounds.size.width;
CGFloat boundsHeight = self.bounds.size.height;
CGPoint offset = self.scrollView.contentOffset;
[self.scrollView setContentOffset:CGPointMake(0, 0)];
CGFloat contentHeight = self.scrollView.contentSize.height;
NSMutableArray *images = [NSMutableArray array];
while (contentHeight > 0) {
UIGraphicsBeginImageContext(boundsSize);
[self.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *image = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
[images addObject:image];
CGFloat offsetY = self.scrollView.contentOffset.y;
[self.scrollView setContentOffset:CGPointMake(0, offsetY + boundsHeight)];
contentHeight -= boundsHeight;
}
[self.scrollView setContentOffset:offset];
UIGraphicsBeginImageContext(self.scrollView.contentSize);
[images enumerateObjectsUsingBlock:^(UIImage *image, NSUInteger idx, BOOL *stop) {
[image drawInRect:CGRectMake(0, boundsHeight * idx, boundsWidth, boundsHeight)];
}];
UIImage *fullImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return fullImage;
老規(guī)矩還是在文章末尾奉上本文Demo地址