vote up 3 vote down star

Hello,

I have some product photos, from which I would like to remove the white background. An example:

alt text

Is there a nice library or a manual way to do it with Cocoa or C? For which keywords (image processing methods) do I have to search?

flag

66% accept rate
Several Apple apps have an inbuilt "Instant Alpha" feature. Would appreciate if you'd also file a radar bug requesting 3rd party access to the API for this. – Mike Abdullah Jun 15 at 2:27

1 Answer

vote up 4 vote down

You can try ImageMagick:

convert input.gif -transparent white output.gif

For more advanced features you should try something like image masking or do it manually using any image library, setting the pixel values to something with a high alpha value.

See also this thread: http://www.imagemagick.org/discourse-server/viewtopic.php?f=1&t=10665

link|flag
2  
using gif will create jagged edges, however using imagmajick is a good answer nonetheless, just use PNG output though and allow a bit of anti-aliasing at the edge colors. – SpliFF Jun 14 at 15:54
2  
Also, ImageMagick has bindings for nearly every language, so you can use the ImageMagick library from within C – rascher Jun 14 at 16:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.