Matt W. wrote:
>             image.sharpen(10, 10)!

"I'm not having any luck" isn't a very good description of your problem. 
However, this is not valid Ruby. It's possible you meant:

image.sharpen!(10,10)

but there is no Magick::Image.sharpen! method. I think what you want is:

image = image.sharpen(10,10)
-- 
Posted via http://www.ruby-forum.com/.

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby 
on Rails: Talk" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/rubyonrails-talk?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to