forked from JimBobSquarePants/ImageProcessor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMetaDataMode.cs
More file actions
40 lines (35 loc) · 1.23 KB
/
Copy pathMetaDataMode.cs
File metadata and controls
40 lines (35 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="MetaDataMode.cs" company="James Jackson-South">
// Copyright (c) James Jackson-South.
// Licensed under the Apache License, Version 2.0.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace ImageProcessor
{
/// <summary>
/// Enumerates the various metadata modes that control how much metadata information is stored on processing
/// </summary>
public enum MetaDataMode
{
/// <summary>
/// Store no metadata on processing
/// </summary>
None,
/// <summary>
/// Store copyright specific metadata on processing
/// </summary>
Copyright,
/// <summary>
/// Store geolocation specific metadata on processing
/// </summary>
Geolocation,
/// <summary>
/// Store copyright and geolocation specific metadata on processing
/// </summary>
CopyrightAndGeolocation,
/// <summary>
/// Store all metadata on processing
/// </summary>
All
}
}