Crop the bottom of the uploaded image and remove the headline watermark - WordPress Tutorial

This method can easily remove the watermark by cutting the specified height

When we collect some pictures with watermarks. This method can easily remove the watermark by cutting the specified height.

code:

 //Cut the bottom of the uploaded image and remove the headline watermark function cropUploadImage($upload){ $src_path = $upload['file']; $src = imagecreatefromstring(file_get_contents($src_path)); $x = 0; $y = 0; $width = imagesx( $src ); $height = imagesy( $src )-55; $final_width = $width; $final_height = round($final_width * $height / $width); $new_image = imagecreatetruecolor($final_width, $final_height); imagecopyresampled($new_image, $src, 0, 0, $x, $y, $final_width, $final_height, $width, $height); header('Content-Type: image/jpeg'); imagejpeg($new_image,$src_path); imagedestroy($src); imagedestroy($new_image); return $upload; } add_filter( 'wp_handle_upload', 'cropUploadImage',2 );

Introduction:

  • In code $height = imagesy( $src )-55; , "- 55" adjustable clipping height
  • The uploaded image will be cropped from the deployment of this code,
  • The picture clipped by this code will not be restored after deleting this code
  • It can cooperate with various cloud storage plug-ins

effect:

Deployment location:

Under the theme root directory, functions.php Filed <? php Below.

 Crop the bottom of the uploaded image and remove the headline watermark - WordPress Tutorial
course

7B2 modification: circle, APP circle comment display floor

2022-4-21 14:55:50

course

Which book has been written? WordPress small function

2023-4-15 22:11:07

⚠️
Some codes and tutorials on Npcink come from the Internet, and are only for netizens to learn and exchange. If you like this article, you can Attach original link Reprint at will.
No intention of infringing your rights, please send an email to 1355471563#qq.com Or click on the right Private message: Muze feedback, we will deal with it as soon as possible.
0 replies A Author M administrators
    There is no discussion yet. Tell me your opinion
Personal Center
Shopping Cart
Coupon
Sign in today
There are new private messages Private Message List
search