📜  节点吉普 |庄稼

📅  最后修改于: 2022-05-13 01:56:27.625000             🧑  作者: Mango

节点吉普 |庄稼

介绍
crop()函数是 Nodejs 中的内置函数| Jimp 用于以指定的坐标和尺寸裁剪图像。
句法:

crop( x, y, w, h, cb )

范围:

  • x - 此参数存储裁剪的 x 坐标。
  • y - 此参数存储裁剪的 y 坐标。
  • w - 此参数存储裁剪图像的宽度。
  • h - 此参数存储裁剪图像的高度。
  • cb – 这是编译完成时调用的可选参数。

输入图像:

示例 1:

// 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('../gfg.png');
// crop function having crop co-ordinates
// along with height and width
  image.crop(10, 10, 150, 120) 
  .write('crop1.png');
}
  
main();
  console.log("Image Processing Completed");

输出:

示例 2:使用 cb(可选参数)

// 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('../gfg1.png');
// crop function using callback function
  image.crop(20, 20, 100, 100, function(err){
    if (err) throw err;
  })
  .write('crop2.png');
}
  
main();
  console.log("Image Processing Completed");

输出:

参考: https://www.npmjs.com/package/jimp