It looks like the inside / outside logic behind the MagickImage.Clip method has been flipped. We clip images and create transparent backgrounds using this code:
img.Alpha(AlphaOption.Transparent);
img.Clip(name, true);
img.Alpha(AlphaOption.Opaque);
Previously with v 6.8.9.501, the clipping was:
https://www.dropbox.com/s/kq5zsour2mzbgjq/894150_old_false.png?dl=0
https://www.dropbox.com/s/crdgcuey1nnbia1/894150_old_true.png?dl=0
Original:
https://www.dropbox.com/s/kes3hs6z58ntr87/894150.jpg?dl=0
Clipped with flag = true
https://www.dropbox.com/s/avdlm2qo5su9lrk/bad.png?dl=0
Clipped with flag = false
https://www.dropbox.com/s/5rqyos9xtim3gbj/good.png?dl=0
Comments: To clarify, the 3 examples on the bottom were processed with v 7.0.0.0019
img.Alpha(AlphaOption.Transparent);
img.Clip(name, true);
img.Alpha(AlphaOption.Opaque);
Previously with v 6.8.9.501, the clipping was:
https://www.dropbox.com/s/kq5zsour2mzbgjq/894150_old_false.png?dl=0
https://www.dropbox.com/s/crdgcuey1nnbia1/894150_old_true.png?dl=0
Original:
https://www.dropbox.com/s/kes3hs6z58ntr87/894150.jpg?dl=0
Clipped with flag = true
https://www.dropbox.com/s/avdlm2qo5su9lrk/bad.png?dl=0
Clipped with flag = false
https://www.dropbox.com/s/5rqyos9xtim3gbj/good.png?dl=0
Comments: To clarify, the 3 examples on the bottom were processed with v 7.0.0.0019