Skip to content

Instantly share code, notes, and snippets.

@kkosuge
Created November 10, 2013 11:16
Show Gist options
  • Save kkosuge/7396946 to your computer and use it in GitHub Desktop.
Save kkosuge/7396946 to your computer and use it in GitHub Desktop.
MiniMagick で正方形のアイコン作るやつ
class MiniMagick::Image
def square(size)
narrow = self[:width] > self[:height] ? self[:height] : self[:width]
combine_options do |c|
c.gravity "center"
c.crop "#{narrow}x#{narrow}+0+0"
end
resize "#{size}x#{size}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment