PHP | función imagestring()

La función imagestring() es una función incorporada en PHP que se usa para dibujar la string horizontalmente. Esta función dibuja la string en la posición dada.

Sintaxis:

bool imagestring( $image, $font, $x, $y, $string, $color )

Parámetros: esta función acepta seis parámetros, como se mencionó anteriormente y se describe a continuación:

  • $imagen: la función imagecreatetruecolor() se usa para crear una imagen en blanco en un tamaño determinado.
  • $font: este parámetro se usa para establecer el tamaño de la fuente. La fuente incorporada en la codificación latin2 puede ser 1, 2, 3, 4, 5 u otros identificadores de fuente registrados con la función imageloadfont().
  • $x: este parámetro se utiliza para contener la coordenada x de la esquina superior izquierda.
  • $y: este parámetro se usa para mantener la coordenada y de la esquina superior izquierda.
  • $string: este parámetro se utiliza para contener la string que se va a escribir.
  • $color: este parámetro se utiliza para mantener el color de la imagen.

Valor de retorno: esta función devuelve VERDADERO en caso de éxito o FALSO en caso de error.

Los siguientes programas ilustran la función imagestring() en PHP.
Programa 1:

<?php
   
// Create the size of image or blank image
$image = imagecreate(500, 300);
   
// Set the background color of image
$background_color = imagecolorallocate($image, 0, 153, 0);
   
// Set the text color of image
$text_color = imagecolorallocate($image, 255, 255, 255);
   
// Function to create image which contains string.
imagestring($image, 5, 180, 100,  "GeeksforGeeks", $text_color);
imagestring($image, 3, 160, 120,  "A computer science portal", $text_color);
   
header("Content-Type: image/png");
   
imagepng($image);
imagedestroy($image);
?>

Producción:
create image function

Programa 2:

<?php
  
// Create the size of image or blank image
$image = imagecreate(500, 300);
  
// Set the background color of image
$background_color = imagecolorallocate($image, 255, 255, 255);
  
// Set the text color of image
$text_color = imagecolorallocate($image, 0, 153, 0);
  
// Function to create image which contains string.
imagestring($image, 5, 50, 100, 
     "GeeksforGeeks: A computer science portal", $text_color);
  
header("Content-Type: image/png");
  
imagepng($image);
imagedestroy($image);
?>

Producción:
imagestring function

Artículos relacionados:

Referencia: http://php.net/manual/en/function.imagestring.php

Publicación traducida automáticamente

Artículo escrito por Mahadev99 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 *