<?php $height = 300; $width = 300; $im = imagecreatetruecolor($width, $height); $white = imagecolorallocate ($im, 255, 255, 255); $blue = imagecolorallocate ($im, 0, 0, 64); imagefill($im, 0, 0, $blue); imagestring($im, 10, 100, 120, 'Hello,PHP', $wh…