diff options
author | zotlabs <mike@macgirvin.com> | 2018-04-22 18:12:16 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-04-22 18:12:16 -0700 |
commit | 55dc6fbc1cae70e4f2b207c517c8c9155fda9662 (patch) | |
tree | 9ddc0e8c082e01695d6156f9a98407cc6824b254 /include/photos.php | |
parent | 95059f2bfd2c7dbffe4dba2df277f7356fb124a1 (diff) | |
download | volse-hubzilla-55dc6fbc1cae70e4f2b207c517c8c9155fda9662.tar.gz volse-hubzilla-55dc6fbc1cae70e4f2b207c517c8c9155fda9662.tar.bz2 volse-hubzilla-55dc6fbc1cae70e4f2b207c517c8c9155fda9662.zip |
imagemagick preserves exif when scaling. GD does not. We do not want to preserve exif on thumbnails which we have rotated, as a browser reading the exif information could rotate them yet again. This checkin adds an abstract function to the generic photo driver which makes the behaviour consistent by stripping EXIF from imagick processed images. However, we will attempt to preserve any ICC colour profiles. See http://php.net/manual/en/imagick.stripimage.php
Diffstat (limited to 'include/photos.php')
-rw-r--r-- | include/photos.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/photos.php b/include/photos.php index 321f7159c..9ae0e6874 100644 --- a/include/photos.php +++ b/include/photos.php @@ -211,6 +211,10 @@ function photo_upload($channel, $observer, $args) { $ph->orient($exif); } + + $ph->clearexif(); + + @unlink($src); $max_length = get_config('system','max_image_length'); |