PHP/Language Basics/Polygon

Материал из Web эксперт
Версия от 07:05, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Drawing a Polygon with imagefilledpolygon()

<?php
header("Content-type: image/gif");
$image = imagecreate( 200, 200 );
$red = imagecolorallocate($image, 255,0,0);
$blue = imagecolorallocate($image, 0,0,255 );
$points = array (10, 10,
                 190, 190,
                 190, 10,
                 10, 190
);
imagefilledpolygon( $image, $points, count( $points )/2 , $blue );
imagegif($image);
?>