DarkHavn Posted September 2, 2006 Share Posted September 2, 2006 [code]<?session_start();//welcome to the images section, this section allows you to upload four images.//load them into the thumb or large images and they will show on your libraryif($_POST['next']) {//foreach ($_FILES["image"]["error"] as $key => $error) {$maxfilesize = 734349;$mimetype = array('image/pjpeg','image/jpeg','image/jpg'); if($_FILES['image']['size'] >= $maxfilesize){ $errormsg = 'Remember you can not upload a file larger than 700kb, and only .jpg images are allowed!'; break; // move_uploaded_file($tmp_name, "data/$name"); } else { $tmp_name = $_FILES["image"]["tmp_name"]; $name = $_FILES["image"]["name"]; $filesize = $_FILES['image']['size']; $bname = $_SESSION['clients'];// This is the temporary file created by PHP $uploadedfile = $_FILES['image']['tmp_name'];// Create an Image from it so we can do the resize$src = imagecreatefromjpeg($uploadedfile);$src2 = imagecreatefromjpeg($uploadedfile);// Capture the original size of the uploaded imagelist($width,$height)=getimagesize($uploadedfile);// For our purposes, I have resized the image to be// 600 pixels wide, and maintain the original aspect // ratio. This prevents the image from being "stretched"// or "squashed". If you prefer some max width other than// 600, simply change the $newwidth variable$newwidth = 600;$newheight = 400;$newwidth2 = 300;$newheight2 = 150;$tmp=imagecreatetruecolor($newwidth,$newheight);$tmp2 = imagecreatetruecolor($newwidth2, $newheight2);// this line actually does the image resizing, copying from the original// image into the $tmp imageimagecopyresampled($tmp,$src,0,0,0,0,$newwidth,$newheight,$width,$height); imagecopyresampled($tmp2,$src2,0,0,0,0,$newwidth2,$newheight2,$width,$height); // now write the resized image to disk. I have assumed that you want the// resized, uploaded image file to reside in the ./images subdirectory.$filename = "../../clients/$bname/images/". $_FILES['image']['name'];$filename2 = "../../clients/$bname/images/" . $_FILES['image']['name'];imagejpeg($tmp,$filename,100);imagejpeg($tmp2,$filename2,100);imagedestroy($src);imagedestroy($tmp);// NOTE: PHP will clean up the temp file it created when the request// has completed.?>[/code]That's my code, i thought adding another[code]imagecopyresampled($tmp2,$src2,0,0,0,0,$newwidth2,$newheight2,$width,$height); [/code]Would allow me to make another thumbnail?As one thumbnail is made, but i'm looking to make two, how come this idea doesn't work, any ideas please? Link to comment https://forums.phpfreaks.com/topic/19442-little-help-with-my-gd-code/ Share on other sites More sharing options...
DarkHavn Posted September 2, 2006 Author Share Posted September 2, 2006 come on guys/girls please?!?! Link to comment https://forums.phpfreaks.com/topic/19442-little-help-with-my-gd-code/#findComment-84450 Share on other sites More sharing options...
rallokkcaz Posted September 2, 2006 Share Posted September 2, 2006 i would help if i couldsrry :( Link to comment https://forums.phpfreaks.com/topic/19442-little-help-with-my-gd-code/#findComment-84453 Share on other sites More sharing options...
DarkHavn Posted September 2, 2006 Author Share Posted September 2, 2006 its cool aye, atleast someone replied lol.But yeah...wish someone would help :( Link to comment https://forums.phpfreaks.com/topic/19442-little-help-with-my-gd-code/#findComment-84454 Share on other sites More sharing options...
corbin Posted September 2, 2006 Share Posted September 2, 2006 $filename = "../../clients/$bname/images/". $_FILES['image']['name'];$filename2 = "../../clients/$bname/images/" . $_FILES['image']['name'];filename2 is the same as filename so its just over writing it... Link to comment https://forums.phpfreaks.com/topic/19442-little-help-with-my-gd-code/#findComment-84456 Share on other sites More sharing options...
DarkHavn Posted September 2, 2006 Author Share Posted September 2, 2006 So if i change the name of the file, would that help at all.Call it something likepic1.jpgpic2.jpg? Link to comment https://forums.phpfreaks.com/topic/19442-little-help-with-my-gd-code/#findComment-84458 Share on other sites More sharing options...
corbin Posted September 2, 2006 Share Posted September 2, 2006 Its making the file then remaking the same file... So its just making the second file over the first one... Try making $filename2 = "test.JPG";And see if test.jpg appears... Link to comment https://forums.phpfreaks.com/topic/19442-little-help-with-my-gd-code/#findComment-84460 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.