Created
November 10, 2013 11:16
-
-
Save kkosuge/7396946 to your computer and use it in GitHub Desktop.
MiniMagick で正方形のアイコン作るやつ
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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