~ubuntu-branches/ubuntu/intrepid/graphicsmagick/intrepid

« back to all changes in this revision

Viewing changes to PerlMagick/demo/button.pl

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Kobras
  • Date: 2006-05-06 16:28:08 UTC
  • Revision ID: james.westby@ubuntu.com-20060506162808-vt2ni3r5nytcszms
Tags: upstream-1.1.7
ImportĀ upstreamĀ versionĀ 1.1.7

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/local/bin/perl
 
2
#
 
3
# Make simple beveled button.
 
4
#
 
5
use Graphics::Magick;
 
6
 
 
7
$q=Graphics::Magick->new;
 
8
$q->Set(size=>'30x106');
 
9
$q->Read('gradient:#00f685-#0083f8');
 
10
$q->Rotate(-90);
 
11
$q->Raise('6x6');
 
12
$q->Annotate(text=>'Push Me',font=>'Generic.ttf',fill=>'black',
 
13
  gravity=>'Center',pointsize=>18);
 
14
$q->Write('button.gif');
 
15
$q->Write('win:');