if (function_exists('imagecreatetruecolor'
)) { $create = 'imagecreatetruecolor';
$copy = 'imagecopyresampled';
} else { $create = 'imagecreate';
$copy = 'imagecopyresized';
} $dest =
$create($this->width,
$this->height
);
$matte =
imagecolorallocate($dest,
$red,
$green,
$blue);
imagefilledrectangle($dest, 0, 0,
$this->width,
$this->height,
$matte);
imagecopy($dest,
$srcImg, 0, 0, 0, 0,
$this->width,
$this->height
);
// Kill the file handles
imagedestroy($srcImg);
$this->resource =
$dest;
return $this;
} /**
* Flips an image along it's vertical or horizontal axis.
*
* @return $this
*/