- or download this
$outim = new GD::Image($width, $height);
...
@bounds = new GD::Image->stringFT($fgcolor,$fontname,$ptsize,$angle,$x
+,$y,$string);
- or download this
$outim = GD::Image->new($width, $height);
...
@bounds = GD::Image->new->stringFT($fgcolor,$fontname,$ptsize,$angle,$
+x,$y,$string);
- or download this
$string = ucfirst($first) . ($middle ne '' ? ' ' . ucfirst($middle
+) : '') . ' ' . ucfirst($last);
- or download this
$string = ucfirst($first) . ($middle ? ' ' . ucfirst($middle) : ''
+) . ' ' . ucfirst($last);
- or download this
$string = ucfirst(lc($first));