BoringHeroes.ScreenReader.ChangePixelFormat C# (CSharp) 메소드

ChangePixelFormat() 개인적인 정적인 메소드

private static ChangePixelFormat ( Bitmap inputImage, PixelFormat newFormat ) : Bitmap
inputImage System.Drawing.Bitmap
newFormat PixelFormat
리턴 System.Drawing.Bitmap
        private static Bitmap ChangePixelFormat(Bitmap inputImage, PixelFormat newFormat)
        {
            return (inputImage.Clone(new Rectangle(0, 0, inputImage.Width, inputImage.Height), newFormat));
        }