La función ImagickDraw::getFontSize() es una función incorporada en PHP que se usa para obtener el tamaño de fuente que se usa al anotar con texto.
Sintaxis:
float ImagickDraw::getFontSize( 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 tamaño de fuente.
Excepciones: esta función lanza ImagickException en caso de error.
Los siguientes programas ilustran la función ImagickDraw::getFontSize() en PHP:
Programa 1:
<?php // Create a new ImagickDraw object $draw = new ImagickDraw(); // Set the font Size $draw->setFontSize(45); // Get the font Size $fontSize = $draw->getFontSize(); echo $fontSize; ?>
Producción:
45
Nota: El tamaño de fuente predeterminado es 12.
Programa 2:
<?php // Create a new imagick object $imagick = new Imagick(); // Create a image on imagick object $imagick->newImage(600, 250, 'green'); // Create a new ImagickDraw object $draw = new ImagickDraw(); // Annotate a text $draw->annotation(50, 100, 'The Font size here is default.' . $draw->getFontSize() . '.'); // Set the font size $draw->setFontSize(50); // Annotate a text $draw->annotation(50, 200, 'The Font Size here is ' . $draw->getFontSize() . '.'); // 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.getfontsize.php