-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMetadata.cs
208 lines (174 loc) · 8.2 KB
/
Metadata.cs
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
using ImageMagick;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
using System.Web;
namespace Ben.Classes
{
/// <summary>
/// A wrapper class for ImageMagick that gets the important stuff
/// from an image file's metadata so that you can do neat sh*t with it!
/// </summary>
/// <remarks> free to use - distributed under the [MIT License](Learn more at http://opensource.org/licenses/mit-license.php):
/// Requires Ben.Classes.ExtensionHelpers
/// </remarks>
/// <see>https://www.bennysutton.com/</see>
/// <seealso cref="https://github.com/BennySutton/MagickMetadata"/>
public class MagickMetadata : IDisposable
{
private MagickImage _image;
private string _keywords;
/// <summary>
/// load from an image file on your hard disk
/// </summary>
/// <param name="path">root relative virtual path to the script or path for the current request e.g. ~/admin/imagename.jpg or /admin/imagename.jpg </param>
public MagickMetadata(string rootpath)
{
// prevent accidental reloading on top of existing
if (!_image.IsNull()) throw new Exception("Image already loaded");
if (!rootpath.GetFileName().IsImage()) throw new Exception("File does not have an image file extension");
_image = new MagickImage(rootpath.PhysicalPathFromRootPath());
Init();
}
/// <summary>
/// load from another MagickImage image
/// </summary>
/// <param name="image"></param>
public MagickMetadata(MagickImage image)
{
// prevent accidental reloading on top of existing
if (!_image.IsNull()) throw new Exception("Image already loaded");
if (!image.FileName.IsImage()) throw new Exception("File does not have an image file extension");
_image = image;
Init();
}
/// <summary>
/// load an image (png/gif/jpg format) from a file upload
/// </summary>
/// <param name="httpPostedFile">an image file uploaded from a client</param>
public MagickMetadata(HttpPostedFileBase httpPostedFile)
{
// prevent accidental reloading on top of existing
if (!_image.IsNull()) throw new Exception("Image already loaded");
if (!httpPostedFile.FileName.GetFileName().IsImage()) throw new Exception("File does not have an image file extension");
try
{
_image = new MagickImage(httpPostedFile.InputStream);
Init();
}
catch
{
throw; // check for ImageFormatException if not an image file
}
}
/// <summary>
/// persist existing metadata values (if any) to property values
/// </summary>
private void Init()
{
IExifProfile exifprofile = _image.GetExifProfile();
if (!exifprofile.IsNull())
{
if (exifprofile.GetValue(ExifTag.Copyright) != null) { Copyright = exifprofile.GetValue(ExifTag.Copyright).ToString(); }
if (exifprofile.GetValue(ExifTag.Artist) != null) { Creator = exifprofile.GetValue(ExifTag.Artist).ToString(); }
if (exifprofile.GetValue(ExifTag.ImageDescription) != null) { Subject = exifprofile.GetValue(ExifTag.ImageDescription).ToString(); }
if (exifprofile.GetValue(ExifTag.Software) != null) { Software = exifprofile.GetValue(ExifTag.Software).ToString(); }
}
IIptcProfile iptcprofile = _image.GetIptcProfile();
if (!iptcprofile.IsNull())
{
if (iptcprofile.GetValue(IptcTag.Country) != null) { Country = iptcprofile.GetValue(IptcTag.Country).ToString(); }
if (iptcprofile.GetValue(IptcTag.Headline) != null) { Headline = iptcprofile.GetValue(IptcTag.Headline).ToString(); }
if (iptcprofile.GetValue(IptcTag.Keyword) != null) { Keywords = iptcprofile.GetValue(IptcTag.Keyword).ToString(); }
if (iptcprofile.GetValue(IptcTag.Source) != null) { Source = iptcprofile.GetValue(IptcTag.Source).ToString(); }
if (iptcprofile.GetValue(IptcTag.Caption) != null) { Subject = iptcprofile.GetValue(IptcTag.Caption).ToString(); }
if (iptcprofile.GetValue(IptcTag.Title) != null) { Title = iptcprofile.GetValue(IptcTag.Title).ToString(); }
}
}
public bool Save(string rootpath)
{
bool success = false;
ImageMagick.ExifProfile exifprofile = new ImageMagick.ExifProfile();
exifprofile.SetValue(ExifTag.Copyright, " ©" + Copyright);
exifprofile.SetValue(ExifTag.Artist, Creator);
exifprofile.SetValue(ExifTag.ImageDescription, Subject);
exifprofile.SetValue(ExifTag.Software, Software);
_image.AddProfile(exifprofile);
ImageMagick.IptcProfile iptcprofile = new ImageMagick.IptcProfile();
iptcprofile.SetValue(IptcTag.CopyrightNotice, "No Unauthorized reproduction ©" + Copyright);
iptcprofile.SetValue(IptcTag.Byline, Creator);
iptcprofile.SetValue(IptcTag.Country, Country);
iptcprofile.SetValue(IptcTag.Headline, Headline);
iptcprofile.SetValue(IptcTag.Keyword, Keywords);
iptcprofile.SetValue(IptcTag.Source, Source);
iptcprofile.SetValue(IptcTag.Caption, Subject);
iptcprofile.SetValue(IptcTag.Title, Title);
_image.AddProfile(iptcprofile);
_image.Write(rootpath);
success = true;
return success;
}
/// <summary>
/// resets Keywords - when you add keywords with multiple calls to Keyword they are preserved so this is the only way to reset them - don't forget to call Save() afterwards
/// </summary>
public void ClearKeywords()
{
_keywords = "";
}
/// <summary>
/// Allows you to loop through all the fields e.g. on a razor page
/// </summary>
/// <example>Ben.Classes.MagickMetadata magickMetadata = new Ben.Classes.MagickMetadata(filename);
/// Dictionary<string, object> myDictionary = magickMetadata.ClassPropertiesToDictionary();</example>
/// <returns>a dictionary of field names and values</returns>
public Dictionary<string, object> ClassPropertiesToDictionary()
{
return this.GetType()
.GetProperties(BindingFlags.Instance | BindingFlags.Public)
.ToDictionary(prop => prop.Name, prop => prop.GetValue(this, null));
}
#region AutoImplementedProperties
/// <summary>
/// used to show copyright notice NOTE the copyright symbol © gets automatically prepended
/// </summary>
public string Copyright { get; set; }
/// <summary>
/// use to show the name of the person who took the photo and/or user who uploaded
/// </summary>
public string Creator { get; set; }
public string Country { get; set; }
public string Headline { get; set; }
/// <summary>
/// Keywords NOTE if you call multiple times values will be appended not overwritten - call KeywordsClear() to reset
/// </summary>
public string Keywords
{
get
{
return _keywords;
}
set
{
if (String.IsNullOrEmpty(_keywords))
{
_keywords = value;
}
else
{
_keywords = _keywords + " " + value;
}
}
}
public string Software { get; set; }
public string Source { get; internal set; }
public string Subject { get; set; }
public string Title { get; set; }
#endregion
// DISPOSE
public void Dispose()
{
_image.Dispose();
}
}
}