I hope this there is a simple answer. I'd like to write an IF ELSE statement to deal with indexed color images differently. I'd like to do something different to images that are NOT indexed color. How to refer to an image in photoshop as an indexed color document? I couldn't find a reference in the scripting guide...
Thanks!
indexed color document
-
Mikaeru
indexed color document
Code: Select allif (app.activeDocument.mode === DocumentMode.INDEXEDCOLOR)
{
// Indexed color
}
else
{
// NOT indexed color
}
{
// Indexed color
}
else
{
// NOT indexed color
}