perdon se me habia olvidado otro error que cometias:
esto que tienes asi:
$new_img_source = imagecreate($img_w,$img_h);
$new_img_w = 168;
$new_img_h = 126;
debe ir asi:
$new_img_w = 168;
$new_img_h = 126;
$new_img_source = imagecreate($new_img_w,$new_img_h); |