图像操作是 Web 开发的一个重要方面,有效地调整图像大小对于优化用户体验和网站性能至关重要。 Flash 传统上用于调整图像大小,但随着 JavaScript 的进步,现在可以在客户端调整图像大小,而无需额外的插件。
对于寻求开源解决方案来调整图像大小的开发人员JavaScript,以下资源提供了强大且可靠的选项:
Github Gist:
此要点提供了图像调整大小算法的 ES6 和 JavaScript 版本:https:// gist.github.com/dcollien/312bce1270a5f511bf4a.
用法:
document.getElementById('select').onchange = function(evt) { ImageTools.resize(this.files[0], { width: 320, // maximum width height: 240 // maximum height }, function(blob, didItResize) { // didItResize will be true if it managed to resize it, otherwise false (and will return the original file as 'blob') document.getElementById('preview').src = window.URL.createObjectURL(blob); // you can also now upload this blob using an XHR. }); };
功能:
以上是如何在不使用插件的情况下使用 JavaScript 调整客户端图像大小?的详细内容。更多信息请关注PHP中文网其他相关文章!