Thinkphp call the image class to generate a thumbnail _php instance

Source: Internet
Author: User

This example describes how thinkphp calls the image class to generate thumbnails. Share to everyone for your reference. The specific analysis is as follows:

The thinkphp Image class is in thinkphp/extend/library/org/util/image.class.php.

The method is invoked as follows:

Import ("ORG.") Util.image ");
$IMG = new Image (),//Materialized Picture class object
$image _path = './Picture path ';
If the current PHP file is in the thinkphp app_path path
//'./' is the index.php upper level file.
//Because App_path is defined and loaded by index.php.
$image _info = $Img:: Getimageinfo ($image _path)//Get picture information

The Getimageinfo method obtains information such as width,height,type,size,mime of the picture.

The generation of thumbnails is simple.

Parameters require Img_path (original path), Thumb_name (thumbnail name, include path), Thumb_type (picture type), Max_width (width), max_height (high):

Generate thumbnails:
$Img:: THUMB2 ($img _path, $thumb _name, $thumb _type, $Max _width, $Max _height);

It should be noted that the width and height of the thumbnail can not be larger than the original image, or it will generate a failure

I hope this article will help you with your PHP program design.

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.