nextcloud/lib/private/preview/pdf.php

48 lines
1.0 KiB
PHP
Raw Normal View History

2013-05-10 01:59:16 +04:00
<?php
/**
2013-05-17 14:00:32 +04:00
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
2013-05-10 01:59:16 +04:00
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
2013-05-29 14:33:24 +04:00
namespace OC\Preview;
use Imagick;
2013-05-10 01:59:16 +04:00
if (extension_loaded('imagick')) {
2013-05-28 13:59:20 +04:00
$checkImagick = new Imagick();
if(count($checkImagick->queryFormats('PDF')) === 1) {
2013-05-28 13:59:20 +04:00
class PDF extends Provider {
2013-05-10 01:59:16 +04:00
public function getMimeType() {
return '/application\/pdf/';
2013-05-30 13:06:52 +04:00
}
2013-05-17 21:08:16 +04:00
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
$tmpPath = $fileview->toTmpFile($path);
//create imagick object from pdf
try{
$pdf = new Imagick($tmpPath . '[0]');
$pdf->setImageFormat('jpg');
} catch (\Exception $e) {
\OC_Log::write('core', $e->getmessage(), \OC_Log::ERROR);
return false;
}
unlink($tmpPath);
2013-05-10 01:59:16 +04:00
//new image object
$image = new \OC_Image($pdf);
//check if image object is valid
return $image->valid() ? $image : false;
}
2013-05-28 13:59:20 +04:00
}
2013-05-10 01:59:16 +04:00
\OC\Preview::registerProvider('OC\Preview\PDF');
}
2013-05-28 13:59:20 +04:00
}