Help for this page

Select Code to Download


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