Two ways to generate a picture in PHP

Source: Internet
Author: User
Tags image identifier
Method One: GD

The default Logoprivate function generation_default_img ($width, $height, $img _type, $output _url) {//Check the default logo for presence if (File_ Exists ($output _url)) {return;} else{//Create a new true color image and return an image identifier header (' Content-type:image/png '); $im = Imagecreate ($width, $height);         //Assign color         $bg _color = imagecolorallocate ($im, 255, 255, 255);         Draw a rectangle and fill  the        imagefilledrectangle ($im, 0, 0, $width, $height, $BG _color);         imagepng ($im, $output _url);         Imagedestroy ($im);}}



Method Two: Imagick

Default Logoprivate function generation_default_img ($width, $height, $img _type, $output _url) {//Build canvas        $obj _ default = new Imagick ();         $obj _default-NewImage ($width, $height, ' White ');         $obj _default-Setimageformat ($img _type);         $obj _default-writeimage ($output _url);         $obj _default, Clear ();         //Destroy  object        $obj _default-Destroy ();}
  • Related Article

    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.