Jump to content

How to change php imagestring font size.


Parvinder

Recommended Posts

I use below code to show png image from external website with variable text string on it. it works fine. But i  want to change the text size, make it bold and font family of this text string with centered text.

The code is

 

$my_img = imagecreatefrompng("http://example.com/images/widget.png");


$text_colour = imagecolorallocate( $my_img, 255, 255, 255 );
imagestring( $my_img, 5, 80, 14, "$count_user", $text_colour );


$angle = 90.0;
$rotated = imagerotate($my_img, $angle, 0);


header( "Content-type: image/png" );
imagepng( $rotated );
imagecolordeallocate( $text_color );
imagedestroy( $rotated );

Kindly help. Thanks in advance.

Edited by Parvinder
Link to comment
Share on other sites

You'll need to use imagettftext instead: give it a path to a bold font (yes, the font itself must be bold) and whatever size you want.

 

For centering you'll need imagettfbbox to determine the size of the rendered text, then you can calculate the correct offset for imagettftext so that the text is placed in the center. Google has suggestions on how to do that.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.