nextcloud/lib/private/preview/provider.php

26 lines
804 B
PHP
Raw Normal View History

2013-04-25 14:51:44 +04:00
<?php
2013-05-29 14:33:24 +04:00
namespace OC\Preview;
2013-05-29 15:11:43 +04:00
abstract class Provider {
2013-04-25 14:51:44 +04:00
private $options;
public function __construct($options) {
$this->options=$options;
}
2013-05-17 21:08:16 +04:00
2013-04-25 14:51:44 +04:00
abstract public function getMimeType();
/**
* get thumbnail for file at path $path
* @param string $path Path of file
* @param int $maxX The maximum X size of the thumbnail. It can be smaller depending on the shape of the image
* @param int $maxY The maximum Y size of the thumbnail. It can be smaller depending on the shape of the image
* @param bool $scalingup Disable/Enable upscaling of previews
* @param object $fileview fileview object of user folder
* @return mixed
* false if no preview was generated
* OC_Image object of the preview
2013-04-25 14:51:44 +04:00
*/
2013-05-29 15:03:33 +04:00
abstract public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview);
2013-04-25 14:51:44 +04:00
}