Hi all I'm using imagecreatetruecolor to generate a thumbnail but my host has GD 1.x and imagecreatetruecolor needs GD 2 what can I use instead of imagecreatetruecolor ???
$tmp_img=imagecreatetruecolor($nuevoancho, $nuevoalto);
imagecopyresized($tmp_img, $image, 0, 0, 0, 0, $nuevoancho, $nuevoalto, $ancho, $alto);
imagedestroy($image);
$image=$tmp_img;
imagejpeg($image, "images/current_cam.jpg",70);
imagedestroy($image);