0

Is it possible to remove/delete an image's background (white background) using jQuery/javascript?

I know it is possible to do this using PHP and ImageMagick but I do not have ImageMagick installed on my shared hosting and it would be a lot easier to find a jQuery solution if it is possible.

Kirk Beard
  • 9,569
  • 12
  • 43
  • 47
TERO
  • 159
  • 2
  • 16
  • These two may get you started: http://stackoverflow.com/questions/15331068/crop-image-using-a-crop-tools-to-crop http://stackoverflow.com/questions/8751020/how-to-get-a-pixels-x-y-coordinate-color-from-an-image – Ray Cheng Feb 17 '15 at 19:20

1 Answers1

0

You can draw you image in a canvas and instead of white draw transparent.

dave
  • 4,024
  • 2
  • 18
  • 34