Browse Source

post.php: do not strip orientation metadata

pull/114/head
Zankaria 4 weeks ago
parent
commit
cb5b465c57
  1. 2
      post.php

2
post.php

@ -1254,7 +1254,7 @@ function handle_post()
if ($config['redraw_image'] || (!@$file['exif_stripped'] && $config['strip_exif'] && ($file['extension'] == 'jpg' || $file['extension'] == 'jpeg' || $file['extension'] == 'webp' || $file['extension'] == 'png'))) {
if (!$config['redraw_image'] && $config['use_exiftool']) {
if (
$error = shell_exec_error('exiftool -overwrite_original -ignoreMinorErrors -q -q -all= ' .
$error = shell_exec_error('exiftool -overwrite_original -ignoreMinorErrors -q -q -all= -Orientation ' .
escapeshellarg($file['tmp_name']))
) {
error(_('Could not strip EXIF metadata!'), null, $error);

Loading…
Cancel
Save