Skip to content

Instantly share code, notes, and snippets.

View coolbluewillem's full-sized avatar

Willem van Veelen coolbluewillem

View GitHub Profile
@coolbluewillem
coolbluewillem / photoshop-resize-icons-for-ios
Created January 13, 2015 12:45
Photoshop script (.jsx) resizing icons automatically for iOS devices and create different Retina versions (@2x & @3x)
try
{
var inputFolder = Folder.selectDialog("Select a folder to process");
var fileList = inputFolder.getFiles("*.png");
var initialPrefs = app.preferences.rulerUnits; // will restore at end
app.preferences.rulerUnits = Units.PIXELS; // use pixels
var destFolder = Folder.selectDialog( "Choose an output folder");
@coolbluewillem
coolbluewillem / photoshop-resize-icons-for-android
Created January 13, 2015 12:43
Photoshop script (.jsx) resizing icons automatically for Android devices and puts them in different folders (ldpi, mdpi, hdpi, xhdpi, xxhdpi and xxxhdpi)
try
{
var inputFolder = Folder.selectDialog("Select a folder to process");
var fileList = inputFolder.getFiles("*.png");
var initialPrefs = app.preferences.rulerUnits; // will restore at end
app.preferences.rulerUnits = Units.PIXELS; // use pixels
var destFolder = Folder.selectDialog( "Choose an output folder");