setDictionary(("words/words.txt")); $word->setLength(5); $word->pickWord(); $theword = $word->getWord(); $imgword = new WordArt(120,40); $imgword->setFontDirectory('fonts/'); $imgword->setWord($theword); $imgword->setTextAngle(5); $imgword->setFontColor('#000000'); $imgword->drawText(); $imgword->applyFilter("Wavy"); $im = $imgword->getWordArt(); header("Content-type: image/jpeg"); imagejpeg($im); ?>