Here's what changed in the code:
Code: Select all
6.8.0-4:coders/bmp.c:846
image->matte=(bmp_info.alpha_mask != 0) ||
((bmp_info.compression == BI_RGB) && (bmp_info.bits_per_pixel == 32)) ?
MagickTrue : MagickFalse;
6.8.0-5:
image->matte=(bmp_info.alpha_mask != 0) &&
((bmp_info.compression == BI_RGB) && (bmp_info.bits_per_pixel == 32)) ?
MagickTrue : MagickFalse;
Code: Select all
image->matte=(bmp_info.alpha_mask != 0) &&
(bmp_info.compression == BI_BITFIELDS) ?
MagickTrue : MagickFalse;