Browse Source

Quick hack to prevent oversized PDF thumbnails.

main
discomrade 2 years ago
parent
commit
e0be553970
  1. 2
      post.php

2
post.php

@ -1032,7 +1032,7 @@ if (isset($_POST['delete'])) {
} else {
if ($file['extension'] == "pdf" && $config['pdf_file_thumbnail']){
$path = $file['thumb'];
$error = shell_exec_error( 'convert -thumbnail x300 -background white -alpha remove ' .
$error = shell_exec_error( 'convert -size '.$config['thumb_width'].'x'.$config['thumb_height'].' -thumbnail '.$config['thumb_width'].'x'.$config['thumb_height'].' -background white -alpha remove ' .
escapeshellarg($file['tmp_name']. '[0]') . ' ' .
escapeshellarg($file['thumb']));

Loading…
Cancel
Save