Attempting to merge a .gif and failing
Posted: 2016-02-27T03:50:54-07:00
I have two images, one .png and the 2nd .gif.
I wish to place the gif onto the png and have successfully achieved that using
however even though the gif apparently has a transparent background it is not transparent in the image at http://devacs.za.net/index.gif so I attempted
as well as all values of -fuzz from 2% to 10% all in vain.
So I looked at
which I am afraid means little to me
Then thought that what I should do is alter stlogorotating.gif to transparent background using
and again all values of -fuzz as before.
Please make suggestions.
I wish to place the gif onto the png and have successfully achieved that using
Code: Select all
convert DEVACSST.png -page +370+105 stlogorotating.gif index.gif
Code: Select all
convert DEVACSST.png -page +370+105 stlogorotating.gif -transparent white index.gif
as well as all values of -fuzz from 2% to 10% all in vain.
So I looked at
Code: Select all
convert index.gif -format %c histogram:info: | head
314825: ( 0, 0, 0,255) #000000 black
6282: ( 0, 0, 0, 0) #00000000 none
110: ( 0, 1, 53,255) #000135 srgba(0,1,53,1)
882: ( 1, 1, 61,255) #01013D srgba(1,1,61,1)
2280: ( 1, 1, 67,255) #010143 srgba(1,1,67,1)
2212: ( 1, 1, 75,255) #01014B srgba(1,1,75,1)
2283: ( 1, 1, 83,255) #010153 srgba(1,1,83,1)
2379: ( 1, 1, 92,255) #01015C srgba(1,1,92,1)
1362: ( 1, 1, 97,255) #010161 srgba(1,1,97,1)
42: ( 2, 1, 18,255) #020112 srgba(2,1,18,1)
Then thought that what I should do is alter stlogorotating.gif to transparent background using
Code: Select all
convert stlogorotating.gif -transparent white st.gif
Please make suggestions.