I have a similar issue to this post: ImageMagick: No decode delegate for this image format `' @ error/constitute.c/ReadImage/504
Whenever I use imagemagick in my command line it appears to work, however inside of my development environment with Ruby on Rails, any imagemagick commands throw the error: No decode delegate for this image format `'
As mentioned in the linked question, most posts have a specific delegate missing but my imagemagick has: DELEGATES bzlib mpeg freetype jng jpeg lzma png tiff xml zlib
This error occurs when running Magick::Image.from_blob, to_blob, columns, or rows specifically inside my program.
I also have rMagick installed as a gem to handle these commands and this occurs in both Rails 2 and Rails 4.
Has anyone come across this situation and have any ideas why my ImageMagick is not identifying the type of image?
bundle exec
? – Taryn East