miércoles, 11 de septiembre de 2019
JpGraph Error 25128 PHP GD
Hola a todos amigos.
Trabajando con la librería de gráficos JpGraph me he encontrado con el error que describimos a continuación.
Se da tanto en la nueva versión como en la anterior y con php 5.2 / 7.10
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.’)
Lo he solucionado en gd_image.inc.php:
Línea 103:
// Should we use anti-aliasing. Note: This really slows down graphics!
function SetAntiAliasing($aFlg=true) {
$this->use_anti_aliasing = $aFlg;
if( function_exists(‘imageantialias’) ) {
imageantialias($this->img,$aFlg);
}
else {
/* COMENTAR SOLO ESTO
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.’)
}
}
Os paso el enlace de otro blog en el se que trata el tema por si os interesa:
https://oviedo.mx/jpgraph-error-25128-error-en-la-funcion-imageantialias-de-la-libreria-php-gd/#comment-24741
No hay comentarios:
Publicar un comentario
Gracias por vuestros aportes.