UIWebview无法显示一些大尺寸图片?
UIWebview 可以处理的最大尺寸图像是多少? 原始图像大小为:宽度700像素,高度6900像素,并且uiwebview不显示任何内容。
what's biggest size image can UIWebview handle?
the origin image size is: width 700 pixels, height 6900 pixels, And uiwebview display nothing.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
iOS 有 3MB 大小限制。图片尺寸(宽x高)必须小于3 * 1024*1024
iOS has the 3MB size limitation. the image size (width x height) must less than 3 * 1024*1024
我通过一些测试发现 html5 画布的限制为 768*4096,即每像素 1 字节为 3MB。对于图像强制执行相同的分辨率,因为重要的不是原始图像大小,而是在屏幕上渲染的位图的大小。
I've discovered from some testing a limit on my html5 canvasses of 768*4096, or 3MB at 1 byte per pixel. The same resolution is enforced for images, as its not the original image size that matters, but the size of the bitmap that is rendered on the screen..