PHP beginner |
|
$image = $_FILES['image']['tmp_name'];
$inputImg = ImageCreateFromJPEG($image);
$w = imagesx($inputImg);
$h = imagesy($inputImg);
$locatie = $locatie."/".$bestandsnaam.$n.".".$x;
$tow = 500;
$toh = $h/($w/$tow);
$outputImg = ImageCreateTrueColor($tow, $toh);
imagecopyresampled($outputImg, $inputImg,0,0,0,0, $tow,$toh,$w, $h);
imagejpeg($outputImg, $locatie);
$image = $_FILES['image']['tmp_name']; $inputImg = ImageCreateFromJPEG($image); $w = imagesx($inputImg); $h = imagesy($inputImg); $locatie = $locatie."/".$bestandsnaam.$n.".".$x; $tow = 500; $toh = $h/($w/$tow); $outputImg = ImageCreateTrueColor($tow, $toh); imagecopyresampled($outputImg, $inputImg,0,0,0,0, $tow,$toh,$w, $h); imagejpeg($outputImg, $locatie);
Dit is wat er daarna gebeurt met de afbeelding. |