si te fijas el enlace que público
abimaelrc el código que hace la transparencia se encuentra en el método
resize() que son son estas lineas:
Código PHP:
Ver originalpublic function resize($width, $height)
{
if($this->getImageType() == 'image/png' && $this->_transparent === true){
}
imagecopyresampled($newImage, $this->_image
, 0, 0, 0, 0, $width, $height, $this->getWidth(), $this->getHeight()); $this->_image = $newImage;
}
Un Saludo