-
-
Save jalbertbowden/6186c7fe7777cb8b0eb75571271cd67c 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
// change color mode of document in photoshop | |
// http://ps-scripts.com/bb/viewtopic.php?f=9&t=3158&start=0 | |
var doc = activeDocument; | |
var ext= doc.name.toLowerCase().match(/[^\.]+$/); | |
if(doc.mode !=DocumentMode.CMYK && ext == "tif"){ | |
doc.changeMode(ChangeMode.CMYK); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment