Sphere.Core.Utility.BitmapSaver.BitmapSaver C# (CSharp) 메소드

BitmapSaver() 공개 메소드

Creates a bitmap saver, which saves bitmaps to filestreams.
public BitmapSaver ( int width, int height ) : System.Drawing
width int The image width in pixels.
height int The image height in pixels.
리턴 System.Drawing
        public BitmapSaver(int width, int height)
        {
            _rect = new Rectangle(0, 0, width, height);
            _size = width * height;
        }