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 Quote 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" Quote 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
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.