Module: Slack::Emogen::Image
Instance Method Summary collapse
Instance Method Details
#resize(path) ⇒ Object
7 8 9 10 11 12 |
# File 'lib/slack/emogen/image.rb', line 7 def resize(path) fail unless File.exist?(path) image = MiniMagick::Image.open(path) image.resize "128x128" image.path end |