Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在下载之前我需要知道图像尺寸。我通过阅读html响应的标题搜索并发现在.Net中是可能的! 关联
我可以在 iPhone 中做到这一点吗?如果是,如何?
谢谢
在下载图像之前,您无法获得图像的高度和宽度尺寸。在下面的委托方法中下载图像之前如何获取图像的大小是代码
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { float expSize = 0; expSize = response.expectedContentLength; }
其中 expSize 是图像的大小。