AGS.Engine.Desktop.DesktopBitmapLoader.Load C# (CSharp) Method

Load() public method

public Load ( Stream stream ) : IBitmap
stream Stream
return IBitmap
		public IBitmap Load(Stream stream)
		{
            return new DesktopBitmap (new Bitmap (stream), _graphics);
		}

Same methods

DesktopBitmapLoader::Load ( int width, int height ) : IBitmap
DesktopBitmapLoader