system.resizer.handleMissingImage

Triggered in System\Classes\ResizeImages.

Provides an opportunity to configure a custom image when the resizer couldn't find the original file

Example usage:

Event::listen('system.resizer.handleMissingImage', function(&$sourcePath) {
    $sourcePath = plugins_path('vendor/plugin/assets/broken-image.jpg');
});