PHP image processing-image cropping using imagecopyresampled function example

Source: Internet
Author: User
This article mainly introduces the example of using imagecopyresampled function to crop images for PHP image processing. This example is relatively simple and is an entry-level learning summary, for more information, see crop images in a large background image. a common application is to crop an image in a specified area, you can crop an appropriate area from the uploaded image as your profile picture. Image cropping is similar to image scaling. Therefore, this function is also implemented using the imagecopyresampled () function. We also use JPEG image format as an example to declare an image cropping function cut (). The code is as follows:

The code is as follows:


<? Php
// Crop the image in the specified area in a large background image. the jpeg image format is used as an example.
Function cut ($ filename, $ x, $ y, $ width, $ height ){
$ Back = imagecreatetruecolor ($ width, $ height );
// Create a resource that can save the cropped image
$ Cutimg = imagecreatetruecolor ($ width, $ height );
// Use the imagecopyresampled () function to crop the image.
Imagecopyresampled ($ cutimg, $ back, 0,0, $ x, $ y, $ width, $ height, $ width, $ height );
// Save the cropped image. if you do not want to overwrite the image, you can add a prefix to the cropped image.
Imagejpeg ($ cutimg, $ filename );
Imagedestroy ($ cutimg );
Imagedestroy ($ back );
}

Cut ("brophp.jpg", 50, 50,200,200 );
?>

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.