Skip to content

Instantly share code, notes, and snippets.

@bomberstudios
Created November 20, 2012 10:37
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bomberstudios/4117183 to your computer and use it in GitHub Desktop.
Save bomberstudios/4117183 to your computer and use it in GitHub Desktop.
Converts PSD files in a folder to PNG
Dir.glob("*.psd").each do |file|
system("sips -s format png #{file} --out #{File.basename(file,'.psd')}.png")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment