예제 #1
0
        internal Tile(Tile tile)
        {
            this.dummyTile        = tile.dummyTile;
            this.number           = tile.number;
            this.originalPosition = tile.originalPosition;
            this.ColorDepth       = tile.colorDepth;
            this.type             = tile.type;

            Initialise(tile.FilePath, tile.Width, tile.Height);
        }
예제 #2
0
        internal Tile(string filepath, int number, Point position, int width, int height,
                      int colorDepth, FREE_IMAGE_TYPE type)
        {
            this.dummyTile        = false;
            this.number           = number;
            this.originalPosition = position;
            this.ColorDepth       = colorDepth;
            this.type             = type;

            Initialise(filepath, width, height);
        }
예제 #3
0
 public FreeImageCodec(string type, FI.FREE_IMAGE_TYPE freeImageType)
 {
     this._type          = type;
     this._freeImageType = freeImageType;
 }
예제 #4
0
		public FreeImageCodec( string type, FI.FREE_IMAGE_TYPE freeImageType )
		{
			this._type = type;
			this._freeImageType = freeImageType;
		}