Delegate PixelRowOperation<T>
A langword_csharp_delegate representing a user defined processing delegate to use to modify image rows.
Namespace: SixLabors.ImageSharp.Processing
Assembly: SixLabors.ImageSharp.dll
Syntax
public delegate void PixelRowOperation<in T>(Span<Vector4> span, T value);
Parameters
Type | Name | Description |
---|---|---|
Span<Vector4> | span | The target row of Vector4 pixels to process. |
T | value | The parameter of the method that this delegate encapsulates. |
Type Parameters
Name | Description |
---|---|
T | The type of the parameter of the method that this delegate encapsulates. This type parameter is contravariant.That is, you can use either the type you specified or any type that is less derived. |