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.
|
|
|
|
*/
|
|
|
|
class OC_Preview_Image extends OC_Preview_Provider{
|
|
|
|
|
|
|
|
public function getMimeType(){
|
|
|
|
return '/image\/.*/';
|
|
|
|
}
|
2013-05-17 21:08:16 +04:00
|
|
|
|
2013-05-10 01:59:16 +04:00
|
|
|
public function getThumbnail($path,$maxX,$maxY,$scalingup,$fileview) {
|
|
|
|
//new image object
|
2013-05-27 12:45:21 +04:00
|
|
|
$image = new \OC_Image($fileview->fopen($path, 'r'));
|
2013-05-10 01:59:16 +04:00
|
|
|
//check if image object is valid
|
2013-04-25 14:51:44 +04:00
|
|
|
if (!$image->valid()) return false;
|
2013-05-27 12:45:21 +04:00
|
|
|
|
2013-04-25 14:51:44 +04:00
|
|
|
return $image;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
OC_Preview::registerProvider('OC_Preview_Image');
|