La función ImagickDraw::setTextInterlineSpacing() es una función incorporada en PHP que se utiliza para establecer el espaciado entre líneas del texto.
Sintaxis:
bool ImagickDraw::setTextInterlineSpacing( float $spacing )
Parámetros: Esta función acepta un único parámetro $espaciado que contiene el espaciado entre líneas del texto.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Los siguientes programas ilustran la función ImagickDraw::setTextInterlineSpacing() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the text interline spacing $draw->setTextInterLineSpacing(15); // Get the text interline spacing $textInterlineSpacing = $draw->getTextInterLineSpacing(); echo $textInterlineSpacing; ?>
Producción:
15
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'white'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the fill color $draw->setFillColor('green'); // Set the font size $draw->setFontSize(40); // Set the text interline spacing $draw->setTextInterLineSpacing(40); // Annotate a text $draw->annotation(350, 70, "Geeks \nfor\nGeeks"); // Render the draw commands $imagick->drawImage($draw); // Show the output $imagick->setImageFormat('png'); header("Content-Type: image/png"); echo $imagick->getImageBlob(); ?>
Producción:
Referencia: https://www.php.net/manual/en/imagickdraw.settextinterlinespacing.php