100) $vote = 100; header ("Content-type: image/gif");//Поесняем браузеру что это картинка $vote_img = imageCreateFromGIF ("img/vote.gif");//Загружаем изображение /////Создаем изображение///// $color = imagecolorallocate ($vote_img, 0, 255, 0); $color2 = imagecolorallocate ($vote_img, 255, 153, 153); $color3 = imagecolorallocate ($vote_img, 255, 102, 102); $color4 = imagecolorallocate ($vote_img, 255, 51, 51); $color5 = imagecolorallocate ($vote_img, 255, 102, 102); $color6 = imagecolorallocate ($vote_img, 0, 0, 0); imagefilledrectangle ($vote_img, 0, 0, $vote, 5, $color); /////Выводим изображение///// ob_start (); ImageGIF ($vote_img, null, 100); ImageDestroy ($vote_img); header ("Content-Type: image/gif"); header ("Content-Disposition: inline; filename=vote.gif"); header ("Content-Length: ob_get_length ()); ob_end_flush (); ?>