johnil / JFImagePickerController

高性能多选图片库
MIT License
587 stars 77 forks source link

thumbWithAsset方法会返回图片两次 #8

Open shuaiyinoo opened 8 years ago

shuaiyinoo commented 8 years ago

[[JFImageManager sharedManager] thumbWithAsset:asset resultHandler:^(UIImage *result) { //do something }];

这个方法会返回图片两次 第一次返回略缩图 第二次返回 大图 如何判断是大图还是略缩图

shuaiyinoo commented 8 years ago

UIImageView *imgV = [[UIImageView alloc] initWithImage:result]; int imgW = imgV.image.size.width; int imgH = imgV.image.size.height; if (imgW == imgH && imgW == 125) { //返回的是略缩图 }

判断宽高的大小是否都等于125 就可以知道是不是小图片了

Li-Yudong commented 7 years ago

有时候就走一遍........根本取不到大图......这个三方问题很多很多!!!醉醉的了