I don't understand how to download the background remover?
I don't understand how to download the background remover?
Hi,
This has been rather frustrating for me. I still have no idea if I am doing this right. I dont use forums usually but I cant contact you through your website as the code does not work & it's always the same code. Anyhow my question I want to ask is I don't understand how to download the background remover? This code d7e2e0 does not work so I have had to come here to ask the question.
This has been rather frustrating for me. I still have no idea if I am doing this right. I dont use forums usually but I cant contact you through your website as the code does not work & it's always the same code. Anyhow my question I want to ask is I don't understand how to download the background remover? This code d7e2e0 does not work so I have had to come here to ask the question.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: I don't understand how to download the background remover?
What is "background remover"? I do not recognize that as a command in Imagemagick. I do not know what code d7e2e0 is?
What is your IM version and platform? Are you using the command line or some API for Imagemagick?
What is the reference you have for "background remover" and how does it relate to Imagemagick?
What is your IM version and platform? Are you using the command line or some API for Imagemagick?
What is the reference you have for "background remover" and how does it relate to Imagemagick?
Re: I don't understand how to download the background remover?
I dont know what IM version means or what API is. I just want to remove backgrounds.
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: I don't understand how to download the background remover?
IM is Imagemagick. Are you using Imagemagick? API is one of the Application Programming Interfaces. There is no command in Imagemagick to remove backgrounds. There are some code snippets for removing simple backgrounds at:
http://www.imagemagick.org/Usage/masking/#bg_remove
Is that what you want? If not, please post an example image at some free hosting service such as dropbox.com and put the URL here.
Please, always provide your IM version and platform when asking questions, since syntax may differ. Also provide your exact command line and if possible your images.
See the top-most post in this forum "IMPORTANT: Please Read This FIRST Before Posting" at viewtopic.php?f=1&t=9620
For novices, see
viewtopic.php?f=1&t=9620
http://www.imagemagick.org/script/comma ... essing.php
http://www.imagemagick.org/Usage/reference.html
http://www.imagemagick.org/Usage/
http://www.imagemagick.org/Usage/masking/#bg_remove
Is that what you want? If not, please post an example image at some free hosting service such as dropbox.com and put the URL here.
Please, always provide your IM version and platform when asking questions, since syntax may differ. Also provide your exact command line and if possible your images.
See the top-most post in this forum "IMPORTANT: Please Read This FIRST Before Posting" at viewtopic.php?f=1&t=9620
For novices, see
viewtopic.php?f=1&t=9620
http://www.imagemagick.org/script/comma ... essing.php
http://www.imagemagick.org/Usage/reference.html
http://www.imagemagick.org/Usage/
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: I don't understand how to download the background remover?
In that reference, they have a nearly constant white background. To make that transparent in Imagemagick command line, I would do in Imagemagick 6:
where XX is small value between 0 and 100 to account for slight variations in the color of the background.
If you are using Imagemagick 7, replace convert with magick. Put your input image and output image in place of yourimage and resultimage
Code: Select all
convert yourimage -fuzz XX% -transparent white resultimage
If you are using Imagemagick 7, replace convert with magick. Put your input image and output image in place of yourimage and resultimage
Re: I don't understand how to download the background remover?
I dont undersatnd any of what you are sayying. cant you see the link? It says.....To remove a white background from multiple images at the same time you can use the ImageMagick convert command I clicked on the link & it took me here http://www.imagemagick.org/script/index.php
Re: I don't understand how to download the background remover?
How do I get hold of this software?
Re: I don't understand how to download the background remover?
Ok I see sa lot of download links....what one do I download? I have Windows 7 64bit machine.
Redhat / CentOS 7.1 x86_64 RPM
ImageMagick-libs-7.0.5-4.x86_64.rpm download download Redhat / CentOS 7.1 x86_64 RPM
ImageMagick RPM's download download Development, Perl, C++, and documentation RPM's.
ImageMagick-i386-pc-solaris2.11.tar.gz download download Solaris Sparc 2.11
ImageMagick-i686-pc-cygwin.tar.gz download download Cygwin
ImageMagick-i686-pc-mingw32.tar.gz download download MinGW
Redhat / CentOS 7.1 x86_64 RPM
ImageMagick-libs-7.0.5-4.x86_64.rpm download download Redhat / CentOS 7.1 x86_64 RPM
ImageMagick RPM's download download Development, Perl, C++, and documentation RPM's.
ImageMagick-i386-pc-solaris2.11.tar.gz download download Solaris Sparc 2.11
ImageMagick-i686-pc-cygwin.tar.gz download download Cygwin
ImageMagick-i686-pc-mingw32.tar.gz download download MinGW
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: I don't understand how to download the background remover?
Sorry, I am not a Windows user, so cannot advise.
See the section on Windows installs on that page at http://www.imagemagick.org/script/binar ... hp#windows
My guess would be:
ImageMagick-7.0.5-4-Q16-x64-dll.exe
See the section on Windows installs on that page at http://www.imagemagick.org/script/binar ... hp#windows
My guess would be:
ImageMagick-7.0.5-4-Q16-x64-dll.exe
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: I don't understand how to download the background remover?
The commands shown at http://www.vectorns.com/blog/technical- ... -a-picture are bash commands. For example:
This is a bash command. It won't run under Windows unless you have bash.
Code: Select all
find . -type f -name "*.jpg" -print0 | while IFS= read -r -d $'\0' file; do convert -verbose "$file" -transparent white "$file.png"; done
snibgo's IM pages: im.snibgo.com
- fmw42
- Posts: 25562
- Joined: 2007-07-02T17:14:51-07:00
- Authentication code: 1152
- Location: Sunnyvale, California, USA
Re: I don't understand how to download the background remover?
But the key Imagemagick command can be used from window as I listed above in my earlier post using -transparent white.
Re: I don't understand how to download the background remover?
An old example I found from 2007: http://tech.natemurray.com/2007/12/conv ... arent.html
I wonder if it will run from the bash program in the Windows 10 developer mode?This is a bash command. It won't run under Windows unless you have bash.
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: I don't understand how to download the background remover?
I expect it would. The OP has Windows 7. I expect Cygwin bash works on Windows 7, but that would be overkill for just this command.Bonzo wrote:I wonder if it will run from the bash program in the Windows 10 developer mode?
snibgo's IM pages: im.snibgo.com