gpt4 book ai didi

javascript - 使用javascript的图像Dpi

转载 作者:行者123 更新时间:2023-12-04 02:25:40 32 4
gpt4 key购买 nike

我可以使用 javascript 知道图像 dpi(水平和垂直分辨率)吗?

最佳答案

您可以使用 Blueimp 的加载图像库中的 EXIF 解析扩展,https://github.com/blueimp/JavaScript-Load-Image#user-content-meta-data-parsing .

loadImage.parseMetaData(file, function(meta) {
if (!meta.exif) { return; }

var resX = meta.exif.get('XResolution');
var resY = meta.exif.get('YResolution');
});

还有 exif-js 库( https://github.com/jseidelin/exif-js ),但我不能保证它的工作原理(还没有使用过)。

关于javascript - 使用javascript的图像Dpi,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1839983/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com