Rsyslog Error 25128: The function imageantialias() is not available in your PHP installation.
Error 25128: The function imageantialias() is not available in your PHP installation.
To solve this problem, open the gd_image.inc.php inside the JpGraph folder, and disable the line start with JpGraphError::RaiseL(25128); in function SetAntiAliasing.
We can refer the following code.
function SetAntiAliasing($aFlg=true) {
$this->use_anti_aliasing = $aFlg;
if( function_exists('imageantialias') ) {
imageantialias($this->img,$aFlg);
}
else {
//JpGraphError::RaiseL(25128);//('The function imageantialias() is not available in your PHP installation. Use the GD version that comes with PHP and not the standalone version.')
}
}
That's all….