Jump to content

Little help with my gd code?


DarkHavn

Recommended Posts

[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 library

if($_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 image
list($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 image
imagecopyresampled($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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.