GNU 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: |
Ville Skyttä <scop> |
Tue 21 Jan 2014 11:28:03 PM UTC, original submission:
Optimizing PNGs would save some space without drawbacks AFAICS.
|
Ville Skyttä <scop> |
No files currently attached
Depends on the following items: None found
Items that depend on this one: None found
Carbon-Copy List
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 Release | None | ![]() |
2.02 |
...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