Skip to content
Snippets Groups Projects
Commit fa461bef authored by Georg Ehrke's avatar Georg Ehrke Committed by Morris Jobke
Browse files

extract transparency fix from #8050

parent 38e309b0
No related branches found
No related tags found
No related merge requests found
......@@ -870,6 +870,14 @@ class OC_Image {
imagedestroy($process);
return false;
}
// preserve transparency
if($this->imageType == IMAGETYPE_GIF or $this->imageType == IMAGETYPE_PNG) {
imagecolortransparent($process, imagecolorallocatealpha($process, 0, 0, 0, 127));
imagealphablending($process, false);
imagesavealpha($process, true);
}
imagecopyresampled($process, $this->resource, 0, 0, $x, $y, $w, $h, $w, $h);
if ($process == false) {
OC_Log::write('core', __METHOD__.'(): Error resampling process image '.$w.'x'.$h, OC_Log::ERROR);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment