PHP Tutorial: The Imagecolorset function of the GD library to simply modify the picture color

Source: Internet
Author: User
Tags modify php tutorial

Now there is a single photo with a background color of pure blue (or red, etc.) and in contrast to the characters in the photo, the blue background in the picture is treated as white in PHP. That is, similar to PS, the effect of filling blue with white.

Use the Imagecolorset function of the GD library to modify a simple index color. But it's only valid for GIF and PNG pictures.

<?php
$img = file_get_contents (' http://picture address);
$im = imagecreatefromstring ($img);
$BG = Imagecolorat ($im, 0, 0);
Imagecolorset ($im, $BG, 0, 0, 255);
Imagepng ($im);
Imagedestroy ($im);
?>



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.