blob: 29681caa0c92328fe45f57640b1748b52bca4a8c [file] [log] [blame]
<?php
require_once '../jpgraph.php';
require_once '../jpgraph_flags.php';
if( empty($_GET['size']) ) {
$size = FLAGSIZE2;
}
else {
$size = $_GET['size'];
}
if( empty($_GET['idx']) ) {
$idx = 'ecua';
}
else {
$idx = $_GET['idx'];
}
$flags = new FlagImages($size) ;
$img = $flags->GetImgByIdx($idx);
header ("Content-type: image/png");
ImagePng ($img);
?>