When I upload a photo, my model fails validation, err well even without any validations I'm returned this error:

/tmp/stream20100103-13830-ywmerx-0 is not recognized by the 'identify' command. and     
/tmp/stream20100103-13830-ywmerx-0 is not recognized by the 'identify' command.

I'm confident this is not related to ImageMagick because I've removed any image processing from the uploading, also I've tried uploading different mime types, like .txt files and the such.

Additionally, I found something that may work. A blog post claims that putting the following in my environment (in this case development.rb)

Paperclip.options[:command_path] = "/opt/local/bin"
link|improve this question

reinstalling ImageMagick... just to see if that remedies anything. – Joseph Silvashy Jan 3 '10 at 19:59
1  
This is related to ImageMagick, but could you also include the paperclip statements that you have in your model? The command_path option needs to point ot the location where identify is installed. From the command line, you can determine this with which identify. – Ryan McGeary Jan 3 '10 at 20:11
Bleh, you are right Ryan (again), if you want to answer you get a big green checkmark. – Joseph Silvashy Jan 3 '10 at 20:34
feedback

6 Answers

up vote 31 down vote accepted

This is related to ImageMagick. The command_path option needs to point to the location where identify is installed. From the command line, you can determine this with which identify.

$ which identify
/some/path/to/identify

Afterwards, set command_path to that path (in config/environments/development.rb):

Paperclip.options[:command_path] = "/some/path/to"
link|improve this answer
I have almost exactly this problem, except for one thing: the error just appears when I'm trying to attach videos! Any ideas? :( – Erik Escobedo Aug 31 '10 at 19:14
hmm... which identify doesn't work for me. Any reason why it wouldn't? – sscirrus Nov 2 '10 at 3:13
sscirrus, Make sure ImageMagick is installed and in your PATH. – Ryan McGeary Nov 3 '10 at 0:31
feedback

This happened to me when I upgraded OS X to Lion.

Solved it by...

Note, before ghostscript would reinstall I had to apply the suggestion found here: https://github.com/mxcl/homebrew/issues/6381

brew edit ghostscript

Then add the def patches block to the bottom of the Ghostscript class:

class Ghostscript < Formula
    .... existing code here ....

    def patches
        { :p0 => 'http://ftp.netbsd.org/pub/NetBSD/packages/pkgsrc/print/ghostscript/patches/patch-ak' }
    end
end 

The above patch may be merged in by the time you read this.

After that imagemagick detected jpegs correctly again.

TL;DR completely uninstall and reinstall homebrew, ghostscript (with patch for Lion), and imagemagick

link|improve this answer
feedback

This worked fromhttp://arglebargle.posterous.com/path-environment-variable-for-rails-using-pas

Put something like this in the VirtualHost (or wherever passenger is set up):

SetEnv PATH /opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin:/usr/local/mysql/bin
link|improve this answer
this worked for me! :) – Jenny Blunt Dec 12 '11 at 12:49
feedback

To add one more potential solution that I haven't seen discussed much: ldconfig.

I had the same problem that I just spent a day and a half tracking down. I properly reinstalled ImageMagick from source with the additional png and jpeg support, I added LD_LIBRARY_PATH and DYLD_LIBRARY_PATH to the environment variables, I set the :command_path option for Paperclip in my production environment config. Although the ImageMagick commands worked from the command line, nothing fixed my Paperclip problem.

Finally after seeing ldconfig mentioned in passing, I tried that on a whim, and it worked.

sudo ldconfig

I may have been able to accomplish the same thing by restarting apache or the hardware, but I wasn't in a position to do that on my own.

link|improve this answer
feedback

I got it working by installing brew, http://mxcl.github.com/homebrew/

And then i typed:

brew install imagemagick

and after that

gem install rmagick

Then I just deleted the option paths (Paperclip.options[:command_path] = "...") that I typed in manually in environment/development.rb and initialize/paperclip.rb

Added rmagick to gem file. Restarted the server and it worked like a charm!

link|improve this answer
feedback

if your are trying to upload a video, then probably, 'identify' tries to delegate the work to ffmpeg. example

   identify Desktop/00-ScalingRails-Introduction.mp4      [alaa@Zero>/home/alaa]
   identify: delegate failed `"ffmpeg" -v -1 -vframes %S -i "%i" -vcodec pam -an -f rawvideo -y "%u.pam" 2> "%Z"' @ error/delegate.c/InvokeDelegate/1061.
   identify: unable to open image `/tmp/magick-XXHF4ImT.pam':  @ error/blob.c/OpenBlob/2498

in this example, installing ffmpeg removed the error message from the list of validation errors

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.