AForge.Imaging.Filters.BaseInPlaceFilter.CheckSourceFormat C# (CSharp) Méthode

CheckSourceFormat() private méthode

private CheckSourceFormat ( PixelFormat pixelFormat ) : void
pixelFormat PixelFormat
Résultat void
        private void CheckSourceFormat( PixelFormat pixelFormat )
        {
            if ( !FormatTranslations.ContainsKey( pixelFormat ) )
                throw new UnsupportedImageFormatException( "Source pixel format is not supported by the filter." );
        }
    }