我们有像
这样的图像路径cdvfile://localhost/persistent/DCIM/Camera/1395167011485.jpg.
OR
file://localhost/persistent/DCIM/Camera/1395167011485.jpg.
我们需要使用此路径获取图像详细信息。图像详细信息,如图像名称,高度,宽度。我们正在开发Cordova
移动应用程序。请指导我们。我们需要使用哪些插件来获取详细信息。
答案 0 :(得分:2)
您不需要特定的插件,但可以使用file transfer来帮助它。像下面这样的东西可以正常工作:
var image = document.createElement('img');
image.src = "img/My_Image.png";
console.log(image.height);
console.log(image.width);
答案 1 :(得分:1)
您可能会发现this javascript exif library有用。