PHP: Converting png's and gif's into grayscale

后端 未结 4 2033
星月不相逢
星月不相逢 2021-01-22 05:49

im using the following script to convert jpgs into grayscale-images. http://bubble.ro/How_to_convert_an_image_to_grayscale_using_PHP.html

i want to upgrade it to also co

4条回答
  •  清酒与你
    2021-01-22 06:36

    $image = ImageCreateFromString(file_get_contents('/path/to/image.ext'));
    
    ImageFilter($image, IMG_FILTER_GRAYSCALE);
    
    ImageGIF($image); // or ImagePNG($image);
    

提交回复
热议问题