Voting

: max(six, three)?
(Example: nine)

The Note You're Voting On

llewellyntd at gmail dot com
17 years ago
Hi All,

I struggled for moths to do a decent text warp with GD lib. Here is the code that I made use of:

<?php
//word wrap
$warpText = wordwrap($text, 30, "\n");
//display text
imagettftext($image, $fontSize, 0, $x, $y, $fontColor, $font, $warpText);
?>

Hope this helps somebody.

Cheers

<< Back to user notes page

To Top