diff options
author | KN4CK3R <KN4CK3R@users.noreply.github.com> | 2019-07-10 22:12:02 +0200 |
---|---|---|
committer | Frédéric Guillot <fred@kanboard.net> | 2019-07-10 13:12:02 -0700 |
commit | 1a39c46620febdb22d8b0e4cadbbdeeefa00c3ac (patch) | |
tree | ba31a11bede861a71f2c026115a712769cf987d7 /app/Core | |
parent | d3d55224329681722b52a84b31f141bf78aaa134 (diff) |
Save thumbnails as PNG to allow transparency
Diffstat (limited to 'app/Core')
-rw-r--r-- | app/Core/Thumbnail.php | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/Core/Thumbnail.php b/app/Core/Thumbnail.php index fbe14d1b..ba93747a 100644 --- a/app/Core/Thumbnail.php +++ b/app/Core/Thumbnail.php @@ -10,7 +10,7 @@ namespace Kanboard\Core; */ class Thumbnail { - protected $quality = 95; + protected $compression = -1; protected $metadata = array(); protected $srcImage; protected $dstImage; @@ -124,6 +124,9 @@ class Thumbnail $this->dstImage = imagecreatetruecolor($width, $height); } + imagealphablending($this->dstImage, false); + imagesavealpha($this->dstImage, true); + imagecopyresampled($this->dstImage, $this->srcImage, $dstX, $dstY, 0, 0, $dstWidth, $dstHeight, $srcWidth, $srcHeight); return $this; @@ -138,7 +141,7 @@ class Thumbnail */ public function toFile($filename) { - imagejpeg($this->dstImage, $filename, $this->quality); + imagepng($this->dstImage, $filename, $this->compression); imagedestroy($this->dstImage); imagedestroy($this->srcImage); return $this; @@ -153,7 +156,7 @@ class Thumbnail public function toString() { ob_start(); - imagejpeg($this->dstImage, null, $this->quality); + imagepng($this->dstImage, null, $this->compression); imagedestroy($this->dstImage); imagedestroy($this->srcImage); return ob_get_clean(); @@ -166,7 +169,7 @@ class Thumbnail */ public function toOutput() { - imagejpeg($this->dstImage, null, $this->quality); + imagepng($this->dstImage, null, $this->compression); imagedestroy($this->dstImage); imagedestroy($this->srcImage); } |