PHP | Función ImagickDraw setTextAntialias()

La función ImagickDraw::setTextAntialias() es una función incorporada en PHP que se usa para controlar si el texto está suavizado. El texto está suavizado por defecto.

Sintaxis:

bool ImagickDraw::setTextAntialias( $antiAlias )

Parámetros: Esta función acepta un único parámetro $antiAlias ​​que se utiliza para almacenar la señal booleana, es decir, VERDADERO/FALSO.

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

Los siguientes programas ilustran la función ImagickDraw::setTextAntialias() 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(50);
  
// Set the Text Antialias
$draw->setTextAntialias(false);
  
// Set the text to be added
$draw->annotation(50, 75, "Gfg!");
  
// Create new Imagick object 
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(500, 160, 'black');
  
// 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:
setTextAntialias

Programa 2:

<?php
  
// Create an ImagickDraw object
$draw = new ImagickDraw();
  
// Set the image filled color 
$draw->setFillColor('orange');
  
// Set the font size
$draw->setFontSize(50);
  
// Set the TextAntialias function
$draw->setTextAntialias(true);
  
// Set the text to be added
$draw->annotation(5, 75, "Gfg!");
  
// Set the TextAntialias function
$draw->setTextAntialias(false);
  
// Set the text to be added
$draw->annotation(105, 75, "Gfg!");
  
// Create new Imagick object
$imagick = new Imagick();
  
// Set the image dimensions
$imagick->newImage(300, 160, 'green');
  
// 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:
setTextAntialias

Referencia: http://php.net/manual/en/imagickdraw.settextantialias.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 *