2013-04-25 14:51:44 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2013 Frank Karlitschek frank@owncloud.org
|
2013-05-17 14:00:32 +04:00
|
|
|
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
|
2013-04-25 14:51:44 +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;
|
|
|
|
|
2013-05-29 15:11:43 +04:00
|
|
|
class Unknown extends Provider {
|
2013-04-25 14:51:44 +04:00
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getMimeType() {
|
2013-04-25 14:51:44 +04:00
|
|
|
return '/.*/';
|
|
|
|
}
|
|
|
|
|
2013-05-29 15:03:33 +04:00
|
|
|
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
|
2013-06-12 18:18:16 +04:00
|
|
|
$mimetype = $fileview->getMimeType($path);
|
|
|
|
|
2013-08-15 15:20:31 +04:00
|
|
|
$path = \OC_Helper::mimetypeIcon($mimetype);
|
|
|
|
$path = \OC::$SERVERROOT . substr($path, strlen(\OC::$WEBROOT));
|
2013-06-12 18:18:16 +04:00
|
|
|
|
2013-09-25 12:39:15 +04:00
|
|
|
$svgPath = substr_replace($path, 'svg', -3);
|
2013-09-23 11:45:36 +04:00
|
|
|
|
2014-02-14 14:23:39 +04:00
|
|
|
if (extension_loaded('imagick') && file_exists($svgPath) && count(@\Imagick::queryFormats("SVG")) === 1) {
|
2013-10-11 02:12:37 +04:00
|
|
|
|
|
|
|
// http://www.php.net/manual/de/imagick.setresolution.php#85284
|
2013-10-07 15:21:20 +04:00
|
|
|
$svg = new \Imagick();
|
2013-10-11 02:12:37 +04:00
|
|
|
$svg->readImage($svgPath);
|
|
|
|
$res = $svg->getImageResolution();
|
|
|
|
$x_ratio = $res['x'] / $svg->getImageWidth();
|
|
|
|
$y_ratio = $res['y'] / $svg->getImageHeight();
|
|
|
|
$svg->removeImage();
|
|
|
|
$svg->setResolution($maxX * $x_ratio, $maxY * $y_ratio);
|
2013-10-07 15:21:20 +04:00
|
|
|
$svg->setBackgroundColor(new \ImagickPixel('transparent'));
|
|
|
|
$svg->readImage($svgPath);
|
|
|
|
$svg->setImageFormat('png32');
|
2013-09-23 11:45:36 +04:00
|
|
|
|
2013-10-07 15:21:20 +04:00
|
|
|
$image = new \OC_Image();
|
|
|
|
$image->loadFromData($svg);
|
2013-09-23 11:45:36 +04:00
|
|
|
} else {
|
|
|
|
$image = new \OC_Image($path);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $image;
|
2013-05-17 21:08:16 +04:00
|
|
|
}
|
2013-04-25 14:51:44 +04:00
|
|
|
}
|
|
|
|
|
2013-09-23 17:33:16 +04:00
|
|
|
\OC\Preview::registerProvider('OC\Preview\Unknown');
|