Actions
Task #63544
closedOptimize image sizes
Start date:
2014-12-03
Due date:
% Done:
100%
Estimated time:
TYPO3 Version:
7
PHP Version:
Tags:
Complexity:
Sprint Focus:
Description
Shrink images from around 14M to 9.6M
Command line tools used:- pngquant 2.3.1
- jpegoptim 1.3.0
Get current file size:
find . -regextype posix-extended -regex '.*.(jpg|png)' -print0 | du --files0-from=- -ch | tail -1
Optimize PNG:
find . -name "*.png" -exec pngquant --nofs --force --skip-if-larger --speed 1 --ext .png {} \;
Optimize JPG:
find . -name "*.jpg" -exec jpegoptim --strip-all {} \;
Updated by Gerrit Code Review about 10 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/34978
Updated by Andreas Kienast about 10 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset 20d640fe0c5799c4dbf1a44e64032c5d247b2de9.
Updated by Riccardo De Contardi over 7 years ago
- Status changed from Resolved to Closed
Actions