将imagemagick用于nodejs,我想用x-y按列和行重命名输出。
我可以在终端上做,但我如何在我的脚本上实现这一点。
终端示例:
March, 01 2008 00:00:00
convert img.jpg -crop 512x512 -set filename:tile ./tiles/pano-%[fx:page.x/256]-%[fx:page.y/256] %[filename:tile]-0.jpg
或者你可以建议我另一种方法来平铺我的形象。
答案 0 :(得分:0)
好的,我找到了解决方案,如果他们需要,可能对其他人有帮助。
var args = [
query.url+".jpg", // image location
"-crop", // will crop the tiles
"512x512",
"-set",
"filename:tile",
query.url+"/pano-%[fx:page.x/512]-%[fx:page.y/512]",
"%[filename:tile]-0.jpg"
];