本文主要是介绍nodejs 第三方库 exiftool-vendored,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
exiftool-vendored
是一款可以帮助你快捷修改图片信息的第三方库。如果你想要批量修改图片信息的话,那么它是一个不错的选择。
1.导入第三方库
在控制台中执行下面代码即可。
npm install exiftool-vendored --save
2.获取信息
这里给出例子。
const { exiftool } = require('exiftool-vendored');( async ()=>{const url=" The url of your image. ";const tags=await exiftool.read(url);exiftool.end();console.log(tags);return;
} )();
注意代码最后一定要有 exiftool.end()
这一语句,否则程序不会自己结束运行。
3.修改信息
这里以修改 FileName
属性为例。
const { exiftool } = require('exiftool-vendored');( async ()=>{const url=" The url of your image. ";const config={"FileName":"NewFile.jpg"};await exiftool.write(url,config);exiftool.end();return;
} )();
如果需要修改其他的属性,可以根据查询数据得到的结果进行定向修改。
如果是要修改时间类型的数据的话,需要导入一个新类叫 ExifDateTime
,示例如下。
const { ExifDateTime } = require('exiftool-vendored');const now=new Date();
const config=new ExifDateTime(now.getFullYear(),now.getMonth()+1,now.getDate(),now.getHours(),now.getMinutes(),now.getSeconds(),undefined,undefined,now.toLocaleString().replaceAll('/',':'),undefined,false,undefined
);
这篇关于nodejs 第三方库 exiftool-vendored的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!