Не удалось преобразовать документ первой страницы PDF в миниатюру изображения в PHP CodeIngiter - PullRequest
0 голосов
/ 13 января 2020

Я использую Ghostscript 9.50 и ImageMagick 7.0.9 для создания эскиза первой страницы из загруженных документов PDF.

Вот мой код, полученный из http://www.rainbodesign.com/pub/image-tools/pdf-to-jpg.html, затем я использую это как функция в моем контроллере Ebook

function thumbnail(){
  $pdfPath = $_SERVER['DOCUMENT_ROOT'] . str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']);         // Path to PDF files on the server
  $imagesPath = $_SERVER['DOCUMENT_ROOT'] . str_replace(basename($_SERVER['SCRIPT_NAME']),"",$_SERVER['SCRIPT_NAME']) . 'ebooks/';      // Path to your images directory on the server
  $thumbsPath = $imagesPath . 'thumbnails/';                // Path to image thumbnails directory
  $thumbsize = 250;                     // Width of thumbnail images (set to 0 for full size)
  $pageNo = 0;                          // Page # from PDF to convert (ordinal!)

  // Constants and Defaults
  // ----------------------
  $theWMType = 'jpg:';
  $extension = '.jpg';
  $pdf = '';
  $error = '';

  // Fetch user settings and default overrides via query string
  if (isset($_GET['src'])) { $pdf = $_GET['src']; }
  if (isset($_GET['path'])) { $pdfPath = $_SERVER['DOCUMENT_ROOT'] . '/' . $_GET['path']; }
  if (isset($_GET['width'])) { $thumbsize = $_GET['width']; }
  if (isset($_GET['page'])) { $pageNo = $_GET['page'] - 1; }    // Page # is ordinal in ImageMagick!

  if ($pdf == '') { $error .= "Source Image Not Specified.<br>\n"; }

  $original = $pdfPath . $pdf;                  // Add file path to PDF file name
  $originalBase = basename($pdf,'.pdf');                // Extract PDF file name basename w/o extension
  $thumbnail = $thumbsPath . $originalBase . $extension;        // Use basename for the thumbnail .jpg file name

  if (!file_exists($original)) {                    // Make sure PDF file exists
    $error .= "Source PDF Document Not Found<br>\n" . $original . "<br>\n";
  }

  // Fix file name(s) to select 1st page of PDF and enquote $original if it/they contain <space>s.
  if (strpos($original, ' ') !== false) {
    $original = "\"" . $original . "[$pageNo]\"";       // Enclose file name in quotes and add Page #
    $thumbnail = str_replace(' ', '_', $thumbnail);     // Replace <space>s with underscores
  } else {
    $original = $original . "[$pageNo]";            // Just add Page # to PDF $original
  }

  // Check to see if the thumbnail already exists in the "cache"
  if (!file_exists($thumbnail)) {

  // No! Convert PDF to JPG with ImageMagick/GhostScript now!
    if ($error == '') {
      $wmCmd = "convert $original";
      if ($thumbsize != 0) { $wmCmd .= " -resize " . $thumbsize . "x"; }
      $wmCmd .= " $theWMType$thumbnail";
      $result = exec($wmCmd);
    } // endif $error == ''

  // A little error-checking overkill
    if (!file_exists($thumbnail)) {
    $error .= "Convert Failed!  Can't find $thumbnail<br>\n";
    $error .= $result . "<br>\n" . $original . "<br>\n" . $thumbnail . "<br>\n";
    } // endif !file_exists

  } // endif !file_exists($thumbnail)

  if ($error != '') {               // Did we see an error?
  header("Content-type: text/html\n");      // Yes! Send MIME-type header for HTML files
  echo($error);
    } else {
  header("Content-type: image/jpeg\n"); // No.  OK, send MIME-type header for JPEG files
  echo(file_get_contents($thumbnail));      // Fetch image file contents and send it!
  } // endif $error

  exit;
}

Но когда я хочу отобразить миниатюру там:

<img src="<?= base_url('ebook/thumbnail?src=ebooks/' . $e->file) ?>" width="100" alt="pdf document">

Изображение не может отображаться и при загрузке URL из img тэг 'sr c' в моем браузере, чтобы проверить, я получаю эту ошибку:

Convert Failed! Can't find D:/htdocs/halokes_library/ebooks/thumbnails/XML_Bible.jpg

D:/htdocs/halokes_library/ebooks/XML_Bible.pdf[0]
D:/htdocs/halokes_library/ebooks/thumbnails/XML_Bible.jpg

Есть мысли?

...