~noskcaj/ubuntu/saucy/imagemagick/lp1218248

« back to all changes in this revision

Viewing changes to PerlMagick/demo/lsys.pl

  • Committer: Package Import Robot
  • Author(s): Michael Terry
  • Date: 2012-07-10 11:21:50 UTC
  • mfrom: (6.2.24 sid)
  • Revision ID: package-import@ubuntu.com-20120710112150-liko2z4agqah3n5t
Tags: 8:6.7.7.10-2ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Make ufraw-batch (universe) a suggestion instead of a recommendation.
  - Don't set MAKEFLAGS in debian/rules; just pass it to the build.
* debian/control:
  - Build-Depend on libtiff5-dev instead of libtiff-dev

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
  
50
50
  # Create the flower images
51
51
  $pink_flower = new Image::Magick;
52
 
  $pink_flower->Read('pink_flower.gif');
 
52
  $pink_flower->Read('pink-flower.gif');
53
53
  
54
54
  $red_flower = new Image::Magick;
55
 
  $red_flower->Read('red_flower.gif');
 
55
  $red_flower->Read('red-flower.gif');
56
56
  
57
57
  $yellow_flower = new Image::Magick;
58
 
  $yellow_flower->Read('yellow_flower.gif');
 
58
  $yellow_flower->Read('yellow-flower.gif');
59
59
  
60
60
  # Turtle:  the midpoint of the bottom edge of the image, pointing up.
61
61
  $turtle=new Turtle($imagesize/2, $imagesize, 0, 1);