Bitmap bmp = new Bitmap(tag.getWidth(), tag.getHeight());
			Graphics g = Graphics.FromImage(bmp);

			for ( int i = 0; i < tag.getBmpCount(); i++ )
			{
				g.DrawImage((Image) tag.getBmp(i), tag.getX(i), tag.getY(i));
			}

			bmp.Save(path, ImageFormat.Png);
tag안에 이미지와 좌표정보를 담고있다.

먼저 새로운 비트맵을 하나 생성하고 그림을 그린다.
그림을 그리고 해당 비트맵을 원하는 형식으로 저장하면 됨.
 




+ Recent posts