function pImage::render in Visitors 7.2
Same name and namespace in other branches
- 7 pChart/class/pImage.class.php \pImage::render()
File
- pChart/
class/ pImage.class.php, line 148
Class
Code
function render($FileName) {
if ($this->TransparentBackground) {
imagealphablending($this->Picture, false);
imagesavealpha($this->Picture, true);
}
imagepng($this->Picture, $FileName);
}