Skip to content

Instantly share code, notes, and snippets.

@gmccreight
Created February 4, 2012 01:34
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 gmccreight/1734300 to your computer and use it in GitHub Desktop.
Save gmccreight/1734300 to your computer and use it in GitHub Desktop.
Recursively process all the @2x images to create the 1x images alongside them
#!/usr/bin/env ruby
# Recursively process all the @2x images to create the 1x images alongside them
# If you've used this script in the past, you may only want to process any @2x
# images that are newer than the 1x images you already have.
require 'find'
require 'fileutils'
mode = ARGV[0]
if mode !~ /^(all|newer)$/
puts "usage: #{$0} all | newer"
exit
end
Find.find(".") do |path|
if FileTest.directory?(path)
if File.basename(path)[0] == ?. and File.basename(path) != '.'
Find.prune
else
next
end
else
file_basename = File.basename(path)
if file_basename =~ /@2x.png/
dest_path = path.gsub(/@2x.png$/, ".png")
should_process = false
if mode == "all"
should_process = true
elsif mode == "newer"
if ! File.exists?(dest_path)
should_process = true
elsif File.mtime(path) > File.mtime(dest_path)
should_process = true
end
end
if should_process
cmd = "convert #{path} -resize 50% #{dest_path}"
puts cmd
`#{cmd}`
end
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment