您的位置:首页 > 理论基础 > 计算机网络

IOS获取网络图片属性

2013-04-17 16:42 344 查看
- (CGSize)getImageSizeWithURL:(NSURL *)url
{
CGImageSourceRef imageSource = CGImageSourceCreateWithURL((CFURLRef)url, NULL);
CGFloat width = 0.0f, height = 0.0f;

if (imageSource)
{
CFDictionaryRef imageProperties = CGImageSourceCopyPropertiesAtIndex(imageSource, 0, NULL);

if (imageProperties != NULL)
{
CFNumberRef widthNum  = CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelWidth);
if (widthNum != NULL) {
CFNumberGetValue(widthNum, kCFNumberFloatType, &width);
}

CFNumberRef heightNum = CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelHeight);
if (heightNum != NULL) {
CFNumberGetValue(heightNum, kCFNumberFloatType, &height);
}

CFRelease(imageProperties);
}
CFRelease(imageSource);
NSLog(@"Image dimensions: %.0f x %.0f px", width, height);
}
return CGSizeMake(width, height);
}


#import <ImageIO/ImageIO.h>
导入 ImageIO框架
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: