如何从移动文件夹位置获取图像详细信息

how to get image Details form mobile folder location

我们有像这样的图片路径

cdvfile://localhost/persistent/DCIM/Camera/1395167011485.jpg.

file://localhost/persistent/DCIM/Camera/1395167011485.jpg.

我们需要使用此 path.Image 图像名称、高度等详细信息,width.We 正在为我们开发 Cordova 移动 apps.Please 指南。我们需要哪个插件用于详细信息。

您不需要特定的插件,但您可以使用 file transfer 来帮助它。像下面这样的东西可以正常工作:

var image = document.createElement('img');
image.src = "img/My_Image.png";
console.log(image.height);
console.log(image.width);

您可能会发现 this javascript exif library 有用。