■ 이미지 돋보기를 사용하는 방법을 보여준다.
▶ MainForm.cs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
using System; using System.Drawing; using System.Drawing.Drawing2D; using System.Windows.Forms; namespace TestProject { /// <summary> /// 메인 폼 /// </summary> public partial class MainForm : Form { //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region Field /// <summary> /// 스케일 /// </summary> private const int SCALE = 2; /// <summary> /// 맵 비트맵 반지름 /// </summary> private const int MAP_BITMAP_RADIUS = 25; /// <summary> /// 소스 비트맵 포커스 반지름 /// </summary> private const int SOURCE_BITMAP_FOCUS_RADIUS = MAP_BITMAP_RADIUS * SCALE; /// <summary> /// 소스 비트맵 포커스 지름 /// </summary> private const int SOURCE_BITMAP_FOCUS_DIAMETER = 2 * SOURCE_BITMAP_FOCUS_RADIUS; /// <summary> /// 소스 비트맵 /// </summary> private Bitmap sourceBitmap; /// <summary> /// 맵 비트맵 /// </summary> private Bitmap mapBitmap; /// <summary> /// 맵 포커스 XOR 비트맵 /// </summary> private Bitmap mapFocusXORBitmap; /// <summary> /// 최종 맵 비트맵 /// </summary> private Bitmap finalMapBitmap; /// <summary> /// 포커스 사각형 /// </summary> private Rectangle focusRectangle = new Rectangle(0, 0, SOURCE_BITMAP_FOCUS_DIAMETER, SOURCE_BITMAP_FOCUS_DIAMETER); /// <summary> /// 소스 포커스 비트맵 사각형 /// </summary> private Rectangle sourceFocusRectangle = new Rectangle(0, 0, SOURCE_BITMAP_FOCUS_DIAMETER, SOURCE_BITMAP_FOCUS_DIAMETER); /// <summary> /// 맵 포커스 비트맵 사각형 /// </summary> private Rectangle mapFocusRectangle = new Rectangle(0, 0, SOURCE_BITMAP_FOCUS_DIAMETER, SOURCE_BITMAP_FOCUS_DIAMETER); #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Constructor ////////////////////////////////////////////////////////////////////////////////////////// Public #region 생성자 - MainForm() /// <summary> /// 생성자 /// </summary> public MainForm() { InitializeComponent(); this.mapPictureBox.Image = Image.FromFile("usmapsmall.jpg"); this.sourcePictureBox.Image = Image.FromFile("usmap.gif" ); #region 이벤트를 설정한다. #endregion } #endregion //////////////////////////////////////////////////////////////////////////////////////////////////// Method ////////////////////////////////////////////////////////////////////////////////////////// Private //////////////////////////////////////////////////////////////////////////////// Event #region 폼 로드시 처리하기 - Form_Load(sender, e) /// <summary> /// 폼 로드시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void Form_Load(object sender, EventArgs e) { this.sourceBitmap = (Bitmap)this.sourcePictureBox.Image; this.mapBitmap = (Bitmap)this.mapPictureBox.Image; this.finalMapBitmap = (Bitmap)(this.mapBitmap.Clone()); this.mapFocusXORBitmap = new Bitmap(SOURCE_BITMAP_FOCUS_DIAMETER, SOURCE_BITMAP_FOCUS_DIAMETER); } #endregion #region 맵 픽처 박스 마우스 이동시 처리하기 - mapPictureBox_MouseMove(sender, e) /// <summary> /// 맵 픽처 박스 마우스 이동시 처리하기 /// </summary> /// <param name="sender">이벤트 발생자</param> /// <param name="e">이벤트 인자</param> private void mapPictureBox_MouseMove(object sender, MouseEventArgs e) { this.mapFocusRectangle.X = e.X - SOURCE_BITMAP_FOCUS_RADIUS; this.mapFocusRectangle.Y = e.Y - SOURCE_BITMAP_FOCUS_RADIUS; this.sourceFocusRectangle.X = e.X * SCALE - SOURCE_BITMAP_FOCUS_RADIUS; this.sourceFocusRectangle.Y = e.Y * SCALE - SOURCE_BITMAP_FOCUS_RADIUS; // 맵 포커스 XOR 비트맵을 설정한다. using(Graphics graphics = Graphics.FromImage(this.mapFocusXORBitmap)) { graphics.DrawImage(this.mapBitmap, this.focusRectangle, this.mapFocusRectangle, GraphicsUnit.Pixel); using(SolidBrush brush = new SolidBrush(Color.FromArgb(255, 1, 2, 3))) { graphics.FillEllipse(brush, this.focusRectangle); this.mapFocusXORBitmap.MakeTransparent(brush.Color); } } // 최종 맵 비트맵을 설정한다. using(Graphics graphics = Graphics.FromImage(this.finalMapBitmap)) { graphics.SmoothingMode = SmoothingMode.AntiAlias; // 최종 맵 비트맵의 전체 영역에 맵 비트맵을 그린다. graphics.DrawImage(this.mapBitmap, 0, 0, this.mapBitmap.Width, this.mapBitmap.Height); // 최종 맵 비트맵의 맵 포커스 사각형 영역에 소스 비트맵의 소스 포커스 사각형 영역의 이미지를 그린다. graphics.DrawImage(this.sourceBitmap, this.mapFocusRectangle, this.sourceFocusRectangle, GraphicsUnit.Pixel); // 최종 맵 비트맵의 맵 포커스 사각형 영역에 맵 포커스 XOR 비트맵을 그린다. // 맵 포커스 XOR 비트맵의 중앙 원 영역이 투명 처리되어 있기 때문에 원 영역을 제외한 나머지 부분만 그린다. graphics.DrawImage(this.mapFocusXORBitmap, this.mapFocusRectangle, this.focusRectangle, GraphicsUnit.Pixel); graphics.DrawEllipse(Pens.Blue, this.mapFocusRectangle); this.mapPictureBox.Image = this.finalMapBitmap; } } #endregion } } |