Hi, Everyone...
I have a php script that writes text to an existing .png file. image 1 -
I would like to write / add image 2 too image 1
I have the following script working for the correct score.
// add correct score
$x = 257;
$y = 205;
drawplayername($x, $y, trim($correctscore));
the image I would like to write / add to the existing image 1 is 200x200 -
Thats far to big, But I would like to know how to resize the image please on the fly ?
Thanks