Project

General

Profile

Actions

Task #63544

closed

Optimize image sizes

Added by Andreas Kienast over 9 years ago. Updated over 6 years ago.

Status:
Closed
Priority:
Should have
Assignee:
-
Category:
-
Target version:
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 {} \;


Related issues 1 (0 open1 closed)

Related to TYPO3 Core - Bug #63823: Shrink Images patch breaks functional testsClosedAnja Leichsenring2014-12-13

Actions
Actions #1

Updated by Gerrit Code Review over 9 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

Actions #2

Updated by Andreas Kienast over 9 years ago

  • Status changed from Under Review to Resolved
  • % Done changed from 0 to 100
Actions #3

Updated by Riccardo De Contardi over 6 years ago

  • Status changed from Resolved to Closed
Actions

Also available in: Atom PDF