Merge remote-tracking branch 'upstream/develop' into issue-13845

This commit is contained in:
Michael
2024-02-05 22:17:43 +00:00

View File

@@ -175,6 +175,7 @@ class Image
$this->valid = true;
imagealphablending($this->image, false);
imagesavealpha($this->image, true);
imageinterlace($this->image, true);
return true;
}
@@ -667,9 +668,6 @@ class Image
$stream = fopen('php://memory','r+');
// Enable interlacing
imageinterlace($this->image, true);
switch ($this->getType()) {
case 'image/png':
$quality = DI::config()->get('system', 'png_quality');