Node.js GM rotate()函数
rotate()函数是 GraphicsMagick 库中的一个内置函数,用于将图像旋转指定角度。该函数在成功时返回真值。
句法:
rotate( angle, color )
参数:此函数接受上面提到的两个参数,如下所述:
- 角度:此参数存储角度的值。
- color:此参数将颜色的值存储为要设置为背景颜色的字符串。
返回值:此函数返回添加了图像的 GraphicsMagick 对象。
原图:
示例 1:
// Include gm library
var gm = require('gm');
// Import the image
gm('gfg.png')
// Invoke rotate function with background
// color as #545651 and rotation angle as
// 78 Degrees clockwise.
.rotate("#545651", 78)
// Process and Write the image
.write("rotate1.png", function (err) {
if (!err) console.log('done');
});
输出:
示例 2:
// Include gm library
var gm = require('gm');
// Import the image
gm('gfg.png')
// Set stroke color
.stroke("#fe1232")
// Set fill color
.fill("#1200ff")
// Draw Rectangle using drawRectangle function
.drawRectangle(10, 2, 130, 30, 1, 2)
//Invoke Sharpen Function with radius as 10
.sharpen(10, 4)
// Invoke rotate function with background
// color as #67f123 and rotation angle as
// 45 Degrees clockwise.
.rotate("#67f123", 45)
// Process and Write the image
.write("rotate2.png", function (err) {
if (!err) console.log('done');
});
输出:
参考:
- http://www.graphicsmagick.org/GraphicsMagick.html#details-rotate
- https://www.npmjs.com/package/gm