Forma güvenlik kodu ekliyorum ama şöyle görünüyor


�PNG ��� IHDR���d������à�)°���PLTEÿÿÿô�ißW¯Ñ���_ID ATx�cø�>08ïğçÿ�~ØÃx3şÿñy>�g{æÿ�ÿça< y5ÿçñCyÊóÒmşÙ<�ò$çÕÛü� Si3/ÁæÿI8ïÌy$ŞÌ�çl>ÏëC�w_aåK�/>����IEND®B`�

Buda kod
<?php
 $sifre = substr(md5(rand(0,999999999999)),-6);
 if ($sifre) {
  session_start();
  $_SESSION["guv"] = $sifre;
  $width  = 100;
  $height =  30;
  $resim  = ImageCreate($width,$height);
  $beyaz  = ImageColorAllocate($resim, 255, 255, 255);
  $rand   = ImageColorAllocate($resim, rand(0,255), rand(0,255), rand(0,255));
  ImageFill($resim, 0, 0, $rand);
  ImageString($resim, 5, 24, 7, $_SESSION["guv"], $beyaz);
  ImageLine($resim, 100, 19, 0, 19, $beyaz);
  header("Content,type: image/png");
  ImagePng($resim);
  ImageDestroy($resim);
 }

?>
Neden olabilir ?