mirror of
https://github.com/Piwigo/Piwigo.git
synced 2025-04-28 04:09:56 +03:00
bug 2164 fixed: disable automatic rotation if we can't read EXIF data
git-svn-id: http://piwigo.org/svn/trunk@9021 68402e56-0260-453c-a942-63ccdbb3a9ee
This commit is contained in:
parent
27203f1345
commit
aae2301da9
1 changed files with 5 additions and 0 deletions
|
@ -601,6 +601,11 @@ function get_rotation_angle($source_filepath)
|
|||
return null;
|
||||
}
|
||||
|
||||
if (!function_exists('exif_read_data'))
|
||||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
$rotation = null;
|
||||
|
||||
$exif = exif_read_data($source_filepath);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue