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