Remove Image background with php and save transparent png

后端 未结 7 1254
心在旅途
心在旅途 2020-12-15 01:23

I want to remove the white background of any image uploaded on the site working on PHP platform. The uploading function is done but messed up with this functionality.

7条回答
  •  佛祖请我去吃肉
    2020-12-15 02:09

    Use the php image processing and GD, read the image pixel by pixel if the RGB components are all 255 (The pixel is white), set the alpha channel to 255 (transparent). You may have to change the filetype of the image depending if the uploaded filetype supports an alpha channel.

提交回复
热议问题