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

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

Initializes a new instance of the Mirror class.
public Mirror ( bool mirrorX, bool mirrorY ) : System
mirrorX bool Specifies if mirroring should be done for X axis.
mirrorY bool Specifies if mirroring should be done for Y axis
Результат System
        public Mirror( bool mirrorX, bool mirrorY )
        {
            this.mirrorX = mirrorX;
            this.MirrorY = mirrorY;

            // initialize format translation dictionary
            formatTranslations[PixelFormat.Format8bppIndexed] = PixelFormat.Format8bppIndexed;
            formatTranslations[PixelFormat.Format24bppRgb]    = PixelFormat.Format24bppRgb;
        }