gpt4 book ai didi

ios - 使用 CGImageSourceCreateThumbnailAtIndex 从 UIImage 创建缩略图

转载 作者:可可西里 更新时间:2023-11-01 05:00:51 27 4
gpt4 key购买 nike

我想使用函数 CGImageSourceCreateThumbnailAtIndexUIImage 创建缩略图。我所拥有的只是 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,那个图像在内存中,而不是在磁盘上,而且我不想将其保存到磁盘,否则性能会下降。

如何从内存中的 UIImage 获取 CGImageSourceRef???

最佳答案

swift 4 代码

let imageData = UIImagePNGRepresentation(image)!
let options = [
kCGImageSourceCreateThumbnailWithTransform: true,
kCGImageSourceCreateThumbnailFromImageAlways: true,
kCGImageSourceThumbnailMaxPixelSize: 300] as CFDictionary
let source = CGImageSourceCreateWithData(imageData, nil)!
let imageReference = CGImageSourceCreateThumbnailAtIndex(source, 0, options)!
let thumbnail = UIImage(cgImage: imageReference)

关于ios - 使用 CGImageSourceCreateThumbnailAtIndex 从 UIImage 创建缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40675640/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com