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

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

Apply filter to an image.
The method applies the filter directly to the provided source image.
Unsupported pixel format of the source image.
public ApplyInPlace ( Bitmap image ) : void
image System.Drawing.Bitmap Image to apply filter to.
Результат void
        public void ApplyInPlace( Bitmap image )
        {
            // apply the filter
            ApplyInPlace( image, new Rectangle( 0, 0, image.Width, image.Height ) );
        }

Same methods

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