Search found 2 matches

by symulant
2011-06-27T09:49:48-07:00
Forum: PerlMagick
Topic: problem running composite - exception 410 [solved]
Replies: 2
Views: 17254

Re: problem running composite - exception 410 [solved]

Anthony, thank you for your reply.
by symulant
2011-06-26T11:53:34-07:00
Forum: PerlMagick
Topic: problem running composite - exception 410 [solved]
Replies: 2
Views: 17254

problem running composite - exception 410 [solved]

I want to move the code from bash to Perl

#!/bin/bash
composite -compose plus image.png mask.png image_mask0.png

Bash script works fine.

I tried three times to write it using Perl and the Image:: Magick:
#!/usr/bin/perl -w
use strict;
use Image::Magick;

my $im_x;
$im_x=Image::Magick->new;

my ...