Browse Source

corrected big endian byte order marker

af/merge-core
popow 8 years ago
parent
commit
108cb02106
  1. 2
      src/ImageSharp/MetaData/Profiles/Exif/ExifConstants.cs

2
src/ImageSharp/MetaData/Profiles/Exif/ExifConstants.cs

@ -15,8 +15,8 @@ namespace SixLabors.ImageSharp.MetaData.Profiles.Exif
public static readonly byte[] BigEndianByteOrderMarker = { public static readonly byte[] BigEndianByteOrderMarker = {
(byte)'M', (byte)'M',
(byte)'M', (byte)'M',
0x2A,
0x00, 0x00,
0x2A
}; };
} }
} }
Loading…
Cancel
Save