Help for this page

Select Code to Download


  1. or download this
    composite -dissolve 87.8 foreground.jpg -size 500x500 xc:white output.
    +jpg; composite mask.png output.jpg output.jpg
    
  2. or download this
    my $mask = Image::Magick->new;
    my $background = Image::Magick->new;
    ...
    $background->Composite(compose=>'Dissolve', opacity => '87.8', image=>
    +$foreground); 
    $background->Composite(image=>$mask);
    $background->Write("output.jpg");