Sun Oct 26, 2008 10:59 pm
<?php
header ("Content-type: image/png");
$im = ImageCreate (150, 150);
$grey = ImageColorAllocate ($im, 230, 230, 230);
$black = ImageColorAllocate ($im, 0, 0, 0);
ImageLine($im, 0, 30, 150, 150, $black);
ImageLine($im, 0, 150, 150, 30, $black);
ImageLine($im, 0, 30, 150, 30, $black);
ImageString($im, 3, 5, 5, "Figure 18.6: Lines", $black);
ImagePng ($im);
ImageDestroy ($im);
?>
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.