$ulX ? $llX : $ulX; $y1 = $llY > $ulY ? $llY : $ulY; $x2 = $lrX > $urX ? $lrX : $urX; $y2 = $lrY > $urY ? $lrY : $urY; $width = $x2 - $x1; $height = $y2 - $y1; imagettftext($i, $fs, $angle, $x, $y, $c, $font, $char); $x += $width + 8; } } // image_text_randomize header("Content-type: image/gif"); $i_w = 120; $i_h = 40; $i = imagecreatetruecolor($i_w, $i_h); $bg = imagecolorallocate($i, 255, 255, 255); imagefill($i, 0, 0, $bg); image_random_lines($i); $_SESSION['imgcode']['text'] = strtoupper(substr(md5(uniqid(rand())), 0, 4)); image_text_randomize($i, $_SESSION['imgcode']['text']); imagegif($i); $NO_CONTENT_TYPE = true; ?>