La función imagestringup() es una función incorporada en PHP que se usa para dibujar una string verticalmente.
Sintaxis:
bool imagestringup( $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 usa 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 devuelto: esta función devuelve verdadero en caso de éxito o falso en caso de error.
Los siguientes programas ilustran la función imagestringup() en PHP:
Programa 1:
<?php // Create a 400*300 image $im = imagecreatetruecolor(400, 300); // Set the background color of image $background_color = imagecolorallocate($im, 0, 153, 0); // Fill background with above selected color imagefill($im, 0, 0, $background_color); // Write the text $textcolor = imagecolorallocate($im, 255, 255, 255); imagestringup($im, 6, 195, 200, 'GeeksforGeeks', $textcolor); // Output the picture to the browser header('Content-type: image/png'); imagepng($im); ?>
Producción:
Programa 2:
<?php // Create a 400*300 image $im = imagecreatetruecolor(400, 300); // Set the background color of image $background_color = imagecolorallocate($im, 0xFF, 0xFF, 0xFF); // Fill background with above selected color imagefill($im, 0, 0, $background_color); // Write the text $textcolor = imagecolorallocate($im, 0, 153, 0); imagestringup($im, 6, 195, 200, 'GeeksforGeeks', $textcolor); // Output the picture to the browser header('Content-type: image/png'); imagepng($im); ?>
Producción:
Referencia: http://php.net/manual/en/function.imagestringup.php