Retrospring/lib/paperclip_processors/cropper.rb

23 lines
475 B
Ruby
Raw Normal View History

2014-12-29 05:51:52 -08:00
module Paperclip
class Cropper < Thumbnail
def transformation_command
if crop_command
x = super
i = x.index '-crop'
2.times { x.delete_at i } if i
2014-12-29 05:59:12 -08:00
crop_command + x
2014-12-29 05:51:52 -08:00
else
super
end
end
def crop_command
target = @attachment.instance
if target.cropping?
['-crop', "'#{target.crop_w.to_i}x#{target.crop_h.to_i}+#{target.crop_x.to_i}+#{target.crop_y.to_i}'"]
end
end
end
end