streams/Code/Thumbs/Pdf.php

50 lines
1.4 KiB
PHP
Raw Normal View History

2017-11-21 23:10:23 +00:00
<?php
2022-02-16 04:08:28 +00:00
namespace Code\Thumbs;
2017-11-21 23:10:23 +00:00
2021-12-02 23:02:31 +00:00
class Pdf
{
public function Match($type)
{
return (($type === 'application/pdf') ? true : false);
}
public function Thumb($attach, $preview_style, $height = 300, $width = 300)
{
$photo = false;
$file = dbunescbin($attach['content']);
$tmpfile = $file . '.pdf';
$outfile = $file . '.jpg';
$istream = fopen($file, 'rb');
$ostream = fopen($tmpfile, 'wb');
if ($istream && $ostream) {
pipe_streams($istream, $ostream);
fclose($istream);
fclose($ostream);
}
$imagick_path = get_config('system', 'imagick_convert_path');
if ($imagick_path && @file_exists($imagick_path)) {
$cmd = $imagick_path . ' ' . escapeshellarg(PROJECT_BASE . '/' . $tmpfile . '[0]') . ' -resize ' . $width . 'x' . $height . ' ' . escapeshellarg(PROJECT_BASE . '/' . $outfile);
// logger('imagick thumbnail command: ' . $cmd);
for ($x = 0; $x < 4; $x++) {
exec($cmd);
if (!file_exists($outfile)) {
logger('imagick scale failed. Retrying.');
continue;
}
}
if (!file_exists($outfile)) {
logger('imagick scale failed.');
} else {
@rename($outfile, $file . '.thumb');
}
}
@unlink($tmpfile);
}
2017-11-21 23:10:23 +00:00
}