ccrevcypsys Posted January 23, 2008 Share Posted January 23, 2008 I need an image resize script for pngs. I have this so far it uploads them but it doesnt resize them and i need to resize them so if someone can direct me in the right direction that would be awsome! <?php $date_str=date('Ymdhis'); $uploadFileName = str_replace(array(" ","%20"),"_",$_FILES['image']['name']); if (is_uploaded_file($_FILES['image']['tmp_name'])) { $savefile = "../images/upload/".$date_str."_".$uploadFileName; if (move_uploaded_file($_FILES['image']['tmp_name'], $savefile)) { @chmod($savefile, 0644); $record = $date_str."_".$uploadFileName; } } ?> Link to comment https://forums.phpfreaks.com/topic/87404-whats-the-best-image-upload-resize-script-for-pngs/ Share on other sites More sharing options...
ccrevcypsys Posted January 23, 2008 Author Share Posted January 23, 2008 and every script that i have tried using will not work... Link to comment https://forums.phpfreaks.com/topic/87404-whats-the-best-image-upload-resize-script-for-pngs/#findComment-447098 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.