<HTML>
<HEAD>
<TITLE>imagedashedline</TITLE>
</HEAD>
<BODY>
<?
header("Content-type: image/gif");
$image = imagecreate(200,200);
// flood square with red
$colorRed = imagecolorallocate($image, 255, 0, 0);
imagefill($image, 0, 0, $colorRed);
$colorBlack = imagecolorallocate($image, 0, 0, 0);
// draw dashed line
imagedashedline($image, 10, 10, 150, 130, $colorBlack);
imagegif($image);
?>
</BODY>
</HTML>
<HEAD>
<TITLE>imagedashedline</TITLE>
</HEAD>
<BODY>
<?
header("Content-type: image/gif");
$image = imagecreate(200,200);
// flood square with red
$colorRed = imagecolorallocate($image, 255, 0, 0);
imagefill($image, 0, 0, $colorRed);
$colorBlack = imagecolorallocate($image, 0, 0, 0);
// draw dashed line
imagedashedline($image, 10, 10, 150, 130, $colorBlack);
imagegif($image);
?>
</BODY>
</HTML>
















