Search found 5 matches

by jan99
2013-10-09T05:33:22-07:00
Forum: PerlMagick
Topic: help to create colored regtanc with black border
Replies: 0
Views: 10699

help to create colored regtanc with black border

hi !

i try to create images with a colored background and a black border.

my source now is:

#!/usr/bin/perl
use strict;
use warnings;
use Image::Magick;

my $red = $ARGV[1];
my $green = $ARGV[2];
my $blue = $ARGV[3];
my $name = $ARGV[0] || '' ;

print "red: ".$red."\n";
print "green: ".$green ...
by jan99
2012-11-22T07:20:24-07:00
Forum: PerlMagick
Topic: problem to install imagemagick for perl (win7)
Replies: 0
Views: 15066

problem to install imagemagick for perl (win7)

hi !

i try to install imagemagick for perl (activeperl) to use in win7 / 64bit.

i download http://www.imagemagick.org/download/binaries/ImageMagick-6.8.0-5-Q16-windows-dll.exe and start to install by admin.

when i start a perl-funciton i get the message

Der Prozedureneinsprungpunkt ...
by jan99
2012-11-21T01:50:45-07:00
Forum: PerlMagick
Topic: perl: create a close circle
Replies: 0
Views: 14469

perl: create a close circle

hi !

i want to make a icon with a circle - but at the button less is missing.

my source:

#!/usr/bin/perl
use strict;
use warnings;
use Image::Magick;

foreach (100..130){
my $img = Image::Magick->new();
$img->Set(size=>'30x20');
$img->ReadImage('xc:none');
$img->Draw(primitive=>'circle ...
by jan99
2012-11-21T01:48:44-07:00
Forum: PerlMagick
Topic: perl: create a "light"-letter
Replies: 0
Views: 14493

perl: create a "light"-letter

hi !

i want to make icon with "light" letter - but there are only bold.

my source:

#!/usr/bin/perl
use strict;
use warnings;
use Image::Magick;
foreach (100..130){
my $img = Image::Magick->new();
$img->Set(size=>'30x20');
$img->ReadImage('xc:none');
$img->Annotate( text => $_, gravity ...
by jan99
2011-06-23T01:30:45-07:00
Forum: PerlMagick
Topic: problem with background-color (win7 / activeperl)
Replies: 0
Views: 7969

problem with background-color (win7 / activeperl)

hi !

i have following sample code to create a simple icon with white background - but my background is black and the same script on linux by a friend is correct.

can anybody help me ?

regards Jan :-)

Code:
#!/usr/bin/perl
use strict;
use warnings;
use Image::Magick;

# Objekt für Bilder ...