我想使用该功能CGImageSourceCreateThumbnailAtIndex
从UIImage
. 我所拥有的只是它UIImage
本身。图像是UIView
.
拜托,我不想使用任何其他方法来创建缩略图,只是使用 的那个CGImageSourceCreateThumbnailAtIndex
,因为我想将它的性能与我已经拥有的其他方法进行比较。
说,这是我到目前为止的代码。
我UIImage
用这段代码创建了一个类别:
- (UIImage *)createSquaredThumbnailWithWidth:(NSInteger)width {
CFDictionaryRef options = (__bridge CFDictionaryRef) @{
(id) kCGImageSourceCreateThumbnailWithTransform : @YES,
(id) kCGImageSourceCreateThumbnailFromImageAlways : @YES,
(id) kCGImageSourceThumbnailMaxPixelSize : @(width)
};
CGImageRef scaledImageRef = CGImageSourceCreateThumbnailAtIndex(????, 0, options);
UIImage* scaled = [UIImage imageWithCGImage:scaledImageRef];
CGImageRelease(scaledImageRef);
return scaled;
}
我的问题是这一行:
CGImageRef scaledImageRef = CGImageSourceCreateThumbnailAtIndex(????, 0, options);
这个函数的第一个参数需要一个CGImageSourceRef
,但就像我说的,我只有一个UIImage
,那个图像在内存上,而不是在磁盘上,我不想把它保存到磁盘上,否则性能会下降。
我如何CGImageSourceRef
从UIImage
内存中获取一个???