I’m looking for an API/Library/Component to use in my Django app that takes an image as an input and returns the same image with transparent background. I’m looking for something smarter than ImageMagick’s floodfill http://www.imagemagick.org/Usage/channels/#mask_floodfill that detects the color of the background.
Any suggestions?
I’m looking for an API/Library/Component to use in my Django app that takes an
Share
In PIL you have im.save(filename, transparency=some_palette_index) for mode P images or putalpha method for RGB images.