Forked from rolftimmermans/compress-folder-with-tinypng.jsx
Last active
August 29, 2015 14:06
-
-
Save markus2610/d88fa3b6d6e91a64e029 to your computer and use it in GitHub Desktop.
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
| #target photoshop | |
| /* Open the given file, and compress with TinyPNG. */ | |
| function compressFile(file) { | |
| var document = open(file); | |
| if (document.mode == DocumentMode.INDEXEDCOLOR) { | |
| document.changeMode(ChangeMode.RGB); | |
| } | |
| var tinypng = new ActionDescriptor(); | |
| tinypng.putPath(charIDToTypeID("In "), file); /* Overwrite original! */ | |
| var compress = new ActionDescriptor(); | |
| compress.putObject(charIDToTypeID("Usng"), charIDToTypeID("tinY"), tinypng); | |
| executeAction(charIDToTypeID("Expr"), compress, DialogModes.NO); | |
| document.close(SaveOptions.DONOTSAVECHANGES); | |
| } | |
| /* Recursively compress files in the given folder, overwriting the originals. */ | |
| function compressFolder(folder) { | |
| var children = folder.getFiles(); | |
| for (var i = 0; i < children.length; i++) { | |
| var child = children[i]; | |
| if (child instanceof Folder) { | |
| compressFolder(child); | |
| } else { | |
| /* Only attempt to compress PNG files. */ | |
| if (child.name.slice(-4).toLowerCase() == ".png") { | |
| compressFile(child); | |
| } | |
| } | |
| } | |
| } | |
| try { | |
| compressFolder(Folder.selectDialog("Compress folder with TinyPNG")); | |
| } catch(error) { | |
| alert("Error while processing: " + error); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment