diff options
author | zotlabs <mike@macgirvin.com> | 2018-06-26 17:19:32 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-06-26 17:19:32 -0700 |
commit | 156010050c874eb51f8d2b2334d36909f99e732c (patch) | |
tree | 1aae6de1e8bd990ebe911300b7cefe8d975e5059 /Zotlabs/Thumbs/Video.php | |
parent | 524551a05c9ea7436afc713e2564aacd9276541e (diff) | |
download | volse-hubzilla-156010050c874eb51f8d2b2334d36909f99e732c.tar.gz volse-hubzilla-156010050c874eb51f8d2b2334d36909f99e732c.tar.bz2 volse-hubzilla-156010050c874eb51f8d2b2334d36909f99e732c.zip |
imagick converter: -thumbnail doesn't preserve exif, -resize does
Diffstat (limited to 'Zotlabs/Thumbs/Video.php')
-rw-r--r-- | Zotlabs/Thumbs/Video.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Thumbs/Video.php b/Zotlabs/Thumbs/Video.php index ff4d10a36..15d3ace12 100644 --- a/Zotlabs/Thumbs/Video.php +++ b/Zotlabs/Thumbs/Video.php @@ -46,7 +46,7 @@ class Video { $imagick_path = get_config('system','imagick_convert_path'); if($imagick_path && @file_exists($imagick_path)) { - $cmd = $imagick_path . ' ' . escapeshellarg(PROJECT_BASE . '/' . $tmpfile . '[0]') . ' -thumbnail ' . $width . 'x' . $height . ' ' . escapeshellarg(PROJECT_BASE . '/' . $outfile); + $cmd = $imagick_path . ' ' . escapeshellarg(PROJECT_BASE . '/' . $tmpfile . '[0]') . ' -resize ' . $width . 'x' . $height . ' ' . escapeshellarg(PROJECT_BASE . '/' . $outfile); // logger('imagick thumbnail command: ' . $cmd); /** @scrutinizer ignore-unhandled */ |