Jump to content

upload and resize 2 pictures


web_master

Recommended Posts

how can I upload and resize 2 or  more pict in same time:

 

if($_FILES["picture"]["name"][1]) {

$dest = "../photo_dir/".$document_id."_photo[1].jpg";

copy($_FILES["picture"]["tmp_name"][1], $dest);

}

 

if($_FILES["picture"]["name"][2]) {

$dest = "../photo_dir/".$document_id."_photo[2].jpg";

copy($_FILES["picture"]["tmp_name"][2], $dest);

}

 

... but I want to these pictures been resized from original size (no matter what size) on upload to x= 100px y=100px - or other dimension.

 

PLEASE A SIMPLE SCRIPT. :)

 

 

Thanx in advanced!!!!

Link to comment
https://forums.phpfreaks.com/topic/52961-upload-and-resize-2-pictures/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.