PHP | ImagickDraw getFontSize() Function Last Updated : 23 Dec, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The ImagickDraw::getFontSize() function is an inbuilt function in PHP which is used to get the font pointsize used when annotating with text. Syntax: float ImagickDraw::getFontSize( void ) Parameters: This function doesn’t accept any parameter. Return Value: This function returns a float value containing the font size. Exceptions: This function throws ImagickException on error. Below given programs illustrate the ImagickDraw::getFontSize() function in PHP: Program 1: php <?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; ?> Output: 45 Note: The default font-size is 12. Program 2: php <?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(); ?> Output: Reference: https://www.php.net/manual/en/imagickdraw.getfontsize.php Comment More infoAdvertise with us Next Article PHP | GmagickDraw getfontsize() Function G gurrrung Follow Improve Article Tags : Web Technologies PHP PHP-function PHP-Imagick Similar Reads PHP | GmagickDraw getfontsize() Function The Gmagick::getfontsize() function is an inbuilt function in PHP which is used to return the font pointsize. Syntax: public GmagickDraw::getfontsize( void )  Parameters: This function does not accept any parameter. Return Value: This function returns the font pointsize associated with the current 2 min read PHP | ImagickDraw getFont() Function The ImagickDraw::getFont() function is an inbuilt function in PHP which is used to get the string specifying the font used when annotating with text. Syntax: string ImagickDraw::getFont( void ) Parameters: This function doesnât accepts any parameters. Return Value: This function returns an string va 2 min read PHP | ImagickDraw getFontStyle() Function The ImagickDraw::getFontStyle() function is an inbuilt function in PHP which is used to get the font style used when annotating with text. Syntax: int ImagickDraw::getFontStyle( void ) Parameters: This function doesnât accepts any parameters. Return Value: This function returns an integer value corr 2 min read PHP | GmagickDraw getfont() Function The GmagickDraw::getfont() function is an inbuilt function in PHP which is used to get the string specifying the font used when annotating with text. Syntax: string GmagickDraw::getfont( void ) Parameters: This function doesnât accept any parameters. Return Value: This function returns an string val 2 min read PHP | Imagick getPointSize() Function The Imagick::getPointSize() function is an inbuilt function in PHP which is used to get the point size of the imagick object. Syntax: float Imagick::getPointSize( void ) Parameters:This function doesnât accepts any parameter. Return Value: This function returns a float value containing the point siz 1 min read PHP | GmagickDraw getfontstyle() Function The GmagickDraw::getfontstyle() function is an inbuilt function in PHP which is used to get the font style used when annotating with text. Syntax: int GmagickDraw::getfontstyle( void ) Parameters: This function doesnât accept any parameters. Return Value: This function returns an integer value corre 2 min read Like