This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// Copy this code into your config.php file | |
// Replace the default $maxDimension to meet your needs | |
// Read more about Kirby's Panel hooks at https://getkirby.com/docs/panel/developers/hooks | |
// Shrink large images on upload | |
kirby()->hook('panel.file.upload', 'shrinkImage'); | |
kirby()->hook('panel.file.replace', 'shrinkImage'); | |
function shrinkImage($file, $maxDimension = 1000) { |