Php thumbnail implementation function code

Source: Internet
Author: User
Tags imagejpeg

Array getimagesize (string $ filename [, array & $ imageinfo]) to get the image size
Resource imagecreatetruecolor (int $ x_size, int $ y_size) creates a true color image.
Resource imagecreatefromjpeg (string $ filename) creates an image from a JPEG file or URL
Bool imagecopyresized (resource $ dst_image, resource $ src_image, int $ dst_x, int $ dst_y, int $ src_x, int $ src_y, int $ dst_w, int $ dst_h, int $ src_w, int $ src_h) copy and resize some images
Bool imagejpeg (resource $ image [, string $ filename [, int $ quality]) outputs the image to a browser or file in JPEG format
Copy codeThe Code is as follows:
<? Php
/*
Created by <A href = "http://www.cnphp.info"> http://www.cnphp.info </A>
*/
// File and zoom size
// $ Imgfile = 'smp.jpg ';
// $ Percent = 0.2;
Header ('content-type: image/jpeg ');
List ($ width, $ height) = getimagesize ($ imgfile );
$ Newwidth = $ width * $ percent;
$ Newheight = $ height * $ percent;
$ Thumb = ImageCreateTrueColor ($ newwidth, $ newheight );
$ Source = imagecreatefromjpeg ($ imgfile );
Imagecopyresized ($ thumb, $ source, 0, 0, 0, 0, $ newwidth, $ newheight, $ width, $ height );
Imagejpeg ($ thumb );
?>

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.