mirror of https://github.com/SixLabors/ImageSharp
3 changed files with 30 additions and 6 deletions
@ -0,0 +1,21 @@ |
|||
// Copyright (c) Six Labors.
|
|||
// Licensed under the Six Labors Split License.
|
|||
|
|||
namespace SixLabors.ImageSharp.Metadata.Profiles.IPTC |
|||
{ |
|||
/// <summary>
|
|||
/// Enum for the different record types of a IPTC value.
|
|||
/// </summary>
|
|||
internal enum IptcRecordNumber : byte |
|||
{ |
|||
/// <summary>
|
|||
/// A Envelope Record.
|
|||
/// </summary>
|
|||
Envelope = 0x01, |
|||
|
|||
/// <summary>
|
|||
/// A Application Record.
|
|||
/// </summary>
|
|||
Application = 0x02 |
|||
} |
|||
} |
|||
Loading…
Reference in new issue