Skip to main content
Inspiring
May 31, 2017
Question

Is it possible to Export in Grayscale mode png-8

  • May 31, 2017
  • 1 reply
  • 504 views

By default when exporting png's it will be PNG8 indexed (With color information) for us to get true Grayscale artists have to turn on the Grayscale mode:

Can I export each layer with the proper png8 Grayscale, without having to select Grayscale mode?

This topic has been closed for replies.

1 reply

i73Author
Inspiring
June 1, 2017

Now I see I can use:

  error = sPSActionDescriptor->PutObject(desc, keyAs, classGrayscaleMode, EPSDescriptor);

  if (error) goto returnError;

     ...

  error = sPSActionControl->Play(&result, eventExport, desc, plugInDialogSilent);

  if (error) goto returnError;

But that's just breaking my action when I add it. Any suggestions?