1
是否有本地方式將PDF文檔(或至少PDF文檔的第一頁)轉換爲圖像?如何將PDF轉換爲圖像?
是否有本地方式將PDF文檔(或至少PDF文檔的第一頁)轉換爲圖像?如何將PDF轉換爲圖像?
使用ImageIO.framework你可以做這樣的事情:
CGImageSourceRef src = CGImageSourceCreateWithURL(PDF_URL, NULL);
NSDictionary* options = [NSDictionary dictionaryWithObject:(id)[NSNumber numberWithInt:500] forKey:(id)kCGImageSourceThumbnailMaxPixelSize];
CGImageRef firstPage = CGImageSourceCreateImageAtIndex(src, 0, options); // 0 first page of the pdf
CFRelease(src);
UIImage* img = [UIImage imageWithCGImage:firstPage];
CGImageRelease(firstPage);
給出了一個零的UIImage我 – jjxtra 2014-05-18 19:47:09