Fatal error: Call to undefined function: imagecreatefromjpeg() in c:\programmi\easyphp1-8\www\cms\leforcelle\administrator\components\com_ morfeoshow\helpers\upload.php on line 433
che errore è?
function img_create_from_file($sourcefile, $src_type)
{
ini_set('memory_limit', '32M');
switch ($src_type)
{
case 1: // for gif
$a = imagecreatefromgif($sourcefile);
return $a;
case 2: // for jpeg
$a = imagecreatefromjpeg($sourcefile); - riga 433 come scritto nell'errore
return $a;
case 3: // for png
$a = imagecreatefrompng($sourcefile);
return $a;
}
}
Attendo notizie.
Grazie Stefano