■ 컨트롤의 비트맵을 구하는 방법을 보여준다.
▶ 예제 코드 (C#)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
using System.Drawing; #region 컨트롤 비트맵 구하기 - GetControlBitmap(sourceControl) /// <summary> /// 컨트롤 비트맵 구하기 /// </summary> /// <param name="sourceControl">소스 컨트롤</param> /// <returns>컨트롤 비트맵</returns> public static Bitmap GetControlBitmap(Control sourceControl) { Bitmap bitmap = new Bitmap(sourceControl.Width, sourceControl.Height); sourceControl.DrawToBitmap(bitmap, new Rectangle(0, 0, sourceControl.Width, sourceControl.Height)); return bitmap; } #endregion |