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.
47 lines
1.5 KiB
47 lines
1.5 KiB
// Copyright (c) Six Labors and contributors.
|
|
// Licensed under the Apache License, Version 2.0.
|
|
|
|
using System;
|
|
using System.Linq;
|
|
|
|
namespace SixLabors.ImageSharp.MetaData.Profiles.Icc
|
|
{
|
|
/// <summary>
|
|
/// A set of curves to process data
|
|
/// </summary>
|
|
internal sealed class IccCurveSetProcessElement : IccMultiProcessElement, IEquatable<IccCurveSetProcessElement>
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="IccCurveSetProcessElement"/> class.
|
|
/// </summary>
|
|
/// <param name="curves">An array with one dimensional curves</param>
|
|
public IccCurveSetProcessElement(IccOneDimensionalCurve[] curves)
|
|
: base(IccMultiProcessElementSignature.CurveSet, curves?.Length ?? 1, curves?.Length ?? 1)
|
|
{
|
|
Guard.NotNull(curves, nameof(curves));
|
|
this.Curves = curves;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets an array of one dimensional curves
|
|
/// </summary>
|
|
public IccOneDimensionalCurve[] Curves { get; }
|
|
|
|
/// <inheritdoc />
|
|
public override bool Equals(IccMultiProcessElement other)
|
|
{
|
|
if (base.Equals(other) && other is IccCurveSetProcessElement element)
|
|
{
|
|
return this.Curves.SequenceEqual(element.Curves);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public bool Equals(IccCurveSetProcessElement other)
|
|
{
|
|
return this.Equals((IccMultiProcessElement)other);
|
|
}
|
|
}
|
|
}
|