节点 Jimp |旋转
简介 rotate()函数是 Nodejs | Jimp 中的一个内置函数,顺时针旋转图像,图像的尺寸保持不变。 语法:
rotate(r, mode, cb)
参数:
- r–该参数存储图像的旋转角度。
- 模式–这是存储缩放方法的可选参数。
- CB–这是编译完成时调用的可选参数。
输入图像:
步骤 1:设置环境
npm init -y
第二步:安装跳
npm install jimp --save
例 1:
java 描述语言
// npm install --save jimp
// import jimp library to the environment
var Jimp = require('jimp');
// User-Defined Function to read the images
async function main() {
const image = await Jimp.read
('https://media.geeksforgeeks.org/wp-content/uploads/20190328185307/gfg28.png');
// rotate Function having a rotation as 55
image.rotate(55)
.write('rotate1.png');
}
main();
console.log("Image Processing Completed");
输出:
示例 2:带模式和 cb(可选参数)
java 描述语言
// npm install --save jimp
// import jimp library to the environment
var Jimp = require('jimp');
// User-Defined Function to read the images
async function main() {
const image = await Jimp.read
('https://media.geeksforgeeks.org/wp-content/uploads/20190328185333/gfg111.png');
// rotate Function having rotation angle as 99, mode and callback function
image.rotate(99, Jimp.RESIZE_BEZIER, function(err){
if (err) throw err;
})
.write('rotate2.png');
}
main();
console.log("Image Processing Completed");
输出:
参考:T2https://www.npmjs.com/package/jimp
版权属于:月萌API www.moonapi.com,转载请注明出处