nextcloud/lib/preview/svg.php

33 lines
840 B
PHP
Raw Normal View History

2013-05-21 14:23:31 +04:00
<?php
/**
* Copyright (c) 2013 Georg Ehrke georg@ownCloud.com
* This file is licensed under the Affero General Public License version 3 or
* later.
* See the COPYING-README file.
*/
if (extension_loaded('imagick')){
2013-05-21 14:23:31 +04:00
class OC_Preview_SVG extends OC_Preview_Provider{
public function getMimeType(){
return '/image\/svg\+xml/';
}
2013-05-21 14:23:31 +04:00
public function getThumbnail($path,$maxX,$maxY,$scalingup,$fileview) {
$svg = new Imagick();
$svg->setResolution($maxX, $maxY);
$svg->readImageBlob('<?xml version="1.0" encoding="UTF-8" standalone="no"?>' . $fileview->file_get_contents($path));
$svg->setImageFormat('jpg');
2013-05-21 14:23:31 +04:00
//new image object
$image = new \OC_Image($svg);
//check if image object is valid
if (!$image->valid()) return false;
2013-05-21 14:23:31 +04:00
return $image;
}
2013-05-21 14:23:31 +04:00
}
OC_Preview::registerProvider('OC_Preview_SVG');
}