-
-
Notifications
You must be signed in to change notification settings - Fork 854
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2213 from lmerino-ep/main
Fix IPTC tags written on jpg files that contains non-English characters can't be correctly displayed on external apps #2212
- Loading branch information
Showing
4 changed files
with
120 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters