Browse Source

allow setting the profile header

pull/181/head
Johannes Bildstein 9 years ago
parent
commit
9e9e69ec19
  1. 7
      src/ImageSharp/MetaData/Profiles/ICC/IccProfile.cs

7
src/ImageSharp/MetaData/Profiles/ICC/IccProfile.cs

@ -49,7 +49,7 @@ namespace ImageSharp
}
/// <summary>
/// Gets the profile header
/// Gets or sets the profile header
/// </summary>
public IccProfileHeader Header
{
@ -58,6 +58,11 @@ namespace ImageSharp
this.InitializeHeader();
return this.header;
}
set
{
this.header = value;
}
}
/// <summary>

Loading…
Cancel
Save