Allie's Week 14 Example

circles

SLAVE CODE FOLLOWS

<?php
// Create a blank canvas (300x300)
$image imagecreatetruecolor(300300);


// Define colors
$background imagecolorallocate($image250250255); // light pastel blue
$mint       imagecolorallocate($image170240209);
$peach      imagecolorallocate($image255204188);
$lavender   imagecolorallocate($image218187255);
$rose       imagecolorallocate($image255174201);
$gray       imagecolorallocate($image120120120);

// Fill background
imagefilledrectangle($image00300300$background);

// Draw shapes

// Rectangle with peach color
imagefilledrectangle($image303012090$peach);

// Ellipse with mint green
imagefilledellipse($image220708050$mint);

// Triangle (lavender)
$triangle = [
    
150200,
    
100250,
    
200250
];
imagefilledpolygon($image$triangle3$lavender);

// Circle (rose)
imagefilledellipse($image802005050$rose);

// Smooth line (gray)
imageline($image00300300$gray);
imageline($image30000300$gray);

// frame border
imagerectangle($image00299299$gray);

// Output
header("Content-type: image/png");
imagepng($image);
imagedestroy($image);
?>