Skip to content

Instantly share code, notes, and snippets.

@Yegorov
Created December 30, 2018 17:54
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 Yegorov/2f4254932122bb6e1e6aa685a55eebc0 to your computer and use it in GitHub Desktop.
Save Yegorov/2f4254932122bb6e1e6aa685a55eebc0 to your computer and use it in GitHub Desktop.
require "mini_magick"
in_name = "in.jpg"
out_name = "out.jpg"
image = MiniMagick::Image.open(in_name)
image.combine_options do |im|
im.extent image.dimensions.max
im.gravity "Center"
end
image.write(out_name)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment