thinkphp How to call the image class to generate thumbnails _php tutorial

Source: Internet
Author: User

thinkphp How to call the image class to generate thumbnails


This article mainly describes the thinkphp call image class to generate thumbnails of the method, the example analysis of thinkphp call image class to generate thumbnails of the use of principles and related techniques, the need for friends can refer to the following

The example in this article 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 calling method is as follows:

?

1

2

3

4

5

6

7

Import ("ORG. Util.image ");

$IMG = new Image ();//Instantiate Picture class object

$image _path = './Picture path ';

If the current PHP file is in the App_path path in thinkphp

'./' is the upper level file of index.php.

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 the width,height,type,size,mime of the picture.

The generation of thumbnails is simple.

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

?

1

2

To generate a thumbnail image:

$IMG:: THUMB2 ($img _path, $thumb _name, $thumb _type, $Max _width, $Max _height);

It is important to note that the width and height of the thumbnails cannot be larger than the original image, or it will generate a failure

I hope this article is helpful to everyone's PHP programming.

http://www.bkjia.com/PHPjc/963973.html www.bkjia.com true http://www.bkjia.com/PHPjc/963973.html techarticle thinkphp calling the image class to generate thumbnails this article mainly introduces the method that thinkphp calls the image class to generate thumbnails, and the example analyzes the use of thinkphp calling the image class to generate thumbnails ...

  • 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.