gpt4 book ai didi

node.js - 在nodejs中使用gm的圆角

转载 作者:搜寻专家 更新时间:2023-10-31 23:54:57 24 4
gpt4 key购买 nike

我正在尝试使用 nodejs 处理图像来对图像进行圆角处理。我觉得最好的库是 gm 但由于我不能使用 gm 我必须使用 imagick 适配器

var gm = gm.subClass({ imageMagick: true });gm("img.jpg").autoOrient().resize(50, 50).write('/path', callback);

从这里我无法弄清楚如何获得圆角。我不想在 css 中执行此操作,因为它是针对移动应用程序和客户端大小的,因此会滞后。边缘必须光滑。

最佳答案

imagemagick.convert([
"-size", width + "x" + height,
"xc:none",
"-fill", dest,
"-draw",
"circle " + (width / 2) + "," + (width / 2) + " " + (width / 2) + ",1",
dest
], function(err) {
return done(err);
});

关于node.js - 在nodejs中使用gm的圆角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22665069/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com