aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Thumbs/Text.php
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2023-03-24 09:01:06 +0000
committerMario <mario@mariovavti.com>2023-03-24 09:01:06 +0000
commit70b3c8080ecb3bafea7dd57ec07a410061b26953 (patch)
treedb6d4f119409147a80f2e57b1b815d12b08bd46c /Zotlabs/Thumbs/Text.php
parent2c483c460a2d5c806b9e62097673ad237e6b154a (diff)
downloadvolse-hubzilla-70b3c8080ecb3bafea7dd57ec07a410061b26953.tar.gz
volse-hubzilla-70b3c8080ecb3bafea7dd57ec07a410061b26953.tar.bz2
volse-hubzilla-70b3c8080ecb3bafea7dd57ec07a410061b26953.zip
encode object after we have dealt with deleted items and work around a php error
Diffstat (limited to 'Zotlabs/Thumbs/Text.php')
-rw-r--r--Zotlabs/Thumbs/Text.php18
1 files changed, 11 insertions, 7 deletions
diff --git a/Zotlabs/Thumbs/Text.php b/Zotlabs/Thumbs/Text.php
index 3ee7819bd..31e27d014 100644
--- a/Zotlabs/Thumbs/Text.php
+++ b/Zotlabs/Thumbs/Text.php
@@ -11,6 +11,10 @@ class Text {
function Thumb($attach,$preview_style,$height = 300, $width = 300) {
+ if (empty($attach['content'])) {
+ return;
+ }
+
$stream = @fopen(dbunescbin($attach['content']),'rb');
if($stream) {
$content = trim(stream_get_contents($stream,4096));
@@ -25,13 +29,13 @@ class Text {
$colour = imagecolorallocate($image,0,0,0);
$border = imagecolorallocate($image,208,208,208);
- $x1 = 0;
- $y1 = 0;
- $x2 = ImageSX($image) - 1;
- $y2 = ImageSY($image) - 1;
+ $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);
+ for($i = 0; $i < 2; $i++) {
+ ImageRectangle($image, $x1++, $y1++, $x2--, $y2--, $border);
}
foreach($content_a as $l => $t) {
@@ -46,4 +50,4 @@ class Text {
imagejpeg($image,dbunescbin($attach['content']) . '.thumb');
}
}
-} \ No newline at end of file
+}