iPad图片加载限制的解决办法

发布于 2024-10-21 17:46:24 字数 152 浏览 1 评论 0原文

似乎 iPad 在某个时间点(大约 6MB)后停止在 HTML / JavaScript 应用程序中加载图像,之后应用程序中的所有图像都显示为空白或“?”。

如果使用 标签有问题,那么 JavaScript 中是否有解决方案或替代方案?

Seems like iPad stops loading Images in a HTML / JavaScript application after a certain point (around 6MB) after which all images in the application are shown as blank or '?'.

If using <img> tags is a problem, then is there a solution or alternative to this in JavaScript?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

年华零落成诗 2024-10-28 17:46:24

看来您可以使用画布标签。来自此来源

我找到了最简单的方法来修补我的
代码是将图像加载到
使用drawImage()的canvas标签。这
canvas 标签似乎不受
限制。

另一种解决方案是简单地将内容剪切为几页,每页的图像小于 6MB。这样,当您重新加载浏览器时,就会重置限制。

It appears you can use a canvas tag. From this source:

I found the easiest way to patch my
code was to load the image into a
canvas tag using drawImage(). The
canvas tag appears to be immune to the
limitation.

Another solution is to simply cut the content in several pages, each one with less than 6MB in images. That way when you reload the browser resets the limit.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文