mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-08-08 17:53:08 +02:00
fixes #2494 only picture_ext files can be resized after upload
This commit is contained in:
@@ -946,6 +946,13 @@ function prepare_directory($directory)
|
|||||||
|
|
||||||
function need_resize($image_filepath, $max_width, $max_height)
|
function need_resize($image_filepath, $max_width, $max_height)
|
||||||
{
|
{
|
||||||
|
global $conf, $logger;
|
||||||
|
|
||||||
|
if (!in_array(strtolower(get_extension($image_filepath)), $conf['picture_ext']))
|
||||||
|
{
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
// TODO : the resize check should take the orientation into account. If a
|
// TODO : the resize check should take the orientation into account. If a
|
||||||
// rotation must be applied to the resized photo, then we should test
|
// rotation must be applied to the resized photo, then we should test
|
||||||
// invert width and height.
|
// invert width and height.
|
||||||
@@ -953,6 +960,7 @@ function need_resize($image_filepath, $max_width, $max_height)
|
|||||||
|
|
||||||
if ($width > $max_width or $height > $max_height)
|
if ($width > $max_width or $height > $max_height)
|
||||||
{
|
{
|
||||||
|
$logger->info(__FUNCTION__.' '.(string)$image_filepath.' is too big (current='.$width.'x'.$height.'px Vs max='.$max_width.'x'.$max_height.'px)');
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user