|
<?
if ( !extension_loaded( "gd" ) ) {
dl("php_gd2.dll");
}
$im = ImageCreateFromPng("http://homepage2.nifty.com/lightbox/image/hm020.png");
$red = ImageColorAllocate($im, 255,0,0);
imagesetthickness( $im, 3 );
if ( ctype_digit( $_GET['x'] ) ) {
$x = $_GET['x'];
}
else {
$x = 135;
}
if ( ctype_digit( $_GET['y'] ) ) {
$y = $_GET['y'];
}
else {
$y = 118;
}
imagearc( $im, $x, $y, 60, 35, 0, 359, $red );
ImagePng($im);
?>
| |