Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Triggered in: System\Classes\ImageResizer.php
Enables post processing of resized images after they've been resized before the resizing process is finalized (ex. adding watermarks, further optimizing, etc)
Example usage:
Event::listen('system.resizer.afterResize', function ((\System\Classes\ImageResizer) $resizer, (string) $localTempPath) {
// Get the resized image data
$resizedImageContents = file_get_contents($localTempPath);
// Post process the image
$processedContents = TinyPNG::optimize($resizedImageContents);
// Place the processed image in the correct location for the resizer to finish processing it
file_put_contents($localTempPath, $processedContents);
});
Sign up to our newsletter to receive updates on Winter CMS releases,
new features in the works, and much more.
We'll never spam or give
this address away.
Published May 2, 2022
v1.2 with Laravel 9 Support Now Available For Testing!
Released February 15, 2022
11 UX/UI Improvements, 12 API Changes, 12 Bug Fixes, 6 Security Improvements, 8 Translation Improvements, 5 Community Improvements, 1 Dependency