Advertisement
Guest User

psd to png

a guest
Feb 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. var files = openDialog();
  2.  
  3. for(var key in files) {
  4. var inFile = files[key];
  5. open(inFile);
  6.  
  7. var pngOptions = new PNGSaveOptions();
  8. pngOptions.interlaced = false;
  9. app.activeDocument.saveAs(inFile, pngOptions, true, Extension.LOWERCASE);
  10. app.activeDocument.close();
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement