Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where can I find GD compatible fonts?

Tags:

php

fonts

gd

I'm using GD to display some text. The default font is Courier (or something similar)... I want to use another font and I found this function: imageloadfont that requires a .gdf file. I've search on Google to see if I find some nice fonts, but I didn't find anything. I see there's a script to convert a PNG file to a GDF, but I can't waste too much time so I'd like to know where can I get some nice fonts, or maybe there's another easier way to do what I want.

like image 268
Cristian Avatar asked Apr 28 '10 16:04

Cristian


3 Answers

I hadn't seen the imagettftext function in the documentation. Thanks @Pekka for the advice. Finally I just copied the consolas.ttf file in the same directory of the script and did:

imagettftext ( $image, 12, 0, 200, 100, 0, 'consolas.ttf' , "thanks!");

It works perfectly.

like image 173
Cristian Avatar answered Oct 30 '22 03:10

Cristian


This question already has an accepted answer but I am sharing a useful link to get gdf fonts.

http://www.danceswithferrets.org/lab/gdfs/

like image 26
Pradip Shenolkar Avatar answered Oct 30 '22 04:10

Pradip Shenolkar


Have you tried using a converter to convert a truetype font file into gdf?

http://www.lunar.lu/ttf-to-gdf/convert.php

like image 1
Mark Avatar answered Oct 30 '22 03:10

Mark