zhangyuanwei / node-images

Cross-platform image decoder(png/jpeg/gif) and encoder(png/jpeg) for Nodejs
https://npmjs.org/package/images
MIT License
1.55k stars 205 forks source link

复制图像坐标问题 #186

Open pren2016 opened 5 years ago

pren2016 commented 5 years ago

resolve(Images(Images(filePath), 200, 200, 500, 500).encode('jpg'));

如上代码,复制的图片坐标始终是从左上角(0,0)开始。(200,200)无效。 希望大佬解决!

pppluto commented 5 years ago

有解决方法没

gxdyxh commented 4 years ago

同问

Hareis commented 4 years ago

是的呢 我也遇到这个问题 怎么调整都没有解决办法

UrBetsy commented 4 years ago

同问

JackTam1993 commented 4 years ago

同问

JYCFM commented 3 years ago

@Hareis @pppluto @JackTam1993 @UrBetsy @ren-p 获取buffer数据和截图文件的两种方式,我这样就可以了 images(400, 400).draw(images(images("./avatar3.jpg"), 800, 100, 400, 400), 0, 0).encode("jpg") images(400, 400).draw(images(images("./avatar3.jpg"),800, 100, 400, 400), 0, 0).save("output.jpg")