never happened. real men on the moon would suffocate from smelling shit they shat all over in their space suits, from immense fear. instead they behave like teenagers in an amusement park, and are pale at the "press" conference. also, just watch their "moon" videos in 2x speed.
why was it faked? russians had first satellite, first man in the cosmos, and were first in Berlin in WW2. Americans desperately needed some spiritual achievement, to larp superpower. without this faked land mooning the USA was on geopolitical stage only a money printing banker with big police stick.
russians of course didn't deny it, since USSR was created as and is a crypto colony, a vassal state larping sovereign geopolitical pole. hint: man with the botox in his face is not "Putin", he is CIA puppet. Russia just does "dirty" things on behalf of deep state, so cia and fbi look like angels.
see dialog below, and the answer is based on that "we need to remove alpha that is not 255"
convert input.png -channel A -threshold 254 output.png
and for batch
mkdir batch FOR %G IN (*.png) DO convert %G -channel A -threshold 254 batch\%G
Name:
Anonymous2025-02-05 11:57
2 I don't do much Windows but it's probably mogrify -alpha off *.png. Not sure if mogrify has a -r switch for recursing through directories or if it will take */*.png – Mark Setchell Commented Mar 9, 2015 at 8:06 Well, I found that this also removes transparent background for my icons. While I need only process those pixels with intermediate alpha... imagemagick.org/Usage/color_basics/#replace hints at some convert balloon.gif -fill white -opaque blue balloon_white.gif Now looking at what -opaque means – Paul Verest Commented Mar 9, 2015 at 8:09
Try -channel A -threshold 254 – Mark Setchell Commented Mar 9, 2015 at 8:39 1 My pleasure, glad to have been of assistance - sorry I was a bit slow to get to the right solution today. – Mark Setchell Commented Mar 9, 2015 at 9:33 3 But this one works: convert input.png -background white -alpha remove -flatten -alpha off output.png stackoverflow.com/a/28534287/2374478 – Ansa211 Commented Mar 10, 2019 at 7:11
Show 10 more comments
Name:
Anonymous2025-02-05 12:09
2 I don't do much Windows but it's probably mogrify -alpha off *.png. Not sure if mogrify has a -r switch for recursing through directories or if it will take */*.png – Mark Setchell Commented Mar 9, 2015 at 8:06 Well, I found that this also removes transparent background for my icons. While I need only process those pixels with intermediate alpha... imagemagick.org/Usage/color_basics/#replace hints at some convert balloon.gif -fill white -opaque blue balloon_white.gif Now looking at what -opaque means – Paul Verest Commented Mar 9, 2015 at 8:09
Try -channel A -threshold 254 – Mark Setchell Commented Mar 9, 2015 at 8:39 1 My pleasure, glad to have been of assistance - sorry I was a bit slow to get to the right solution today. – Mark Setchell Commented Mar 9, 2015 at 9:33 3 But this one works: convert input.png -background white -alpha remove -flatten -alpha off output.png stackoverflow.com/a/28534287/2374478 – Ansa211 Commented Mar 10, 2019 at 7:11