diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-20 15:04:08 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-20 15:04:08 -0800 |
commit | babe14410c92b2ae6985aebf69d0e755c0fc2045 (patch) | |
tree | 6ec1053cf706b82c44438982ead9ae360939fd83 /Zotlabs/Daemon/Thumbnail.php | |
parent | 4cd0b745cbc24a035a5e9ba488917ec7beeda888 (diff) | |
parent | 250d758d74fa1e117ed11c884a0c26040e696494 (diff) | |
download | volse-hubzilla-babe14410c92b2ae6985aebf69d0e755c0fc2045.tar.gz volse-hubzilla-babe14410c92b2ae6985aebf69d0e755c0fc2045.tar.bz2 volse-hubzilla-babe14410c92b2ae6985aebf69d0e755c0fc2045.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'Zotlabs/Daemon/Thumbnail.php')
-rw-r--r-- | Zotlabs/Daemon/Thumbnail.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/Zotlabs/Daemon/Thumbnail.php b/Zotlabs/Daemon/Thumbnail.php new file mode 100644 index 000000000..aeea07410 --- /dev/null +++ b/Zotlabs/Daemon/Thumbnail.php @@ -0,0 +1,62 @@ +<?php /** @file */ + +namespace Zotlabs\Daemon; + + +class Thumbnail { + + static public function run($argc,$argv) { + + if(! $argc == 2) + return; + + $c = q("select * from attach where hash = '%s' ", + dbesc($argv[1]) + ); + + if(! $c) + return; + + $preview_style = intval(get_config('system','thumbnail_security',0)); + + $attach = $c[0]; + $isize = 300; + + if(strpos($attach['filetype'],'text/') !== false) { + $stream = @fopen($attach['content'],'rb'); + if($stream) { + $content = trim(stream_get_contents($stream,4096)); + $content = str_replace("\r",'',$content); + $content_a = explode("\n",$content); + } + if($content_a) { + $fsize = 4; + $lsize = 8; + $image = imagecreate($isize,$isize); + imagecolorallocate($image,255,255,255); + $colour = imagecolorallocate($image,0,0,0); + $border = imagecolorallocate($image,64,64,64); + + $x1 = 0; + $y1 = 0; + $x2 = ImageSX($image) - 1; + $y2 = ImageSY($image) - 1; + + for($i = 0; $i < 2; $i++) { + ImageRectangle($image, $x1++, $y1++, $x2--, $y2--, $border); + } + + foreach($content_a as $l => $t) { + $l = $l + 1; + $x = 3; + $y = ($l * $lsize) + 3 - $fsize; + imagestring($image,1,$x,$y,$t,$colour); + if(($l * $lsize) >= $isize) { + break; + } + } + imagejpeg($image,$attach['content'] . '.thumb'); + } + } + } +}
\ No newline at end of file |