REGRESSION: fixed background color for PaddedImage

This commit is contained in:
g4b0 2013-06-19 10:17:02 +02:00 committed by g4b0
parent 34287895ef
commit c06a9095df

View File

@ -350,7 +350,7 @@ class Image extends File {
* @param integer $height The height to size to
* @return Image
*/
public function PaddedImage($width, $height, $backgroundColor=null) {
public function PaddedImage($width, $height, $backgroundColor='FFFFFF') {
return $this->isSize($width, $height)
? $this
: $this->getFormattedImage('PaddedImage', $width, $height, $backgroundColor);