Skip to content

Instantly share code, notes, and snippets.

@mrcwinn
Last active December 16, 2015 01:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mrcwinn/5356033 to your computer and use it in GitHub Desktop.
Save mrcwinn/5356033 to your computer and use it in GitHub Desktop.
version :medium, :if => :is_landscape? do
process :resize_to_fit => [270, 0]
end
version :medium, :if => :is_landscape? do
process :resize_to_fit => [0, 270]
end
def is_landscape? picture
image = ::Magick::Image.read(picture.path).first
image.columns > image.rows
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment