如何在 Node Jimp 中旋转图像?
NodeJS – rotate() 是一个内置函数,用于旋转图像。图像顺时针旋转,图像尺寸保持不变,并且不会对其进行任何更改。
语法
rotate ( r, mode, cb )
rotate() 参数的定义
r – 用于存储图像将要旋转的角度。
mode – 用于存储图像的缩放方法。这是一个可选参数。
cb – 这是一个可选参数,可以在编译完成后调用。
输入图像
使用 Node JIMP – ROTATE()
在继续使用 rotate() 函数之前,请检查以下语句是否已执行以设置环境。
npm init -y // 初始化 Node 环境
npm install jimp --save // 安装 jimp 依赖项
创建一个 rotate.js 文件,并将以下代码片段复制粘贴到其中。
使用 node rotate.js 运行代码。
注意 – 方法名称应与 JS 文件名匹配。只有这样,它才能调用所需的方法。
示例
const Jimp = require('jimp') ; async function rotate() { // Reading Image const image = await Jimp.read ('/home/jimp/tutorials_point_img.jpg'); // Checking if any error occurs while rotating image image.rotate(300, function(err){ if (err) throw err; }) .write('/home/jimp/rotate.jpg'); } rotate(); console.log("Image is processed successfully");
输出
使用 Node JIMP – ROTATE() 以及 'cb' 可选参数
示例
const Jimp = require('jimp') ; async function rotate() { // Reading Image const image = await Jimp.read ('/home/jimp/tutorials_point_img.jpg'); // Checking if any error occurs while rotating image image.rotate(159, Jimp.RESIZE_BEZIER, function(err){ if (err) throw err; }) .write('/home/mayankaggarwal/mysql-test/rotate.jpg'); } rotate(); console.log("Image is processed successfully");
输出
广告