📌  相关文章
📜  imagemagick javascript代码示例

📅  最后修改于: 2022-03-11 15:03:30.597000             🧑  作者: Mango

代码示例3
im.identify('kittens.jpg', function(err, features){  if (err) throw err;  console.log(features);  // { format: 'JPEG', width: 3904, height: 2622, depth: 8 }});