<?php
/*
Include this file on any html page by image tag with src=polls2.php?percent=86
*/
include ("./cls.drawstar2.php");
header("Content-type: image/png");
header("Content-Disposition: ; filename=stars$percent"."per.png;");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Pragma: public");
$objStar = new drawingStar(5);
$arrPerFill = getArray4FillStar($percent);
$img = $objStar->drawStar($arrPerFill);
imagepng($img);
// free memory
imagedestroy($img);
?>
|