uploading images in php
is there a way to resize an image after you have uploaded it using php? suppose i want to restrict the width and height of my images to 1000 and 800 respectively what code to i add to the following code snippet?
$tmp_file = $_FILES['file_upload']['tmp_name'];
$target_file = basename( $_FILES['file_upload']['name'] );
$upload_dir = IMAGE_DIR;
if ( move_uploaded_file( $tmp_file, IMAGE_DIR . "/" . $target_file ) ) {
$message = "File has been successfully uploaded.";
} else {
$error = $_FILES['file_upload']['error'];
$message = $upload_errors[$error];
}
Related Article: Animate your images in PHP
is a solved PHP discussion thread by gganeriwal that has 5 replies and was last updated 1 year ago.
dinhunzvi
Junior Poster in Training
74 posts since Jul 2010
Reputation Points: 10
Solved Threads: 4
Skill Endorsements: 0
Depending on what you have installed, you can use the GD library or ImageMagick. You can search this forum for examples.
pritaeas
Posting Prodigy
9,317 posts since Jul 2006
Reputation Points: 1,178
Solved Threads: 1,467
Skill Endorsements: 86