imageMagick : MagickCore
Hi, everyone.
I tried to transform a image with blur effect that remove block status of output image.
When I test convert Shell command like folling:
convert -blur 1x1 -resize 320x240 test.jpg result_test_blur_1x1_resize_320x240.jpg
convert -blur 3x3 -resize 320x240 test.jpg result_test_blur_3x3_resize_320x240.jpg
It was success.
But, when I test using source MagickCore like folling source:
Code: Select all
image->blur = 3.0;
I can't get any blur effect that I want.
How to get blur effect using MagickCore Library?
thanks.