From 5b420c7d0d436a99abd4cef1ef58276e5723b140 Mon Sep 17 00:00:00 2001 From: Hadi Nategh Date: Mon, 22 Jul 2019 15:01:13 +0200 Subject: [PATCH] Reduce letter avatar size by 50% --- api/src/avatar.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/src/avatar.php b/api/src/avatar.php index 43c6078ecc..72d3a10db2 100644 --- a/api/src/avatar.php +++ b/api/src/avatar.php @@ -107,7 +107,7 @@ class avatar if ($ttf) { ob_start(); - imagejpeg($image, null,100); + imagejpeg($image, null,50); $result = ob_get_contents(); ob_clean(); imagedestroy($image);