Development

Using a dafont font with imagettftext in PHP

If you want to spice up your imagettftext use and use custom fonts from dafont here is how to do it:

Choose your font from dafont in this example I choose Raitons font. Click download on the right of the page

Open up the downloaded zip file and drag the .ttf file into your image create php file directory (note i changed the font name from Raitons Demo.ttf to Raitons.ttf)

 

image.php is this:

";
ImageDestroy($image);//Free memory
}
echo create_image(600, 200, 'Sample text for image');

This will generate an image with the custom text using the font Raitons. The image file will be called phpimage.png in your working directory that looks like this:

That is how to use custom or dafont fonts with imagettftext as you can see its simple and custom fonts look a lot better than the default ones!

Share

Recent Posts

Kennington reservoir drained drone images

A drained and empty Kennington reservoir images from a drone in early July 2024. The…

1 year ago

Merrimu Reservoir drone images

Merrimu Reservoir from drone. Click images to view larger.

1 year ago

FTP getting array of file details such as size using PHP

Using FTP and PHP to get an array of file details such as size and…

2 years ago

Creating Laravel form requests

Creating and using Laravel form requests to create cleaner code, separation and reusability for your…

2 years ago

Improving the default Laravel login and register views

Improving the default Laravel login and register views in such a simple manner but making…

2 years ago

Laravel validation for checking if value exists in the database

Laravel validation for checking if a field value exists in the database. The validation rule…

2 years ago