diff --git a/src/ImageSharp/Color/Color.cs b/src/ImageSharp/Color/Color.cs
index 76f399517..5fad7a8e3 100644
--- a/src/ImageSharp/Color/Color.cs
+++ b/src/ImageSharp/Color/Color.cs
@@ -133,8 +133,7 @@ namespace SixLabors.ImageSharp
public override string ToString() => this.ToHex();
///
- /// Converts the color instance to an
- /// implementation defined by .
+ /// Converts the color instance to a specified type.
///
/// The pixel type to convert to.
/// The pixel value.
@@ -147,6 +146,24 @@ namespace SixLabors.ImageSharp
return pixel;
}
+ ///
+ /// Bulk converts a span of to a span of a specified type.
+ ///
+ /// The pixel type to convert to.
+ /// The configuration.
+ /// The source color span.
+ /// The destination pixel span.
+ [MethodImpl(InliningOptions.ShortMethod)]
+ public static void ToPixel(
+ Configuration configuration,
+ ReadOnlySpan source,
+ Span destination)
+ where TPixel : struct, IPixel
+ {
+ ReadOnlySpan rgba64Span = MemoryMarshal.Cast(source);
+ PixelOperations.Instance.FromRgba64(configuration, rgba64Span, destination);
+ }
+
///
[MethodImpl(InliningOptions.ShortMethod)]
public bool Equals(Color other)
@@ -166,19 +183,5 @@ namespace SixLabors.ImageSharp
{
return this.data.PackedValue.GetHashCode();
}
-
- ///
- /// Bulk convert a span of to a span of a specified pixel type.
- ///
- [MethodImpl(InliningOptions.ShortMethod)]
- internal static void ToPixel(
- Configuration configuration,
- ReadOnlySpan source,
- Span destination)
- where TPixel : struct, IPixel
- {
- ReadOnlySpan rgba64Span = MemoryMarshal.Cast(source);
- PixelOperations.Instance.FromRgba64(configuration, rgba64Span, destination);
- }
}
}