admin管理员组文章数量:1340301
I'm trying to resize and crop an image in node.js
I've been using graphicsmagick:
code is as follows:
gm(path)
.resize(width, height)
.crop(50, 50, left, top)
.write(path, function(err){})
It's very simple. I have no idea how to use canvas, what's the equivalent in canvas?
Thanks.
I'm trying to resize and crop an image in node.js
I've been using graphicsmagick:
code is as follows:
gm(path)
.resize(width, height)
.crop(50, 50, left, top)
.write(path, function(err){})
It's very simple. I have no idea how to use canvas, what's the equivalent in canvas?
Thanks.
Share Improve this question asked May 25, 2011 at 16:29 HarryHarry 55.1k76 gold badges187 silver badges270 bronze badges 1- why MUST you use node-canvas? – jcolebrand Commented May 25, 2011 at 17:22
1 Answer
Reset to default 15For some reason, this signature is never used in examples:
context.drawImage(img, sx, sy, sw, sh, dx, dy, dw, dh);
- img = the image element
- sx = source x
- sy = source y
- sw = source width
- sh = source height
- dx = destination x
- dy = destination y
- dw = destination width
- dh = destination height
Crop using sx, sy, sw, sh
Resize using dw, dh
本文标签: javascriptnodecanvas image manipulationStack Overflow
版权声明:本文标题:javascript - node-canvas image manipulation - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743631309a2513154.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论