PHP | Función ImagickDraw setGravity()

La función ImagickDraw::setGravity() es una función incorporada en PHP que se usa para establecer la gravedad de la ubicación del texto al anotar con texto.

Sintaxis:

bool ImagickDraw::setGravity( $gravity )

Parámetros: esta función acepta un solo parámetro $gravity que se usa para mantener el valor de la gravedad como GRAVITY_ constante.

La lista de constantes de GRAVEDAD se da a continuación:

  • imagick::GRAVITY_NORTHWEST (entero)
  • imagick::GRAVITY_NORTH (entero)
  • imagick::GRAVITY_NORTHEAST (entero)
  • imagick::GRAVITY_WEST (entero)
  • imagick::GRAVITY_CENTER (entero)
  • imagick::GRAVITY_EAST (entero)
  • imagick::GRAVITY_SOUTHWEST (entero)
  • imagick::GRAVITY_SOUTH (entero)
  • imagick::GRAVITY_SOUTHEAST (entero)

Valor devuelto: esta función no devuelve ningún valor.

Los siguientes programas ilustran la función ImagickDraw::setGravity() en PHP:

Programa 1:

<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
  
// Set the image filled color 
$draw->setFillColor('Green');
  
// Set the Font Size
$draw->setFontSize(30);
  
// Set the Gravity Position
$draw->setGravity(5);
  
// Set the font family
$draw->setFontFamily('Ani');
  
// Set the text to be added
$draw->annotation(30, 40, "GeeksForGeeks");
  
// Create new Imagick object 
$imagick = new Imagick();'
  
// Set the image dimension
$imagick->newImage(300, 150, 'white');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

Producción:
setGravity

Programa 2:

<?php
  
// Create an ImagickDraw object 
$draw = new ImagickDraw();
  
// Set the image filled color 
$draw->setFillColor('green');
  
// Set the font size
$draw->setFontSize(60);
  
// Set the Gravity Position
$draw->setGravity(2);
  
// Set the text decoration
$draw->setTextDecoration(4);
  
// Set the text to be added
$draw->annotation(50, 75, "GeeksForGeeks");
  
// Create new Imagick object  
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(600, 160, 'white');
  
// Set the image format
$imagick->setImageFormat("png");
  
// Draw the image
$imagick->drawImage($draw);
header("Content-Type: image/png");
  
// Display the image
echo $imagick->getImageBlob();
?>

Producción:
setGravity

Referencia: http://php.net/manual/en/imagickdraw.setgravity.php

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 *