Wingblade
Wingblade

Reputation: 10093

Any bigger fonts for php?

As described here you can use

imageloadfont (file)

to get a font in PHP, e.g. for writing onto a generated image. Now I was wondering where to get such files for fonts, like is there some sort of converter around to convert from "normal" fonts to this weird format PHP uses? Or is there some sort of collection of such fonts?

I need this for my captcha-generator which needs a font that is bigger than the biggest standard PHP font available.

Upvotes: 1

Views: 161

Answers (1)

Get Off My Lawn
Get Off My Lawn

Reputation: 36311

You can use Nice True Type fonts using php to make an Image Captcha, and on my website I have a really nice example of how to make one!

http://phpsnips.com/43/Advanced-Image-Captcha#.UNx6mNdQC0x

Upvotes: 3

Related Questions