mirror of https://github.com/SixLabors/ImageSharp
4 changed files with 45 additions and 25 deletions
@ -0,0 +1,28 @@ |
|||||
|
// <copyright file="IccClutDataType.cs" company="James Jackson-South">
|
||||
|
// Copyright (c) James Jackson-South and contributors.
|
||||
|
// Licensed under the Apache License, Version 2.0.
|
||||
|
// </copyright>
|
||||
|
|
||||
|
namespace ImageSharp |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Formula curve segment type
|
||||
|
/// </summary>
|
||||
|
internal enum IccFormulaCurveType : ushort |
||||
|
{ |
||||
|
/// <summary>
|
||||
|
/// Type 1: Y = (a * X + b)^γ + c
|
||||
|
/// </summary>
|
||||
|
Type1 = 0, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Type 1: Y = a * log10 (b * X^γ + c) + d
|
||||
|
/// </summary>
|
||||
|
Type2 = 1, |
||||
|
|
||||
|
/// <summary>
|
||||
|
/// Type 3: Y = a * b^(c * X + d) + e
|
||||
|
/// </summary>
|
||||
|
Type3 = 2 |
||||
|
} |
||||
|
} |
||||
Loading…
Reference in new issue