Skip to content

Instantly share code, notes, and snippets.

@matthewkcarr
Created August 29, 2012 16:51
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 matthewkcarr/3515551 to your computer and use it in GitHub Desktop.
Save matthewkcarr/3515551 to your computer and use it in GitHub Desktop.
using mini magick to add padding of white centered around an image
image = MiniMagick::Image.open('./ex-image.jpg')
image.combine_options(:convert) do |c|
c.extent('600x')
c.gravity('center')
c.background('white')
end
image.write('shaweet.jpg')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment