Quantcast
Channel: magick Discussions Rss Feed
Viewing all articles
Browse latest Browse all 3693

New Post: Composite.Blur working

$
0
0
trying to duplicate this example from the imagemagick tutorial site: (http://www.imagemagick.org/Usage/mapping/)
 convert koala.gif blur_map_bool.gif 
 -compose blur -define compose:args=3 -composite
          blur_koala_bool.gif
using the sample images from the example:

http://www.imagemagick.org/Usage/mapping/koala.gif
http://www.imagemagick.org/Usage/mapping/blur_map_bool.gif

using code below:
 MagickImage mImage=new MagickImage(@"F\koala.gif");
            MagickImage mImageblur = new MagickImage(@"F\blur_map_bool.gif");
            mImage.Composite(mImageblur,Gravity.Center,CompositeOperator.Blur,"3");
            mImage.Write(@"f:\koalablur.gif");
but no change in output image

Viewing all articles
Browse latest Browse all 3693

Trending Articles