La función ImagickDraw::setTextKerning() es una función incorporada en PHP que se usa para establecer el kerning del texto que define el espacio entre el texto.
Sintaxis:
bool ImagickDraw::setTextKerning( float $kerning )
Parámetros: Esta función acepta un solo parámetro $kerning que contiene el kerning del texto.
Valor de retorno: esta función devuelve VERDADERO en caso de éxito.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickDraw::setTextKerning() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the text Kerning $draw->setTextKerning(10); // Get the text Kerning $textKerning = $draw->getTextKerning(); echo $textKerning; ?>
Producción:
10
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(800, 250, 'black'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the fill color $draw->setFillColor('red'); // Set the text kerning $draw->setTextKerning(30); // Set the font size $draw->setFontSize(50); // Annotate a text $draw->annotation(50, 200, 'GeeksforGeeks'); // 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.settextkerning.php