Home > OS >  make image transparent(without background)
make image transparent(without background)

Time:07-20

I want to remove background from this example example

So,is there any possibility to make this image without background(transparent) using javascript or any librirary js ?

CodePudding user response:

Yes, I use it but the result is not perfectly what I want. you can see result

CodePudding user response:

The image is in .jpg format. There is not any simple way making background of .jpg image transparent in JS. But as already Ahmad Faraz commented there is JS libraries

Instead: some simple way of going around the problem: 1: You might use graphic editing programs to have a .jpg image cut and transformed to transparent background. 2: You should use images with transparent background already.

  • Related