mirror of https://github.com/SixLabors/ImageSharp
2 changed files with 26 additions and 14 deletions
@ -0,0 +1,21 @@ |
|||||
|
// Copyright (c) Six Labors and contributors.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
|
||||
|
namespace SixLabors.ImageSharp.MetaData.Profiles.Exif |
||||
|
{ |
||||
|
internal static class ExifConstants |
||||
|
{ |
||||
|
public static readonly byte[] Header = { |
||||
|
(byte)'E', |
||||
|
(byte)'x', |
||||
|
(byte)'i', |
||||
|
(byte)'f', |
||||
|
0x00, |
||||
|
0x00, |
||||
|
(byte)'I', |
||||
|
(byte)'I', |
||||
|
0x2A, |
||||
|
0x00, |
||||
|
}; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue