aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Thumbs/Text.php
diff options
context:
space:
mode:
authorzotlabs <mike@macgirvin.com>2017-11-21 17:30:40 -0800
committerzotlabs <mike@macgirvin.com>2017-11-21 17:30:40 -0800
commit6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca (patch)
treee8a91efc272bab533555d97a7a0533c563a00853 /Zotlabs/Thumbs/Text.php
parentbabe14410c92b2ae6985aebf69d0e755c0fc2045 (diff)
parentd942818bd9d9e90db7a3083bfe33a54732f6184d (diff)
downloadvolse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.tar.gz
volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.tar.bz2
volse-hubzilla-6ac3fc4e0724a881ed3b26fa8d0912f38512d2ca.zip
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'Zotlabs/Thumbs/Text.php')
-rw-r--r--Zotlabs/Thumbs/Text.php49
1 files changed, 49 insertions, 0 deletions
diff --git a/Zotlabs/Thumbs/Text.php b/Zotlabs/Thumbs/Text.php
new file mode 100644
index 000000000..3ee7819bd
--- /dev/null
+++ b/Zotlabs/Thumbs/Text.php
@@ -0,0 +1,49 @@
+<?php
+
+namespace Zotlabs\Thumbs;
+
+
+class Text {
+
+ function MatchDefault($type) {
+ return(($type === 'text') ? true : false );
+ }
+
+ function Thumb($attach,$preview_style,$height = 300, $width = 300) {
+
+ $stream = @fopen(dbunescbin($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($width,$height);
+ imagecolorallocate($image,255,255,255);
+ $colour = imagecolorallocate($image,0,0,0);
+ $border = imagecolorallocate($image,208,208,208);
+
+ $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) >= $height) {
+ break;
+ }
+ }
+ imagejpeg($image,dbunescbin($attach['content']) . '.thumb');
+ }
+ }
+} \ No newline at end of file