PHP | ImagickDraw setFontSize() Function
The ImagickDraw::setFontSize() function is an inbuilt function in PHP which is used to set the font point size. It is used when annotating with text.
Syntax:
bool ImagickDraw::setFontSize( $pointsize )
Parameters: This function accepts a single parameter $pointsize which is used to hold the value of point size.
Return Value: This function does not return any value.
Below programs illustrate the ImagickDraw::setFontSize() function in PHP:
Program 1:
<?php // Create an ImagickDraw object $draw = new ImagickDraw(); // Set the image filled color $draw->setFillColor('Green'); // Set the Font Size $draw->setFontSize(30); // Set the font family $draw->setFontFamily('Ani'); // Set the text to be added $draw->annotation(30, 40, "GeeksForGeeks"); // Create new Imagick object $imagick = new Imagick(); // Set the image dimension $imagick->newImage(250, 70, 'white'); // Set the image format $imagick->setImageFormat("png"); // Draw the image $imagick->drawImage($draw); header("Content-Type: image/png"); // Display the image echo $imagick->getImageBlob(); ?> |
Output:

Program 2:
<?php // Create an ImagickDraw object $draw = new ImagickDraw(); // Set the image filled color $draw->setFillColor('red'); // Set the Font Size $draw->setFontSize(40); // Set the Font family $draw->setFontFamily('Ubuntu-Mono'); // Set the text to be added $draw->annotation(30, 170, "GeeksForGeeks"); // Set the image filled color $draw->setFillColor('green'); // Set the font size $draw->setFontSize(30); // Set the font family $draw->setFontFamily('Open-Sans-Light-Italic'); // Set the text to be added $draw->annotation(30, 250, "Ubuntu-Mono"); // Create new Imagick object $imagick = new Imagick(); // Set the image dimenson $imagick->newImage(350, 300, 'white'); // Set the image format $imagick->setImageFormat("png"); // Draw the image $imagick->drawImage($draw); header("Content-Type: image/png"); // Display the image echo $imagick->getImageBlob(); ?> |
Output:
Reference: http://php.net/manual/en/imagickdraw.setfontsize.php
Recommended Posts:
- PHP | GmagickDraw setfontsize() Function
- PHP | ImagickDraw arc() Function
- PHP | ImagickDraw circle() Function
- PHP | ImagickDraw roundRectangle() Function
- PHP | ImagickDraw polygon() Function
- PHP | ImagickDraw skewY() Function
- PHP | ImagickDraw setStrokeOpacity() Function
- PHP | ImagickDraw translate() Function
- PHP | ImagickDraw setStrokeWidth() Function
- PHP | ImagickDraw bezier() Function
- PHP | ImagickDraw scale() Function
- PHP | ImagickDraw setStrokeLineJoin() Function
- PHP | ImagickDraw setTextAlignment() Function
- PHP | ImagickDraw getStrokeWidth() Function
- PHP | ImagickDraw skewX() Function
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.



