I get differant results than example in tutorial

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
lwhistler
Posts: 23
Joined: 2010-09-15T15:33:29-07:00
Authentication code: 8675308

I get differant results than example in tutorial

Post by lwhistler »

In the Tilt-Shift Effect I get different results than the example in tutorial, my results are less blurred. I'm using version 6.5.7-8 on Ubuntu 10.04.


Scroll 1/3 down:
http://www.imagemagick.org/Usage/photos

I download this image from the tutorial:
Image

I then run this code from the tutorial with no changes:

Code: Select all

convert beijing_md.jpg -sigmoidal-contrast 15x30% \
          \( +clone -sparse-color Barycentric '0,0 black 0,%h gray80' \
             -solarize 50% -level 50%,0 \) \
          -compose Blur -set option:compose:args 5 -composite \
          beijing_model.jpg
But my finished image has less blur than in the tutorial example below:
Image


I don't have my results posted online so I can't link to it, but it has noticeably a lot less blur than the image above. Can anyone give me an idea why I would get different results than the tutorial - My version of imagemagick should be OK.

Thanks.


------------
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: I get differant results than example in tutorial

Post by snibgo »

You can change the amount of blur by modifying "5" in "-set option:compose:args 5".

Your version of ImageMagick is very old, which probably explains the difference.
snibgo's IM pages: im.snibgo.com
Post Reply