Code

From: create-emoji-question-graphics.rb

require 'mini_magick'
def montage_images_horizontally(image_to_be_appended, image)
  MiniMagick::Tool::Magick.new do |m|
    m.gravity('south')
    m << image
    m << image_to_be_appended
    m.smush.+(10)
    m << image
  end
end

Previously

Leave a comment on github