nodejsでimagemagickを使用して、出力の名前をxy by columnとrowsに変更したいと思います。
私は端末で行うことができますが、これをスクリプトにも実装するにはどうすればよいですか。
端末例:
convert img.jpg -crop 512x512 -set filename:tile ./tiles/pano-%[fx:page.x/256]-%[fx:page.y/256] %[filename:tile]-0.jpg
var args = [
query.url+".jpg", // image
"-crop", // will crop the tiles
"512x512", // size of tile will be created
query.url+"/output.jpg" // Image output name.
];
im.convert(args, function(err) {
if(err) { throw err; }
res.end("Image crop complete");
});
}
または、画像を並べて表示する別の方法を教えてください。