gpt4 book ai didi

ios - 使用图像 I/O Objective-C 加载原始图像返回错误的分辨率

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:59:36 24 4
gpt4 key购买 nike

我正在尝试将 RAW 图像加载到 iOS 项目以进行显示。目前,我正在使用这段代码加载原始图像。

CFDictionaryRef optionsRef = (__bridge CFDictionaryRef) @{
// (id) kCGImageSourceShouldAllowFloat: @YES,
(id) kCGImageSourceCreateThumbnailWithTransform : @YES,
(id) kCGImageSourceCreateThumbnailFromImageAlways : @YES,
(id) kCGImageSourceThumbnailMaxPixelSize : @(MAX(SCREEN_HEIGHT, SCREEN_WIDTH) * ([UIScreen mainScreen].scale))
};

CGImageSourceRef imageSourceRef = CGImageSourceCreateWithURL((CFURLRef)imageUrl, NULL);

if (!imageSourceRef)
return nil;

NSDictionary *options = [NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithBool:NO], (NSString *)kCGImageSourceShouldCache,
nil];
CFDictionaryRef imageProperties = CGImageSourceCopyPropertiesAtIndex(imageSourceRef, 0, (CFDictionaryRef)options);
if (imageProperties) {
NSNumber *width = (NSNumber *)CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelWidth);
NSNumber *height = (NSNumber *)CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelHeight);
NSLog(@"Image dimensions: %@ x %@ px", width, height);
CFRelease(imageProperties);
}

问题是,这段代码对某些图像完美无缺,而对其他图像却表现得很奇怪。例如,对于我加载的一张图片,它显示宽度为 128 高度为 96 ,而正确的宽度高度为 4320 × 3240。

我不确定这里有什么问题,因为我所做的只是将图像加载到 CGImageSourceRef。 :(

最佳答案

raw 是指相机原始数据吗? (例如尼康 NEF 文件?)

据我所知,iOS 没有原始图像解析引擎。它唯一能做的就是加载嵌入的 JPEG 缩略图。您看到的可能是缩略图的大小,而不是完整原始图像的大小。

免责声明:我从未尝试在 iOS 中打开相机原始图像,因此我对 iOS 正在做什么的回答是基于我所读内容的不完整内存。

关于ios - 使用图像 I/O Objective-C 加载原始图像返回错误的分辨率,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37942942/

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