PHP scaled image (proportional scaling based on wide height) example Introduction _php tutorial

Source: Internet
Author: User
Recommend a simple and practical zoom picture tool SimpleImage, refer to http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/

How to use:

Set wide height, unequal scaling
Copy CodeThe code is as follows:
Include (' simpleimage.php ');
$image = new SimpleImage ();
$image->load (' picture.jpg ');
$image->resize (250,400);
$image->save (' picture2.jpg ');? >

Set width, equal scale

Include (' simpleimage.php ');
$image = new SimpleImage ();
$image->load (' picture.jpg ');
$image->resizetowidth (250);
$image->save (' picture2.jpg ');? >

Set height, equal scale

Include (' simpleimage.php ');
$image = new SimpleImage ();
$image->load (' picture.jpg ');
$image->resizetoheight (500);
$image->save (' picture2.jpg ');
$image->resizetoheight (200);
$image->save (' picture3.jpg ');? >

Proportionally, zoom to 50%

Include (' simpleimage.php ');
$image = new SimpleImage ();
$image->load (' picture.jpg ');
$image->scale (50);
$image->save (' picture2.jpg ');? >

Direct output to screen after zooming

Header (' Content-type:image/jpeg ');
Include (' simpleimage.php ');
$image = new SimpleImage ();
$image->load (' picture.jpg ');
$image->resizetowidth (150);
$image->output ();? >


Simpleimage.php Source please tap the article at the beginning of the link, to download

http://www.bkjia.com/PHPjc/327591.html www.bkjia.com true http://www.bkjia.com/PHPjc/327591.html techarticle recommend a simple and practical zoom picture tool SimpleImage, refer to http://www.white-hat-web-design.co.uk/blog/resizing-images-with-php/usage: Set width height , unequal scaling ...

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