Possible Duplicate:
Paperclip Error
I have ImageMagick installed. If I try using it on the command line it works. I can use identify. It is located in /usr/bin
. And in my development.rb
I do the
Paperclip.options[:command_path] = '/usr/bin/'
It still will not work. I keep getting this error.
Command :: identify -format %wx%h :file
[paperclip] An error was received while processing: #<Paperclip::NotIdentifiedByImageMagickError: /tmp/stream20121130-6368-1c4xwb9-0.jpg is not recognized by the 'identify' command.>
I have no idea how to make this work. I have tried everything. I also tried adding this to my config/initializers/paperclip.rb
but it didn't work
require 'paperclip'
if RAILS_ENV == "development"
Paperclip.options[:command_path] = '/usr/bin/'
end