0
A
回答
1
我做這種方式,我的基本圖像是NSData對象:
NSMutableData *pdfData = [NSMutableData data];
UIGraphicsBeginPDFContextToData(pdfData, CGRectMake(0, 0, 2480, 3508), nil);
UIImage *aImg = [UIImage imageWithData:myImageData];
UIGraphicsBeginPDFPage();
NSData *jpegData = UIImageJPEGRepresentation(aImg, 0.5);
CGDataProviderRef dp = CGDataProviderCreateWithCFData((__bridge CFDataRef)jpegData);
CGImageRef cgImage = CGImageCreateWithJPEGDataProvider(dp, NULL, true, kCGRenderingIntentDefault);
[[UIImage imageWithCGImage:cgImage] drawInRect:CGRectMake(0, 0, aImg.size.width, aImg.size.height)];
UIGraphicsEndPDFContext();
return pdfData;
相關問題
- 1. 如何將PHP GD生成的圖像轉換爲PDF
- 2. 將PDF轉換爲圖像
- 3. 如何將PDF轉換爲圖像?
- 4. 如何將PDF轉換爲圖像?
- 5. 如何使用Wicked PDF將圖像文件轉換爲PDF?
- 6. 在Android中將圖像轉換爲PDF
- 7. 將閃存圖轉換爲圖像/ pdf
- 8. 如何將html轉換爲pdf與PDF?
- 9. 轉換爲圖像PDF
- 10. pdfBox將pdf轉換爲透明圖像
- 11. pdfkit不將圖像轉換爲pdf
- 12. 將PDF轉換爲圖像序列C#
- 13. 將掃描PDF轉換爲圖像
- 14. 庫將PDF轉換爲圖像
- 15. android-將pdf轉換爲圖像
- 16. 將兩個圖像轉換爲pdf
- 17. 安卓:將PDF轉換爲圖像
- 18. 將多頁PDF轉換爲多圖像
- 19. 使用ImageMagick將PDF轉換爲圖像
- 20. pdfbox將圖像轉換爲pdf文件
- 21. 將pdf和word轉換爲圖像
- 22. Pdfbox1.8.12將PDF轉換爲白頁圖像
- 23. 將PDF轉換爲php中的圖像
- 24. 將PDF轉換爲TBitmap圖像
- 25. 將網頁轉換爲PDF或圖像
- 26. 將PDF轉換爲圖像批量
- 27. 將EPL圖像轉換爲PDF?
- 28. PHP將PDF轉換爲圖像-dUseCropBox
- 29. 將圖像轉換爲PDF php
- 30. pdfbox將pdf轉換爲圖像byte []
如何NSMutableData轉換成的NSString?我被攻擊在這一點上?非常感謝 – Vara
但是如何在webview中以pdf格式 – Vara
顯示,例如 – thorb65