Snippets - Create

Snippets index page

NOTE: Most of the IM snippets have been tested on IM version 6.3.5 There may be some differences if you are using the code on other versions.

Draw polyline - Anthony 17/6/2008

Create a canvas 100x100 with a transparent background ; then draw the tree.

  1. <?php  
  2. $cmd " -size 100x100 xc:none -fill green -stroke black -strokewidth 1 ".
  3. " -draw \"polyline 85,90 15,90 35,75 20,75 40,60 25,60 40,50 30,50 50,30 70,50 60,50 75,60 60,60 80,75 65,75 85,90 \" ".
  4. " -fill brown -draw \"rectangle 55,99 45,90 \" ".
  5. " -fill gold -draw \"circle 50,28 50,23 \" ".
  6. " -fill red -draw \"circle 15,90 15,88 \" -draw \"circle 85,90 85,88 \" ".
  7. " -fill blue -draw \"circle 20,75 20,73 \" -draw \"circle 80,75 80,73 \" ".
  8. " -fill red -draw \"circle 25,60 25,58 \" -draw \"circle 75,60 75,58 \" ".
  9. " -fill blue -draw \"circle 30,50 30,48 \" -draw \"circle 70,50 70,48 \" "
  10. exec("convert $cmd output.png"); 
  11. ?> 

For more examples and information check out the main Imagemagick section.

Draw concentric circles View

Draw polyline View

Draw rectangle View

Draw using ellipse View