nextcloud/lib/preview/txt.php

68 lines
1.4 KiB
PHP
Raw Normal View History

<?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.
*/
2013-05-29 14:33:24 +04:00
namespace OC\Preview;
2013-05-29 15:11:43 +04:00
class TXT extends Provider {
2013-05-29 15:03:33 +04:00
public function getMimeType() {
return '/text\/.*/';
}
2013-05-29 15:03:33 +04:00
public function getThumbnail($path, $maxX, $maxY, $scalingup, $fileview) {
$content = $fileview->fopen($path, 'r');
$content = stream_get_contents($content);
$lines = preg_split("/\r\n|\n|\r/", $content);
2013-07-30 14:29:12 +04:00
$fontSize = 5; //5px
$lineSize = ceil($fontSize * 1.25);
$image = imagecreate($maxX, $maxY);
2013-07-30 14:29:12 +04:00
imagecolorallocate($image, 255, 255, 255);
$textColor = imagecolorallocate($image, 0, 0, 0);
2013-05-29 15:03:33 +04:00
foreach($lines as $index => $line) {
$index = $index + 1;
$x = (int) 1;
2013-07-30 14:29:12 +04:00
$y = (int) ($index * $lineSize) - $fontSize;
2013-07-30 14:29:12 +04:00
imagestring($image, 1, $x, $y, $line, $textColor);
2013-07-30 14:29:12 +04:00
if(($index * $lineSize) >= $maxY) {
break;
}
}
$image = new \OC_Image($image);
2013-05-28 13:31:48 +04:00
2013-06-11 12:56:16 +04:00
return $image->valid() ? $image : false;
}
}
\OC\Preview::registerProvider('OC\Preview\TXT');
2013-05-29 15:09:38 +04:00
class PHP extends TXT {
public function getMimeType() {
return '/application\/x-php/';
}
}
\OC\Preview::registerProvider('OC\Preview\PHP');
2013-05-30 13:12:12 +04:00
class JavaScript extends TXT {
public function getMimeType() {
return '/application\/javascript/';
}
}
\OC\Preview::registerProvider('OC\Preview\JavaScript');