AForge.Imaging.Filters.BaseInPlacePartialFilter.ApplyInPlace C# (CSharp) Метод

ApplyInPlace() публичный Метод

Apply filter to an image or its part.
The method applies the filter directly to the provided source image.
Unsupported pixel format of the source image.
public ApplyInPlace ( BitmapData imageData, Rectangle rect ) : void
imageData System.Drawing.Imaging.BitmapData Image data to apply filter to.
rect System.Drawing.Rectangle Image rectangle for processing by the filter.
Результат void
        public void ApplyInPlace( BitmapData imageData, Rectangle rect )
        {
            // apply the filter
            ApplyInPlace( new UnmanagedImage( imageData ), rect );
        }

Same methods

BaseInPlacePartialFilter::ApplyInPlace ( Bitmap image ) : void
BaseInPlacePartialFilter::ApplyInPlace ( Bitmap image, Rectangle rect ) : void
BaseInPlacePartialFilter::ApplyInPlace ( BitmapData imageData ) : void
BaseInPlacePartialFilter::ApplyInPlace ( UnmanagedImage image ) : void
BaseInPlacePartialFilter::ApplyInPlace ( UnmanagedImage image, Rectangle rect ) : void