Nodejs图像按坐标裁剪
Nodejs image crop by coordinates
有什么方法可以在裁剪图像时给出 x,y 坐标。
我目前使用的是Imagemagick
im.crop({
srcPath: upload_path+media_file_name,
dstPath: upload_path+"thumb_"+media_file_name,
width: 350,
height: 210,
quality: 1,
gravity: 'Center'
}, function(err, stdout, stderr){
};
此代码有效,但我没有找到 x
、y
坐标。以下输入我想用于图像裁剪
height:360
width:360
x:180
y:300
我不会node,但是你可以使用原始接口吗?它看起来像
im.convert(['inputimage.jpg','-crop','350x200+x+y','output.jpg'],
function(...)
为 x
和 y
输入您自己的数字。
有什么方法可以在裁剪图像时给出 x,y 坐标。
我目前使用的是Imagemagick
im.crop({
srcPath: upload_path+media_file_name,
dstPath: upload_path+"thumb_"+media_file_name,
width: 350,
height: 210,
quality: 1,
gravity: 'Center'
}, function(err, stdout, stderr){
};
此代码有效,但我没有找到 x
、y
坐标。以下输入我想用于图像裁剪
height:360
width:360
x:180
y:300
我不会node,但是你可以使用原始接口吗?它看起来像
im.convert(['inputimage.jpg','-crop','350x200+x+y','output.jpg'],
function(...)
为 x
和 y
输入您自己的数字。