Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following code, which resizes and image and then adds some hex background. On localhost this works, but on heroku i get the following error

version :big do
  process :offer_resize_and_pad
 end

def offer_resize_and_pad
  img = resize_and_pad(600, nil, model.hex, 'Center')
  img
end

"Photo Failed to manipulate with MiniMagick, maybe it is not an image? Original Error: Command (\"mogrify -thumbnail \"600x>\" -background \"#fff\" -gravity \"Center\" -extent \"600x\" /tmp/mini_magick20130217-2-1hts61y.jpg\") failed: {:status_code=>1, :output=>\"mogrify: Empty JPEG image (DNL not supported)/tmp/mini_magick20130217-2-1hts61y.jpg' @ jpeg.c/EmitMessage/232.\n\"

share|improve this question
This could be because you don't have the same access to the file system on Heroku as you do on your local machine i.e. the /tmp directory. – Yule Feb 18 at 11:41
You have a point. But then, how can I fix this? . And there are other pictures from other uploaders, that work. – VladC Feb 18 at 11:46

1 Answer

up vote 0 down vote accepted

I 've used RMagick instead of Mini_magick, with some syntax changes , and it seems to work :) .

include CarrierWave::RMagick

def offer_resize_and_pad
  img = resize_and_pad(600, 280, model.hex, ::Magick::CenterGravity)
  img
end
share|improve this answer
1  
please extend your answer. in order for the answer to be helpful for future visitors, you should post the solution which worked for you in the end. – andr Feb 18 at 12:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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