Created
July 3, 2012 21:06
-
-
Save averyvery/3043125 to your computer and use it in GitHub Desktop.
Retina images with Guard
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guard 'process', :name => 'shrink-images', :command => 'ruby resize-mobile-images.rb mobileretina' do | |
watch /^images\/mobileretina\/.+/ | |
end |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require 'rmagick' | |
source = ARGV[0] | |
Dir.glob('images/' + source + '/*.*').each do |image_path| | |
GC.start | |
image = Magick::Image::read(image_path).first | |
image.resize!(image.columns / 2, image.rows / 2, Magick::GaussianFilter, 0.2) | |
new_path = image_path.sub(/retina/, 'normal') | |
image.write new_path | |
image.destroy! | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment