La función ImagickDraw::getTextInterwordSpacing() es una función incorporada en PHP que se usa para obtener el espacio entre palabras del texto, lo que significa espacio entre cada palabra. El mayor número contiene el mayor espacio. El espaciado predeterminado es 0.
Sintaxis:
float ImagickDraw::getTextInterwordSpacing( void )
Parámetros: Esta función no acepta ningún parámetro.
Valor de retorno: esta función devuelve un valor flotante que contiene el espacio entre palabras del texto.
Los siguientes programas ilustran la función ImagickDraw::getTextInterwordSpacing() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the text interword spacing $textInterwordSpacing = $draw->getTextInterwordSpacing(); echo $textInterwordSpacing; ?>
Producción:
0 // Which is the default value
Programa 2:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Get the text interword spacing $draw->setTextInterWordSpacing(30); // Get the text interword spacing $textInterwordSpacing = $draw->getTextInterwordSpacing(); echo $textInterwordSpacing; ?>
Producción:
30
Programa 3:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, '#c0eb34'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the font size $draw->setFontSize(20); // Annotate a text $draw->annotation(50, 80, "The text interterword spacing here is " . $draw->getTextInterwordSpacing()); // Set the text interword spacing $draw->setTextInterwordSpacing(20); // Annotate a text $draw->annotation(50, 120, "The text interterword spacing here is " . $draw->getTextInterwordSpacing()); // Set the text interword spacing $draw->setTextInterwordSpacing(35); // Annotate a text $draw->annotation(50, 160, "The text interterword spacing here is " . $draw->getTextInterwordSpacing()); // 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.gettextinterwordspacing.php