Succss icon indicating copy to clipboard operation
Succss copied to clipboard

PNG or JPG?

Open marob opened this issue 9 years ago • 1 comments

When succss creates ".png" files, it is in fact JPGs!

A file theFile.png command tells: JPEG image data, JFIF standard 1.01

marob avatar Feb 17 '16 18:02 marob

Succss.options = {
    imgType: 'png',
    imgQuality: 100,
...

npm install optipng --save-dev add script to package.json

"optimize": "./node_modules/.bin/optipng css_test/img/*"

And this will be png at the result.

FDiskas avatar Apr 24 '17 09:04 FDiskas