在目标c中将.png图像转换为pdf

时间:2014-10-28 06:11:42

标签: ios objective-c pdf-generation

我在文档目录路径中有一组图像,我需要使用以下代码转换pdf,将所有保存的图像转换为pdf页面编号.am   UIWebView *webview=[[UIWebView alloc]initWithFrame:CGRectMake(0, 64, 320,430)]; pdfData = [PDFImageConverter convertImageToPDF: imageVIew.image withHorizontalResolution: 550 verticalResolution: 320]; NSString *path = [NSHomeDirectory() stringByAppendingPathComponent: @"Documents/new.pdf"]; NSLog(@"path %@",path); [pdfData writeToFile:path atomically:NO]; [webview loadRequest:[NSURLRequest requestWithURL:[NSURL fileURLWithPath:path]]]; [self.view addSubview:webview]; 在这段代码中,我可以将单个图像转换为pdf。如何将我的所有图像转换为pdf?

1 个答案:

答案 0 :(得分:1)

以下是从图像和其他资产生成PDF的教程:http://code.tutsplus.com/tutorials/generating-pdf-documents--mobile-11265始终为我工作。