Two ways to generate a picture in PHP

Source: Internet
Author: User
Tags image identifier


Method One: GD

<span style= "White-space:pre" ></span>//default Logoprivate function generation_default_img ($width, $height, $img _type, $output _url) {//check if the default logo exists 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);        <span style= "White-space:pre" ></span>//assign color        <span style= "White-space:pre" ></span> $BG _color = Imagecolorallocate ($im, 255, 255, 255); <span style= "White-space:pre" ></span>        //Draw a rectangle and fill < Span style= "White-space:pre" ></span>        imagefilledrectangle ($im, 0, 0, $width, $height, $BG _color);        <span style= "White-space:pre" ></span>imagepng ($im, $output _url); <span style= "White-space:pre" > </span>        Imagedestroy ($im);}}



Method Two: Imagick

<span style= "White-space:pre" ></span>//default Logoprivate function generation_default_img ($width, $height, $img _type, $output _url) {//Build canvas       <span style= "White-space:pre" ></span> $obj _default = new Imagick ();        <span style= "White-space:pre" ></span> $obj _default newimage ($width, $height, ' White '); <span Style= "White-space:pre" ></span>        $obj _default-Setimageformat ($img _type);        <span style= "White-space:pre" ></span> $obj _default writeimage ($output _url); <span style= " White-space:pre "></span>        $obj _default, Clear ();        <span style= "White-space:pre" ></span>//destroying objects <span style= "White-space:pre" ></span>        $ Obj_default-Destroy ();}


Two ways to generate a picture in PHP

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.