<?php
    $visites = array(138, 254, 381, 652, 896, 720, 140, 556, 663, 331, 407, 768);

    header ("Content-type: image/png");  
    $largeurImage = 1024;
    $hauteurImage = 768;
    $im = ImageCreate ($largeurImage, $hauteurImage)  
            or die ("Ошибка при создании изображения");          
    
	$blanc = ImageColorAllocate ($im, 255, 255, 255);  
    $noir = ImageColorAllocate ($im, 0, 0, 0);   
    $bleu = ImageColorAllocate ($im, 0, 0, 255);   
	
	ImageLine($im, 500, 500, 600, 600, $bleu);
	
    ImagePng ($im);  
?>