I'm working in a cross-platform environment where the results of the same, simple alpha channel extraction operation are different between ImageMagick 6.7.7-10 and ImageMagick 6.9.3-7.
The command to extract the alpha channel is:
convert image.png -alpha extract alpha.png
Or equivalently: convert image.png -channel A -separate alpha.png
Here is the original, the 6.7 output, and the 6.9 output:
Testing the original in Gimp, in the middle of the top dark bar, I can see that the original alpha value was 80% or 204:
The 6.9 output has grayscale value of 204, while the 6.7 output has a grayscale value of 154.
Now the question: I believe the 6.9 version is correct, but we like the visual result provided by the 6.7 version. Can we understand how the 6.7 version was working (maybe some different formula / luminence / color space?) and get the same result from the 6.9 version? Maybe apply some curve to the 6.9 output? Or some switch to make it use a different formula / color space? (Do color spaces even apply to PNGs?)
Post processing the 6.9 output with this simple gamma adjustment gives a very close approximation of the 6.7 output:
Here's a gist of our solution in a shell script to detect 6.7 and apply the gamma adjustment selectively.
Note: Compared to the -fx answer, the gamma adjustment runs faster is more accurate, judging by less statistical error (MAE of 190 vs 408) found with:
But I'm going to leave the -fx answer in place, because I like the process of finding curves it describes.
Incidentally, this command lightens 6.7 output to look like 6.9 output:
But with such a big gamma boost, the results are pretty ugly with color banding in the dark areas: