Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I was having a heck of a time getting this to work, and still am. I'll get to the heart of it. I'm following Ryan Bates tutorial to make cropping work using Jcrop and Carrierwave. I've opted to use MiniMagick because even after reinstalling ImageMagick and RMagick on my machine I get an error that kills the rails server on my local machine. Anyway switching to MiniMagick fixed that for me. So everything is really nice up until this point. I have different sized images being produced, and they're being uploaded successfully. But once I try to crop I get this error:

undefined method `crop!' for #<MiniMagick::CommandBuilder:0x000001052e4608>

This is confusing the heck out of me because I'm using pretty much the exact same code as Bates:

def crop
if model.crop_x.present?
  resize_to_limit(700, 700)
  manipulate! do |img|
    x = model.crop_x.to_i
    y = model.crop_y.to_i
    w = model.crop_w.to_i
    h = model.crop_h.to_i
    img.crop!(x, y, w, h)
  end
 end
end

Anyway, it's that crop method that's failing. So I thought to myself, that's an ImageMagick command... So I looked at the ImageMagick doco, and I couldn't find the crop method with the bang, so I tried it without, and then the error turns to this:

No such file or directory - /var/folders/dF/dFNM2+Y7FVScn4+OxVHKOU+++TI/-Tmp-/mini_magick20111207-34409-1tnaa07.jpg

Anyway, something isn't making a ton of sense to me, any help would be appreciated! Thanks for reading!

share|improve this question
An update! I got very very frustrated, and tried everything over again on a new machine. I went back to Rmagick and it worked this time. The key thing seemed to be with my setup. I'm not sure specifically what, but it had something to do with Ghostscript and/or MacPorts. Removing macports, reinstalling imagemagick, reinstalling rmagick, reinstalling ghostcript finally did it for me! Thanks! – counterbeing Dec 10 '11 at 6:49
That's really weird :| – Mikhail Nikalyukin Dec 10 '11 at 7:38

3 Answers

up vote 7 down vote accepted

Have same problems, my solution was this method

def cropped_image(params)
    image = MiniMagick::Image.open(self.image.path)
    crop_params = "#{params[:w]}x#{params[:h]}+#{params[:x]}+#{params[:y]}"
    image.crop(crop_params)

    image
end

Just modify my method for your case.
The key is in which format pass variables to crop method, hope this helps you.

share|improve this answer
That looks really promising, I've just tried to update my crop method to include this image = MiniMagick::Image.open(model.pdf_url) But it's spitting an error at me. Any suggestions on the key I should be using? The error I get is No such file or directory - /uploads/tmp/20111207-1235-34409-8280/backsideart_stevie.jpg – counterbeing Dec 7 '11 at 20:36
well, i suppose it's an issue wiht minimagick [github.com/probablycorey/mini_magick/issues/54]. I have it before, but it's dissapear when im rewrite crop method as above. It's weird that you still encounter it. – Mikhail Nikalyukin Dec 7 '11 at 22:30
3  
Just to add ... Here's what I did from Mikhail's code. The important thing apparent (as he has rightly pointed out) is (1) replace crop! with crop and also return the image at the end of the manipulate! block otherwise you'll get write errors.ruby def crop if model.crop_x.present? resize_to_limit(600, 600) manipulate! do |img| x = model.crop_x.to_i y = model.crop_y.to_i w = model.crop_w.to_i h = model.crop_h.to_i img.crop("#{w}x#{h}+#{x}+#{y}") img end end end – Benjamin Tan Jan 4 '12 at 7:25

Here's a better explanation of why this happened as opposed to a cut/paste style solution.

This issue arose because RMagick and Imagemagick aren't interchangeable. RMagick has a very Ruby-like DSL and as such employs functions that take multiple arguments. Minimagick instead wraps around the ImageMagick commandline tool mogrify using the gem command-builder which helps to automatically generate methods from the available mogrify commands. Why RMagick has crop! MiniMagick doesn't (just dig through the source code). MiniMagick doesn't even have any crop visibly defined, that is, until you head over to the mogrify documentation.

There, you'll see slew of flags all prefixed with a dash which follow mogrify (e.g. mogrify -crop ...). Minimagick turns this -crop to a crop that you can call on a MiniMagick object.

According to the docs, crop takes an argument geometry. The geometry argument is explained here. You'll notice that all of those arguments are strings instead of crop(100,200) you would use crop('100x200') or crop('100%). Not very Ruby-like, but that's part of what makes MiniMagick so lightweight.

With that knowledge we can here is how to crop with MiniMagick. mogrify -crop can take a geometry as a stringwidthxheight+xoffset+yoffset, so we just need to build a similar string.

Given w,h,x, and y you could use any of the following:

args = [ w, 'x', h, '+', x, '+', y ].join('')
args = "#{w}x#{h}+#{x}+#{y}"
args = w + 'x' + h + '+' + x + '+' + y
# Be extremely careful with this one below, it alters the w var too!
args = w << 'x' << h << '+' << x << '+' << y

I would avoid adding the strings since your bound to drive your self insane when reading over your code. Concatenating plus-sign strings with a plus sign is atrociously confusing. I aesthetically prefer the last method, and it saves you from having to instantiate a new variable.

Here's a complete example with a healthy implementation of the last method:

def crop
  if model.crop_x.present?
    resize_to_limit(700, 700)

    manipulate! do |img|
      x = model.crop_x
      y = model.crop_y
      w = model.crop_w
      h = model.crop_h

      w << 'x' << h << '+' << x << '+' << y

      img.crop(w)
      img
    end

   end
  end
share|improve this answer
Thanks! Had been looking all morning for a good explanation of this. – MBHNYC Sep 12 '12 at 15:56
I wish EVERY StackOverflow answer was like this one. – jbnunn Sep 29 '12 at 18:46

I was able to get this to work by adding the X and Y parameters to the crop command as indicated by @mikhail-nikalyukin

def crop
  manipulate! do |img|
    img.crop "750x600+0+0"
    img.strip

    img = yield(img) if block_given?
    img
  end
end
share|improve this answer

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.