tinyimg
tinyimg copied to clipboard
TYPO3-Extension which compresses images (png & jpg) uploaded in the backend with the tinypng API
Check for possibility to add custom Assets and HTML to FileList without overriding the whole Template.
Add an option to the command to allow the user to calculate the estimated costs of compressing all images.
By passing the --countFiles option to the command, the user is able to see a price calculation before running the compression. This produces an output like: | Files compressed this...
Maybe by adding an extra overlay when a file is uploaded? Any ideas are welcome.
Please make this extension compatible with TYPO3 13. Thank you very much!
Resolves #92
Reading the code https://github.com/schmitzal/tinyimg/blob/main/Classes/Service/CompressImageService.php#L80-L85 Only jp(e)g and png mimetypes are sent to compression. TinyPNG mentions the following files in there faq > WebP, JPG, PNG and APNG (animated PNG) So...
With PHP 8.4 we're getting the following deprecation warning: ```bash PHP Deprecated: Schmitzal\Tinyimg\Command\CompressImagesCommand::__construct(): Implicitly marking parameter $name as nullable is deprecated, the explicit nullable type must be used instead in...