Enum BorderWrappingMode
Wrapping mode for the border pixels in convolution processing.
Namespace: SixLabors.ImageSharp.Processing.Processors.Convolution
Assembly: SixLabors.ImageSharp.dll
Syntax
public enum BorderWrappingMode : byte
Fields
| Name | Description |
|---|---|
| Bounce | Bounce off the border: fedcb|abcdefgh|gfedcb |
| Mirror | Mirror the last few border values: fedcba|abcdefgh|hgfedcb |
| Repeat | Repeat the border pixel value: aaaaaa|abcdefgh|hhhhhhh |
| Wrap | Take values from the opposite edge: cdefgh|abcdefgh|abcdefg |