Node.js Función GM drawPolygon()

La función drawPolygon() es una función incorporada en la biblioteca GraphicsMagick que se usa para dibujar polígonos con coordenadas específicas. La función devuelve el valor verdadero en caso de éxito.

Sintaxis:

drawPolygon( [x0, y0], ... ,[xn, yn] )

Parámetros: esta función acepta la array de coordenadas x e y.

Valor de retorno: esta función devuelve el objeto GraphicsMagick.

Ejemplo 1:

// Include gm library
var gm = require('gm');
  
// Import the image
gm(500, 200, 'white')
  
// Set the color for the stroke
.stroke("green", 3)
  
// Set font as 'Helvetica'
.font("Helvetica.ttf", 60)
  
// Use drawText() Function
.drawText(30, 160, "GeeksforGeeks!")
  
// Invoke drawPolygon function
// with array of points
.drawPolygon([12, 60], [45, 79], 
        [80, 120], [300, 32], [300, 98])
  
// Process and write the image 
.write("drawPolygon1.png", function (err) {
  if (!err) console.log('done');
});

Producción:

Ejemplo 2:

// Include gm library
var gm = require('gm');
  
// Import the image
gm('https://media.geeksforgeeks.org/wp-content/uploads/20200227114541/1406-3.png')
  
// Set the color for the stroke
.stroke("#000000", 5)
  
// Invoke drawPolygon function with array of points
.drawPolygon([12, 60], [45, 79], [80, 120], [300, 32])
  
// Process and write the image 
.write("drawPolygon1.png", function (err) {
  if (!err) console.log('done');
});

Producción:

Referencia:

Publicación traducida automáticamente

Artículo escrito por sarthak_ishu11 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *