From 16f584608f8147a58bfe295ff3295aae0f85b38a Mon Sep 17 00:00:00 2001 From: zotlabs Date: Sun, 19 Nov 2017 16:56:59 -0800 Subject: text thumbnails in cloud tile mode --- Zotlabs/Daemon/Thumbnail.php | 62 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 Zotlabs/Daemon/Thumbnail.php (limited to 'Zotlabs/Daemon/Thumbnail.php') 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 @@ + $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 -- cgit v1.2.3