Table of Contents

Delegate PixelRowOperation

Namespace
SixLabors.ImageSharp.Processing
Assembly
SixLabors.ImageSharp.dll

A delegate representing a user defined processing delegate to use to modify image rows.

public delegate void PixelRowOperation(Span<Vector4> span)

Parameters

span Span<Vector4>

The target row of Vector4 pixels to process.

Remarks

The X, Y, Z, and W fields map the RGBA channels respectively.