mirror of https://github.com/SixLabors/ImageSharp
4 changed files with 181 additions and 11 deletions
@ -0,0 +1,53 @@ |
|||||
|
// <copyright file="TiffMetadataNames.cs" company="James Jackson-South">
|
||||
|
// Copyright (c) James Jackson-South and contributors.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
// </copyright>
|
||||
|
|
||||
|
namespace ImageSharp.Formats |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Defines constants for each of the supported TIFF metadata types.
|
||||
|
/// </summary>
|
||||
|
public static class TiffMetadataNames |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Person who created the image.
|
||||
|
/// </summary>
|
||||
|
public const string Artist = "Artist"; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Copyright notice.
|
||||
|
/// </summary>
|
||||
|
public const string Copyright = "Copyright"; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Date and time of image creation.
|
||||
|
/// </summary>
|
||||
|
public const string DateTime = "DateTime"; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// The computer and/or operating system in use at the time of image creation.
|
||||
|
/// </summary>
|
||||
|
public const string HostComputer = "HostComputer"; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// A string that describes the subject of the image.
|
||||
|
/// </summary>
|
||||
|
public const string ImageDescription = "ImageDescription"; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// The scanner/camera manufacturer.
|
||||
|
/// </summary>
|
||||
|
public const string Make = "Make"; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// The scanner/camera model name or number.
|
||||
|
/// </summary>
|
||||
|
public const string Model = "Model"; |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Name and version number of the software package(s) used to create the image.
|
||||
|
/// </summary>
|
||||
|
public const string Software = "Software"; |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue