我将图像上传到 S3 服务器上,并在 express上使用knox 。
我希望用户可以裁剪此个人资料图片的图像(例如在 facebook 上)
我听说过用于用户界面的Jcrop和用于服务器的imagemagick 。对您来说,最好的方法是什么?
对不起,我的英语不好。
您可以尝试为 node.js https://github.com/aheckmann/gm使用不错的库 GraphicsMagick
这是一个测试某些功能的链接,等等 http://aheckmann.github.com/gm/
var gm = require('gm')
, resizeX = 200
, resizeY = 400
gm('/path/to/image.jpg')
.resize(resizeX, resizeY)
.write(response, function (err) {
if (err) ...
});