bugGNU GRUB - Bugs: bug #41295, Optimize PNGs

 
 

You are not allowed to post comments on this tracker with your current authentication level.

bug #41295: Optimize PNGs

Submitter:  Ville Skyttä <scop>
Submitted:  Tue 21 Jan 2014 11:28:03 PM UTC
   
 
Category:  User Interface Severity:  Major
Priority:  5 - Normal Item Group:  Action Request
Status:  None Privacy:  Public
Assigned to:  None Originator Name: 
Open/Closed:  Open Release:  Git master
Release:  Reproducibility:  Every Time
Planned Release:  2.02

Sat 12 Mar 2016 02:15:48 PM UTC, comment #1: 

...and even a bit more can be achieved with zopflipng:

$ for file in $(find . -name *.png) ; do zopflipng -m $file $file.new && mv $file.new $file ; done
[...]
$ du -bc $(find . -name "*.png") | tail -n 1
1363348 total

Ville Skyttä <scop>
Tue 21 Jan 2014 11:28:03 PM UTC, original submission:  

Optimizing PNGs would save some space without drawbacks AFAICS.

$ du -bc $(find . -name "*.png") | tail -n 1
1917732 total
$ find . -name "*.png" | xargs optipng -o7
[...]
$ du -bc $(find . -name "*.png") | tail -n 1
1481810 total

Ville Skyttä <scop>

 

(Note: upload size limit is set to 16384 kB, after insertion of the required escape characters.)

No files currently attached

 

Depends on the following items: None found

Items that depend on this one: None found

 

Carbon-Copy List
  • -email is unavailable- added by phcoder (Updated the item)
  • -email is unavailable- added by scop (Submitted the item)
  •  

    There are 0 votes so far. Votes easily highlight which items people would like to see resolved in priority, independently of the priority of the item set by tracker managers.

     

    Follows 1 latest change.

    Date Changed by Updated Field Previous Value => Replaced by
    2016-03-02 phcoder Planned ReleaseNone 2.02

    Back to the top

    Powered by Savane 3.13-f8d8.
    Corresponding source code