但我需要使用Thumbor作为缩略图服务.但是通过使用下面的thumbor URL
str_thumb_URL0 =@"http://thumb.dot-share.com/unsafe/1024x556/smart/http://52.74.11.56/photos/2015/07/1438154558488.jpg"; [cell.imageVIEw sd_setimageWithURL:[NSURL URLWithString:str_thumb_URL0] placeholderImage:[UIImage imagenamed:@"placeholder.png"] completed:^(UIImage image,NSError error,SDImageCacheType cacheType,NSURL *imageURL) { NSLog(@"%@",error); }];
Xcode生成此错误
“Error Domain=SDWebImageErrorDomain Code=0 “Downloaded image has 0
pixels” UserInfo=0x7f8e35477360 {NSLocalizedDescription=Downloaded
image has 0 pixels}”
注意:上面的thumbor URL在除SdWebImage之外的大多数其他WebImage库中都有效
请帮我解决这个问题
解决方法 问题在于图像URL的服务器主机名.解决方案是: –
您可以使用一个简单的命令解决此问题:
总结echo “127.0.0.1 $HOSTname” | sudo tee -a /etc/hosts
以上是内存溢出为你收集整理的使用Thumbor第三方调整图像大小时,ios SdWebImage图像不会显示全部内容,希望文章能够帮你解决使用Thumbor第三方调整图像大小时,ios SdWebImage图像不会显示所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)