Simply paste the following code on your functions.php file and save it. No other action is needed!
function replace_uploaded_image($image_data) {
// if there is no large image : return
if (!isset($image_data['sizes']['large'])) return $image_data;
// paths to the uploaded image and the large image
$upload_dir = wp_upload_dir();
$uploaded_image_location = $upload_dir['basedir'] . '/' .$image_data['file'];
$large_image_location = $upload_dir['path'] . '/'.$image_data['sizes']['large']['file'];
// delete the uploaded image
unlink($uploaded_image_location);
// rename the large image
rename($large_image_location,$uploaded_image_location);
// update image metadata and return them
$image_data['width'] = $image_data['sizes']['large']['width'];
$image_data['height'] = $image_data['sizes']['large']['height'];
unset($image_data['sizes']['large']);
return $image_data;
}
add_filter('wp_generate_attachment_metadata','replace_uploaded_image');
Thanks to Serge Rauberfor sharing his great tip with us!
8 Responses
Could be useful
Thx Jean
Nice script, it will save time by not having to manually resize images.
Merci beaucoup !
Thanks for giving the necessary code.
Very useful for clients who upload direct from their cameras.
- For PHP developers -
How could I get this scripts and insert a watermark on my upload images?
I’m needing something like this for now… thanks.
if you want to add watermark on the image you should look at a solution like Smart Image Resizer.
shiftingpixel.com/2008/03/03/smart-image-resizer/
if you read in the comments, there is one about adding watermark functionality to it.
hope it helps
Trackbacks: