Re: How to remove the background of selected area

Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows?".
Post Reply
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: How to remove the background of selected area

Post by fmw42 »

Why do you not just use the vector logo?

Any way, try this adding -fuzz to allow colors close to white to be made transparent. The problem with jpg images is that solid colors are not purely solid due to the compression.

Code: Select all

convert nsf1sm.jpg -fuzz 15% -transparent white result.png
Post Reply