Browse Source

Check iccProfileData for null not the profile

pull/2345/head
Stefan Nikolei 3 years ago
parent
commit
4a82d27303
  1. 4
      src/ImageSharp/Formats/Bmp/BmpEncoderCore.cs

4
src/ImageSharp/Formats/Bmp/BmpEncoderCore.cs

@ -228,9 +228,9 @@ internal sealed class BmpEncoderCore : IImageEncoderInternals
infoHeader.Compression = BmpCompression.BitFields;
}
if (this.infoHeaderType is BmpInfoHeaderType.WinVersion5 && metadata.IccProfile != null)
if (this.infoHeaderType is BmpInfoHeaderType.WinVersion5 && iccProfileData != null)
{
infoHeader.ProfileSize = iccProfileData!.Length;
infoHeader.ProfileSize = iccProfileData.Length;
infoHeader.CsType = BmpColorSpace.PROFILE_EMBEDDED;
infoHeader.Intent = BmpRenderingIntent.LCS_GM_IMAGES;
}

Loading…
Cancel
Save