📜  Node.js GM whitePoint()函数

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

Node.js GM whitePoint()函数

whitePoint()函数是 GraphicsMagick 库中的一个内置函数,用于制作色度白点。该函数在成功时返回真值。

句法:

whitePoint(x, y)

参数:该函数接受上面提到的两个参数,如下所述:

  • x:此参数用于指定白点的 x 坐标。
  • y:此参数用于指定白点的 y 坐标。

返回值:此函数返回 GraphicsMagick 对象。

例子:

// Include gm library
var gm = require('gm');
  
// Import the image
gm(500, 200, 'black')
  
// Set the color for the stroke
.stroke("green", 3)
  
.background('green')
.font("Helvetica.ttf", 60)
  
.drawText(30, 160, "GeeksforGeeks!")
  
// Invoke whitePoint function with
// x, y as 250, 100 respectively. 
.whitePoint(250, 100)
  
// Process and write the image 
.write("whitePoint1.png", function (err) {
  if (!err) console.log('done');
});

输出:

参考:

  • http://www.graphicsmagick.org/GraphicsMagick.html#details-white-point
  • https://www.npmjs.com/package/gm