RMagick remove white background from image and make it transparent

前端 未结 3 1236
北恋
北恋 2020-12-15 09:55

I need to remove the white background from this image and make the background transparent. So it\'s just a black tick on the transparent background exported as a png.

<
3条回答
  •  一整个雨季
    2020-12-15 10:21

    With v6.8.4-Q16 using the below command:

    convert nike.png -matte -fill none -fuzz 1% -opaque white nikeOutput.png
    

    Results in:

    enter image description here

    Here is the command I use:

    convert nike.jpg -transparent white NikeProd.png
    

    enter image description here

    enter image description here

提交回复
热议问题