StoneHeart
StoneHeart

Reputation: 16610

Add text to image using php gd and google webfonts

Is is possible if I want adding text to image with font from google webfonts? using PHP image GD

Upvotes: 4

Views: 3829

Answers (2)

user14837726
user14837726

Reputation: 1

imagettftext does not works on WAMP server on windows. you have to download freetype and recompile. Sometimes, Wamp sucks.

Upvotes: 0

Claudiu
Claudiu

Reputation: 3261

You will need the font as a ttf / otf in order to do that. There is no other way unfortunatelly - or better said, anything else you would try would be way overcomplicated for the result, don't even think about it.

Later edit You said you can download the ttf files, so all you need is: http://php.net/manual/en/function.imagettftext.php

Upvotes: 5

Related Questions