use svg to generate filetype icon if imagick available

This commit is contained in:
Georg Ehrke 2013-09-23 09:45:36 +02:00 committed by Morris Jobke
parent 981608cf6b
commit 4ac3ecace2
1 changed files with 16 additions and 1 deletions

View File

@ -20,7 +20,22 @@ class Unknown extends Provider {
$path = \OC_Helper::mimetypeIcon($mimetype);
$path = \OC::$SERVERROOT . substr($path, strlen(\OC::$WEBROOT));
return new \OC_Image($path);
if (extension_loaded('imagick')) {
$path = substr_replace($path, 'png', -3);
$content = file_get_contents($path);
$svg = new \Imagick();
$svg->setBackgroundColor(new \ImagickPixel('transparent'));
$svg->readImageBlob($content);
$svg->setImageFormat('png32');
$image = new \OC_Image();
$image->loadFromData($svg);
} else {
$image = new \OC_Image($path);
}
return $image;
}
}