Converting RGB color to transparent
Posted: 2016-06-29T11:46:38-07:00
I have a series of Images i need to turn into a gif with transparent background.
When i try to convert the RGB it does nothing.
when i do
i get
When i try
i get
im not real good with this program and only have to use it a few times a year seems like. But im recently setting up some stream alerts for a friend and cant get the green background to go away. And yes it is a perfect 0,255,0 but im not sure if i am laying the commands out correctly.
Any help would be great.
When i try to convert the RGB it does nothing.
when i do
Code: Select all
>Convert 00*.png -transparent -fill "rgb(0,255,0)" test.png
Code: Select all
Convert: unrecognized color `-fill' @ warning/color.c/GetColorCompliance/1045.
Convert: unable to open image 'rgb(0,255,0)': No such file or directory @ error/blob.c/OpenBlob/2695.
Convert: no decode delegate for this image format `' @ error/constitute.c/ReadImage/508.
Code: Select all
>convert -fill "rgb(0,255,0)" +transparent 00*.png test.png
Code: Select all
convert: no images defined `test.png' @ error/convert.c/ConvertImageCommand/3235.
Any help would be great.