diff --git a/src/ImageSharp/Processing/Extensions/PixelShaderExtensions.cs b/src/ImageSharp/Processing/Extensions/PixelShaderExtensions.cs
index 26b6de3db..51d37caad 100644
--- a/src/ImageSharp/Processing/Extensions/PixelShaderExtensions.cs
+++ b/src/ImageSharp/Processing/Extensions/PixelShaderExtensions.cs
@@ -30,7 +30,28 @@ namespace SixLabors.ImageSharp.Processing
/// The structure that specifies the portion of the image object to alter.
///
/// The to allow chaining of operations.
- public static IImageProcessingContext BlackWhite(this IImageProcessingContext source, PixelShader pixelShader, Rectangle rectangle)
+ public static IImageProcessingContext ApplyPixelShaderProcessor(this IImageProcessingContext source, PixelShader pixelShader, Rectangle rectangle)
=> source.ApplyProcessor(new PixelShaderProcessor(pixelShader), rectangle);
+
+ ///
+ /// Applies a user defined pixel shader to the image.
+ ///
+ /// The image this method extends.
+ /// The user defined pixel shader to use to modify images.
+ /// The to allow chaining of operations.
+ public static IImageProcessingContext ApplyPixelShaderProcessor(this IImageProcessingContext source, PositionAwarePixelShader pixelShader)
+ => source.ApplyProcessor(new PositionAwarePixelShaderProcessor(pixelShader));
+
+ ///
+ /// Applies a user defined pixel shader to the image.
+ ///
+ /// The image this method extends.
+ /// The user defined pixel shader to use to modify images.
+ ///
+ /// The structure that specifies the portion of the image object to alter.
+ ///
+ /// The to allow chaining of operations.
+ public static IImageProcessingContext ApplyPixelShaderProcessor(this IImageProcessingContext source, PositionAwarePixelShader pixelShader, Rectangle rectangle)
+ => source.ApplyProcessor(new PositionAwarePixelShaderProcessor(pixelShader), rectangle);
}
}