Skip to content

Instantly share code, notes, and snippets.

@giacomomacri
Created June 27, 2012 09:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save giacomomacri/3002605 to your computer and use it in GitHub Desktop.
Save giacomomacri/3002605 to your computer and use it in GitHub Desktop.
Adapt image to a fixed container
Dir.glob("*.png") do |file|
puts "#{File.basename(file)}"
system "convert #{file} -trim -background transparent -resize 190x340 -gravity center -extent 190x340 converted/#{file}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment