<?
$imagekod = '';
for ($i = 0; $i < 8; $i++) {
// bu satırda random olarak karakterler seçiliyor
$imagekod .= chr(mt_rand(100,120));
$imagekod=strtoupper($imagekod);
}
// resmi hazırla
// resim boyutları belirlendi
$height = 30;
$width = 100;
//istenen boyutta bir resim oluşturuldu
$im = ImageCreate($width, $height);
//resim son renkleri ile artık hazır
$white = ImageColorAllocate ($im, 255, 255, 255);
$black = ImageColorAllocate ($im, 128, 0, 0);
// resme yazı yazdır.
ImageFill($im, 0, 0, $black);
// ImageLine($im, 0, 0, $width, $height, $white);
ImageString($im, 300, 15, 10, $imagekod, $white);
// resim çıkışı
Header ("Content-type: image/png");
ImagePng ($im);
/* ve yartılan resim silindi. bu ne die soranlar. bi üst satırda resim görüntülendi fakat oluşan temp dosyı sildik */
ImageDestroy($im);
?>
emrah ülker
emrah@planesoft.net