Cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

How to create 8-bit greyscale PNG on Mac?

There's pretty cool ability to color greayscale images.

https://dev.fitbit.com/build/guides/user-interface/css/#image-grayscale-magic-

However, I couldn't find the way to create such images on MacOS. Any suggestions?

Best Answer
0 Votes
1 REPLY 1

You can instal ImageMagick on MacOS, then use that to convert the images.

 

convert original.png -colorspace gray final.png
Best Answer