Search found 1 match

by Gerben
2013-06-06T02:32:31-07:00
Forum: PerlMagick
Topic: What is the equivalent of this command line?
Replies: 1
Views: 10682

Re: What is the equivalent of this command line?

I'm having the same issue here. The commandline: convert -font Arial.ttf -fill transparent -stroke red -strokewidth 1 -size 160x label:'FooBar' 'foorbar.jpg' works fine. Perl: my $model = Image::Magick->new(size => '600x'); $model->Set( background => 'rgba(0,0,0,0)' ); $model->Set( stroke => 'red');...