PHP image upload, compress, save to server related issues

Source: Internet
Author: User
PHP picture upload, compress, save to server problem?
Very simple upload server, from temporary files, ' tmp_name ' get pictures,
Then compress.

$dstimage = Imagecreatetruecolor ($dst _w, $dst _h);
Imagecopyresampled ($dstimage, $srcimage, $dst _x, $dst _y, $src _x, $src _y, $dst _w, $dst _h, $src _w, $src _h);
Imagedestroy ($srcimage);

Looking for a long time have not found how to save the memory in the picture $dstimage method?

------Solution--------------------

PHP Code
/** Open Output Buffer **/ob_start (),/** output image **/imagepng ($dstimage),/** get buffer contents **/$img = ob_get_contents ();/** Empty output buffer **/ob_end_ Clean ();/** then save the $img to the file. **/
------Solution--------------------
PHP Code
Saved position $file = "/image/hello.png" Imagepng ($dstimage, $file);
  • 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.