我有一组图像,我希望使用https://github.com/aheckmann/gm合并为1。
由于元素数量不固定,我正在使用:
var paraArray = [];
.... push the path of the images to the array.
gm('./sprites/tn_1.png').append.apply(this,paraArray)
给出错误
/用户/..../ node_modules /克/ LIB / args.js:64 this.addSrcFormatter(function(src){^ TypeError:Object#没有 方法'addSrcFormatter'在追加 (/用户/..../ node_modules /克/ LIB / args.js:64:12)
如果我打电话
gm('./sprites/tn_1.png').append('./sprites/tn_2.png','./sprites/tn_3.png','./sprites/tn_4.png'),
效果很好。有什么想法吗?