From 9607776966d5c0f8a132dd4275841298619907ea Mon Sep 17 00:00:00 2001 From: Steve Clay Date: Thu, 14 Jun 2012 11:09:40 -0400 Subject: Fixes #4577: Transparency converted to white instead of black --- engine/lib/filestore.php | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'engine/lib/filestore.php') diff --git a/engine/lib/filestore.php b/engine/lib/filestore.php index 86f6d9baa..93a127257 100644 --- a/engine/lib/filestore.php +++ b/engine/lib/filestore.php @@ -149,6 +149,12 @@ $x1 = 0, $y1 = 0, $x2 = 0, $y2 = 0, $upscale = FALSE) { return FALSE; } + // color transparencies white (default is black) + imagefilledrectangle( + $new_image, 0, 0, $params['newwidth'], $params['newheight'], + imagecolorallocate($new_image, 255, 255, 255) + ); + $rtn_code = imagecopyresampled( $new_image, $original_image, 0, -- cgit v1.2.3