Hello, we have encountered a problem while applying the Gaussian Filter on raster Images.
The usage (c#):
image.Filter(image.bounds,new GaussianFilter(1,0.255));
The result is the same image with black pixel at index [0,0].
The problem then continues as the filter is being applied on the following pixels, creating a border to the image.
The best way to recreate the problem and understand it, is to apply the filter as the following:
image.Filter(image.bounds,new GaussianFilter(5,5));
That way you can actually see the border clearly and the black pixel on top.
Try for example to apply the filter on a white image.
This occures on different versions of Aspose.Imaging (checked against 21, 20 and more)
Thank you.