Here is my code Code: if ($type == 'image/jpeg') { $new_image = imagecreatefromjpeg ($base_image); $text_colour = imagecolorallocate( $new_image, 255, 255, 255 ); $line_colour = imagecolorallocate( $new_image, 128, 255, 0 ); $imagestring( $new_image, 2, 30, 25, $details, $text_colour ); header('Content-type: image/jpeg'); imagejpeg( $new_image ); } $details...
