Trying out the imagemagick helper by Gijs van Tulder, I''ve run into a bit of a problem. In environment.rb, I placed: require_gem ''actionpack-imagemagick'' I''ve set up my controller as such: class ProfileController < ApplicationController # ..SNIP.. class Photo < ApplicationController imagemagick_for ''/home/howardroberts/documents/pics/'' end end Then in views/profile/photo.rhtml I put: <%= imagemagick_tag ''image1.jpg'', ''resize(100x100)'' %> This produces the error: showing /app/views/profile/photo.rhtml where line #1 raised: undefined method `url_for_imagemagick'' for #<ProfileController:0xb7828b14> Extracted source (around line #1): 1: <%= imagemagick_tag ''image1.jpg'', ''resize(100x100)'' %> I''ve heard so much positive feeback about this helper, I''m sure it''s something simple that I''m not doing correctly, but I haven''t the foggiest.Help? Thanks, Howard