Hey php gurus, php rookie here.🙂
I'm having a little trouble changing the font size of this gd powered text creator.
Question is, where do I plug in the font size in the following snippet?
else if(($action=="addtext") && ((is_numeric($_REQUEST['x1']) && is_numeric($_REQUEST['y1'])))) {
$imageEditor->setFont("/home/space/public_html/tom/imgtoolbox/fonts/AGENCYR.TTF");
$imageEditor->addText($_REQUEST['str'], $_REQUEST['x1'], $_REQUEST['y1'], Array(0, 0, 0));
Thanks
Pierre