web_master Posted May 9, 2007 Share Posted May 9, 2007 hi, ive upload the pictures on this way: <?php if ($HTTP_POST_FILES["pict_1"]["name"]) { $dest="../destination/".$doc_id."_picture_name.jpg"; copy($HTTP_POST_FILES["pict_1"]["tmp_name"], $dest); } ?> this will resoult on server picture named example: 1_picture_name.jpg, 2_picture_name.jpg, etc... I want to upload (generate) the thumbnail picture in same time (paralell) as a picture with a same ID but a smaller size. (like: 1_th_picture_name.jpg, 1_th_picture_name.jpg...) thanks in advanced Link to comment https://forums.phpfreaks.com/topic/50609-picture-resize-and-create-thumbnail/ Share on other sites More sharing options...
jitesh Posted May 9, 2007 Share Posted May 9, 2007 www.phpclasses.org Use seach with keyword "image resize" Link to comment https://forums.phpfreaks.com/topic/50609-picture-resize-and-create-thumbnail/#findComment-248755 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.