mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
862 B
41 lines
862 B
// <copyright file="ExifParts.cs" company="James Jackson-South">
|
|
// Copyright (c) James Jackson-South and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
// </copyright>
|
|
|
|
namespace ImageProcessorCore
|
|
{
|
|
using System;
|
|
|
|
/// <summary>
|
|
/// Specifies which parts will be written when the profile is added to an image.
|
|
/// </summary>
|
|
[Flags]
|
|
public enum ExifParts
|
|
{
|
|
/// <summary>
|
|
/// None
|
|
/// </summary>
|
|
None = 0,
|
|
|
|
/// <summary>
|
|
/// IfdTags
|
|
/// </summary>
|
|
IfdTags = 1,
|
|
|
|
/// <summary>
|
|
/// ExifTags
|
|
/// </summary>
|
|
ExifTags = 4,
|
|
|
|
/// <summary>
|
|
/// GPSTags
|
|
/// </summary>
|
|
GPSTags = 8,
|
|
|
|
/// <summary>
|
|
/// All
|
|
/// </summary>
|
|
All = IfdTags | ExifTags | GPSTags
|
|
}
|
|
}
|