PHP Picture clipping function

Source: Internet
Author: User
Tags exit imagecopy imagejpeg

This article mainly introduces the PHP image cropping function, while keeping the image not distorted, need friends can refer to the following

In order to complete the image upload automatically after the crop, and then display in the foreground cropped out of the picture.

Requirements as above, the source code is as follows:

The code is as follows:

*exif_imagetype--Judging the type of an image

* Description: Function function is to cut an image to any size of the image, the image does not distort

* Parameter Description: Enter the file name that you want to process the picture, generate the file name of the new picture, generate the new picture's width, generate the new picture high

*/

To obtain any size image, insufficient local stretching, no deformation, no left blank

function My_image_resize ($src _file, $dst _file, $new _width, $new _height) {

$new _width= intval ($new _width);

$new _height=intval ($new _width);

if ($new _width <1 | | $new _height <1) {

echo "Params width or height error!";

Exit ();

}

if (!file_exists ($src _file)) {

Echo $src _file. "is NOT exists!";

Exit ();

}

Image type

$type =exif_imagetype ($src _file);

$support _type=array (Imagetype_jpeg, Imagetype_png, imagetype_gif);

if (!in_array ($type, $support _type,true)) {

echo ' This type ' of image does not support! Only support JPG, GIF or PNG ";

Exit ();

}

Load image

Switch ($type) {

Case IMAGETYPE_JPEG:

$src _img=imagecreatefromjpeg ($src _file);

Break

Case Imagetype_png:

$src _img=imagecreatefrompng ($src _file);

Break

Case Imagetype_gif:

$src _img=imagecreatefromgif ($src _file);

Break

Default

echo "Load image error!";

Exit ();

}

$w =imagesx ($src _img);

$h =imagesy ($src _img);

$ratio _w=1.0 * $new _width/$w;

$ratio _h=1.0 * $new _height/$h;

$ratio = 1.0;

The resulting image of the high width than the original is small, or large, the principle is to take a large proportion of magnification, take a large proportion of the reduction (the proportion of smaller)

if ($ratio _w < 1 && $ratio _h < 1) | | ($ratio _w > 1 && $ratio _h > 1)) {

if ($ratio _w < $ratio _h) {

$ratio = $ratio _h; The proportion of the width is smaller than the height direction, and is cut or enlarged according to the height of the proportional standard.

}else {

$ratio = $ratio _w;

}

Defines a temporary image in the middle that meets the target requirements for the width-height ratio of the image

$inter _w= (int) ($new _width/$ratio);

$inter _h= (int) ($new _height/$ratio);

$inter _img=imagecreatetruecolor ($inter _w, $inter _h);

Var_dump ($inter _img);

Imagecopy ($inter _img, $src _img, 0,0,0,0, $inter _w, $inter _h);

Generates a temporary image that is the size of the maximum edge length and is the $ratio scale of the target image

To define a new image

$new _img=imagecreatetruecolor ($new _width, $new _height);

Var_dump ($new _img); exit ();

Imagecopyresampled ($new _img, $inter _img,0,0,0,0, $new _width, $new _height, $inter _w, $inter _h);

Switch ($type) {

Case IMAGETYPE_JPEG:

Imagejpeg ($new _img, $dst _file,100); Storing images

Break

Case Imagetype_png:

Imagepng ($new _img, $dst _file,100);

Break

Case Imagetype_gif:

Imagegif ($new _img, $dst _file,100);

Break

Default

Break

}

}//End If 1

2 A side of the target image is larger than the original, one edge is smaller than the original, enlarge the image and then crop

=if (($ratio _w < 1 && $ratio _h > 1) | | ($ratio _w >1 && $ratio _h <1))

else{

$ratio = $ratio _h> $ratio _w? $ratio _h: $ratio _w; Take the value of the large proportion

Defines a large middle image in which the image is equal in height or width and the target image is then enlarged

$inter _w= (int) ($W * $ratio);

$inter _h= (int) ($H * $ratio);

$inter _img=imagecreatetruecolor ($inter _w, $inter _h);

Scale the original image and then crop

Imagecopyresampled ($inter _img, $src _img,0,0,0,0, $inter _w, $inter _h, $w, $h);

To define a new image

$new _img=imagecreatetruecolor ($new _width, $new _height);

Imagecopy ($new _img, $inter _img, 0,0,0,0, $new _width, $new _height);

Switch ($type) {

Case IMAGETYPE_JPEG:

Imagejpeg ($new _img, $dst _file,100); Storing images

Break

Case Imagetype_png:

Imagepng ($new _img, $dst _file,100);

Break

Case Imagetype_gif:

Imagegif ($new _img, $dst _file,100);

Break

Default

Break

}

}//IF3

}//End Function

My_image_resize (' test.gif ', ' 11111.gif ', ' 100px ', ' 100px ');

?>

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.