美文网首页
获取网络图片尺寸

获取网络图片尺寸

作者: __Gavin__ | 来源:发表于2017-08-29 11:06 被阅读0次
    通过服务器获取

    后台开发人员在返回图片地址的同时,返回图片尺寸比例数据。

    利用ImageIO创建CGImageSourceRef对象

    此方法会下载图片,且同步执行。

    CGImageSourceRef imageSource = CGImageSourceCreateWithURL((CFURLRef)[NSURL URLWithString:fileurl], NULL);
        CGFloat width = 0, height = 0;
        
        if (imageSource)
        {
            CFDictionaryRef imageProperties = CGImageSourceCopyPropertiesAtIndex(imageSource, 0, NULL);
            
            if (imageProperties != NULL)
            {
                CFNumberRef widthNum  = CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelWidth);
                if (widthNum != NULL) {
                    CFNumberGetValue(widthNum, kCFNumberFloat64Type, &width);
                }
                
                CFNumberRef heightNum = CFDictionaryGetValue(imageProperties, kCGImagePropertyPixelHeight);
                if (heightNum != NULL) {
                    CFNumberGetValue(heightNum, kCFNumberFloat64Type, &height);
                }
                CFRelease(imageProperties);
            }
            CFRelease(imageSource);
        }
    

    相关文章

      网友评论

          本文标题:获取网络图片尺寸

          本文链接:https://www.haomeiwen.com/subject/hdynrxtx.html