ImageProcessBox.cs 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846
  1. using LYFZ.OtherExpansion.Win32;
  2. using System;
  3. using System.ComponentModel;
  4. using System.Drawing;
  5. using System.Drawing.Imaging;
  6. using System.Runtime.InteropServices;
  7. using System.Windows.Forms;
  8. namespace LYFZ.OtherExpansion.SkinControl
  9. {
  10. internal class ImageProcessBox : Control
  11. {
  12. private Image baseImage;
  13. private Color dotColor;
  14. private Color lineColor;
  15. private Rectangle selectedRectangle;
  16. private Size magnifySize;
  17. private int magnifyTimes;
  18. private bool isDrawOperationDot;
  19. private bool isSetClip;
  20. private bool isShowInfo;
  21. private bool autoSizeFromImage;
  22. private bool isDrawed;
  23. private bool isStartDraw;
  24. private bool isMoving;
  25. private bool canReset;
  26. private bool m_bMouseEnter;
  27. private bool m_bLockH;
  28. private bool m_bLockW;
  29. private Point m_ptOriginal;
  30. private Point m_ptCurrent;
  31. private Point m_ptTempStarPos;
  32. private Rectangle[] m_rectDots;
  33. private Rectangle m_rectClip;
  34. private Bitmap m_bmpDark;
  35. private Pen m_pen;
  36. private SolidBrush m_sb;
  37. private IContainer components;
  38. [Category("Custom"), Description("获取或设置用于被操作的图像")]
  39. public Image BaseImage
  40. {
  41. get
  42. {
  43. return this.baseImage;
  44. }
  45. set
  46. {
  47. this.baseImage = value;
  48. this.BuildBitmap();
  49. }
  50. }
  51. [Category("Custom"), DefaultValue(typeof(Color), "Yellow"), Description("获取或设置操作框点的颜色")]
  52. public Color DotColor
  53. {
  54. get
  55. {
  56. return this.dotColor;
  57. }
  58. set
  59. {
  60. this.dotColor = value;
  61. }
  62. }
  63. [Category("Custom"), DefaultValue(typeof(Color), "Cyan"), Description("获取或设置操作框线条的颜色")]
  64. public Color LineColor
  65. {
  66. get
  67. {
  68. return this.lineColor;
  69. }
  70. set
  71. {
  72. this.lineColor = value;
  73. }
  74. }
  75. [Browsable(false)]
  76. public Rectangle SelectedRectangle
  77. {
  78. get
  79. {
  80. Rectangle rectTemp = this.selectedRectangle;
  81. rectTemp.Width++;
  82. rectTemp.Height++;
  83. return rectTemp;
  84. }
  85. }
  86. [Category("Custom"), DefaultValue(typeof(Size), "15,15"), Description("获取或设置放大图像的原图大小尺寸")]
  87. public Size MagnifySize
  88. {
  89. get
  90. {
  91. return this.magnifySize;
  92. }
  93. set
  94. {
  95. this.magnifySize = value;
  96. if (this.magnifySize.Width < 5)
  97. {
  98. this.magnifySize.Width = 5;
  99. }
  100. if (this.magnifySize.Width > 20)
  101. {
  102. this.magnifySize.Width = 20;
  103. }
  104. if (this.magnifySize.Height < 5)
  105. {
  106. this.magnifySize.Height = 5;
  107. }
  108. if (this.magnifySize.Height > 20)
  109. {
  110. this.magnifySize.Height = 20;
  111. }
  112. }
  113. }
  114. [Category("Custom"), DefaultValue(7), Description("获取或设置图像放大的倍数")]
  115. public int MagnifyTimes
  116. {
  117. get
  118. {
  119. return this.magnifyTimes;
  120. }
  121. set
  122. {
  123. this.magnifyTimes = value;
  124. if (this.magnifyTimes < 3)
  125. {
  126. this.magnifyTimes = 3;
  127. }
  128. if (this.magnifyTimes > 10)
  129. {
  130. this.magnifyTimes = 10;
  131. }
  132. }
  133. }
  134. [Category("Custom"), DefaultValue(true), Description("获取或设置是否绘制操作框点")]
  135. public bool IsDrawOperationDot
  136. {
  137. get
  138. {
  139. return this.isDrawOperationDot;
  140. }
  141. set
  142. {
  143. if (value == this.isDrawOperationDot)
  144. {
  145. return;
  146. }
  147. this.isDrawOperationDot = value;
  148. base.Invalidate();
  149. }
  150. }
  151. [Category("Custom"), DefaultValue(true), Description("获取或设置是否限制鼠标操作区域")]
  152. public bool IsSetClip
  153. {
  154. get
  155. {
  156. return this.isSetClip;
  157. }
  158. set
  159. {
  160. this.isSetClip = value;
  161. }
  162. }
  163. [Category("Custom"), DefaultValue(true), Description("获取或设置是否绘制信息展示")]
  164. public bool IsShowInfo
  165. {
  166. get
  167. {
  168. return this.isShowInfo;
  169. }
  170. set
  171. {
  172. this.isShowInfo = value;
  173. }
  174. }
  175. [Category("Custom"), DefaultValue(true), Description("获取或设置是否根据图像大小自动调整控件尺寸")]
  176. public bool AutoSizeFromImage
  177. {
  178. get
  179. {
  180. return this.autoSizeFromImage;
  181. }
  182. set
  183. {
  184. if (value && this.baseImage != null)
  185. {
  186. base.Width = this.baseImage.Width;
  187. base.Height = this.baseImage.Height;
  188. }
  189. this.autoSizeFromImage = value;
  190. }
  191. }
  192. [Browsable(false)]
  193. public bool IsDrawed
  194. {
  195. get
  196. {
  197. return this.isDrawed;
  198. }
  199. }
  200. [Browsable(false)]
  201. public bool IsStartDraw
  202. {
  203. get
  204. {
  205. return this.isStartDraw;
  206. }
  207. }
  208. [Browsable(false)]
  209. public bool IsMoving
  210. {
  211. get
  212. {
  213. return this.isMoving;
  214. }
  215. }
  216. [Browsable(false)]
  217. public bool CanReset
  218. {
  219. get
  220. {
  221. return this.canReset;
  222. }
  223. set
  224. {
  225. this.canReset = value;
  226. if (!this.canReset)
  227. {
  228. this.Cursor = Cursors.Default;
  229. }
  230. }
  231. }
  232. public ImageProcessBox()
  233. {
  234. this.InitializeComponent();
  235. this.InitMember();
  236. this.ForeColor = Color.White;
  237. this.BackColor = Color.Black;
  238. this.Dock = DockStyle.Fill;
  239. base.SetStyle(ControlStyles.ResizeRedraw, true);
  240. base.SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
  241. base.SetStyle(ControlStyles.AllPaintingInWmPaint, true);
  242. base.SetStyle(ControlStyles.UserPaint, true);
  243. base.SetStyle(ControlStyles.SupportsTransparentBackColor, true);
  244. }
  245. private void InitMember()
  246. {
  247. this.dotColor = Color.Yellow;
  248. this.lineColor = Color.Cyan;
  249. this.magnifySize = new Size(15, 15);
  250. this.magnifyTimes = 7;
  251. this.isDrawOperationDot = true;
  252. this.isSetClip = true;
  253. this.isShowInfo = true;
  254. this.autoSizeFromImage = true;
  255. this.canReset = true;
  256. this.m_pen = new Pen(this.lineColor, 1f);
  257. this.m_sb = new SolidBrush(this.dotColor);
  258. this.selectedRectangle = default(Rectangle);
  259. this.ClearDraw();
  260. this.m_rectDots = new Rectangle[8];
  261. for (int i = 0; i < 8; i++)
  262. {
  263. this.m_rectDots[i] = new Rectangle(-10, -10, 5, 5);
  264. }
  265. }
  266. ~ImageProcessBox()
  267. {
  268. this.m_pen.Dispose();
  269. this.m_sb.Dispose();
  270. this.m_bmpDark.Dispose();
  271. this.baseImage.Dispose();
  272. }
  273. public void DeleResource()
  274. {
  275. this.m_pen.Dispose();
  276. this.m_sb.Dispose();
  277. if (this.baseImage != null)
  278. {
  279. this.m_bmpDark.Dispose();
  280. this.baseImage.Dispose();
  281. }
  282. }
  283. protected override void OnMouseDown(MouseEventArgs e)
  284. {
  285. if (e.Button == MouseButtons.Left && (!this.IsDrawed || this.Cursor != Cursors.Default))
  286. {
  287. this.m_rectClip = this.DisplayRectangle;
  288. if (this.baseImage != null && this.isSetClip)
  289. {
  290. if (e.X > this.baseImage.Width || e.Y > this.baseImage.Height)
  291. {
  292. return;
  293. }
  294. this.m_rectClip.Intersect(new Rectangle(0, 0, this.baseImage.Width, this.baseImage.Height));
  295. }
  296. Cursor.Clip = base.RectangleToScreen(this.m_rectClip);
  297. this.isStartDraw = true;
  298. this.m_ptOriginal = e.Location;
  299. }
  300. base.Focus();
  301. base.OnMouseDown(e);
  302. }
  303. protected override void OnMouseMove(MouseEventArgs e)
  304. {
  305. this.m_ptCurrent = e.Location;
  306. this.m_bMouseEnter = true;
  307. if (this.isDrawed && this.canReset)
  308. {
  309. this.SetCursorStyle(e.Location);
  310. if (this.isStartDraw && this.isDrawOperationDot)
  311. {
  312. if (this.m_rectDots[0].Contains(e.Location))
  313. {
  314. this.isDrawed = false;
  315. this.m_ptOriginal.X = this.selectedRectangle.Right;
  316. this.m_ptOriginal.Y = this.selectedRectangle.Bottom;
  317. }
  318. else
  319. {
  320. if (this.m_rectDots[1].Contains(e.Location))
  321. {
  322. this.isDrawed = false;
  323. this.m_ptOriginal.Y = this.selectedRectangle.Bottom;
  324. this.m_bLockW = true;
  325. }
  326. else
  327. {
  328. if (this.m_rectDots[2].Contains(e.Location))
  329. {
  330. this.isDrawed = false;
  331. this.m_ptOriginal.X = this.selectedRectangle.X;
  332. this.m_ptOriginal.Y = this.selectedRectangle.Bottom;
  333. }
  334. else
  335. {
  336. if (this.m_rectDots[3].Contains(e.Location))
  337. {
  338. this.isDrawed = false;
  339. this.m_ptOriginal.X = this.selectedRectangle.Right;
  340. this.m_bLockH = true;
  341. }
  342. else
  343. {
  344. if (this.m_rectDots[4].Contains(e.Location))
  345. {
  346. this.isDrawed = false;
  347. this.m_ptOriginal.X = this.selectedRectangle.X;
  348. this.m_bLockH = true;
  349. }
  350. else
  351. {
  352. if (this.m_rectDots[5].Contains(e.Location))
  353. {
  354. this.isDrawed = false;
  355. this.m_ptOriginal.X = this.selectedRectangle.Right;
  356. this.m_ptOriginal.Y = this.selectedRectangle.Y;
  357. }
  358. else
  359. {
  360. if (this.m_rectDots[6].Contains(e.Location))
  361. {
  362. this.isDrawed = false;
  363. this.m_ptOriginal.Y = this.selectedRectangle.Y;
  364. this.m_bLockW = true;
  365. }
  366. else
  367. {
  368. if (this.m_rectDots[7].Contains(e.Location))
  369. {
  370. this.isDrawed = false;
  371. this.m_ptOriginal = this.selectedRectangle.Location;
  372. }
  373. else
  374. {
  375. if (this.selectedRectangle.Contains(e.Location))
  376. {
  377. this.isDrawed = false;
  378. this.isMoving = true;
  379. }
  380. }
  381. }
  382. }
  383. }
  384. }
  385. }
  386. }
  387. }
  388. }
  389. base.OnMouseMove(e);
  390. return;
  391. }
  392. if (this.isStartDraw)
  393. {
  394. if (this.isMoving)
  395. {
  396. Point ptLast = this.selectedRectangle.Location;
  397. this.selectedRectangle.X = this.m_ptTempStarPos.X + e.X - this.m_ptOriginal.X;
  398. this.selectedRectangle.Y = this.m_ptTempStarPos.Y + e.Y - this.m_ptOriginal.Y;
  399. if (this.selectedRectangle.X < 0)
  400. {
  401. this.selectedRectangle.X = 0;
  402. }
  403. if (this.selectedRectangle.Y < 0)
  404. {
  405. this.selectedRectangle.Y = 0;
  406. }
  407. if (this.selectedRectangle.Right > this.m_rectClip.Width)
  408. {
  409. this.selectedRectangle.X = this.m_rectClip.Width - this.selectedRectangle.Width - 1;
  410. }
  411. if (this.selectedRectangle.Bottom > this.m_rectClip.Height)
  412. {
  413. this.selectedRectangle.Y = this.m_rectClip.Height - this.selectedRectangle.Height - 1;
  414. }
  415. if (base.Location == ptLast)
  416. {
  417. return;
  418. }
  419. }
  420. else
  421. {
  422. if (Math.Abs(e.X - this.m_ptOriginal.X) > 1 || Math.Abs(e.Y - this.m_ptOriginal.Y) > 1)
  423. {
  424. if (!this.m_bLockW)
  425. {
  426. this.selectedRectangle.X = ((this.m_ptOriginal.X - e.X < 0) ? this.m_ptOriginal.X : e.X);
  427. this.selectedRectangle.Width = Math.Abs(this.m_ptOriginal.X - e.X);
  428. }
  429. if (!this.m_bLockH)
  430. {
  431. this.selectedRectangle.Y = ((this.m_ptOriginal.Y - e.Y < 0) ? this.m_ptOriginal.Y : e.Y);
  432. this.selectedRectangle.Height = Math.Abs(this.m_ptOriginal.Y - e.Y);
  433. }
  434. }
  435. }
  436. base.Invalidate();
  437. }
  438. if (this.baseImage != null && !this.isDrawed && !this.isMoving && this.isShowInfo)
  439. {
  440. base.Invalidate();
  441. }
  442. base.OnMouseMove(e);
  443. }
  444. protected override void OnMouseLeave(EventArgs e)
  445. {
  446. this.m_bMouseEnter = false;
  447. base.Invalidate();
  448. base.OnMouseLeave(e);
  449. }
  450. protected override void OnMouseUp(MouseEventArgs e)
  451. {
  452. if (e.Button == MouseButtons.Left)
  453. {
  454. if (this.selectedRectangle.Width >= 4 && this.selectedRectangle.Height >= 4)
  455. {
  456. this.isDrawed = true;
  457. }
  458. else
  459. {
  460. this.ClearDraw();
  461. }
  462. this.isMoving = (this.m_bLockH = (this.m_bLockW = false));
  463. this.isStartDraw = false;
  464. this.m_ptTempStarPos = this.selectedRectangle.Location;
  465. Cursor.Clip = default(Rectangle);
  466. }
  467. else
  468. {
  469. if (e.Button == MouseButtons.Right)
  470. {
  471. this.ClearDraw();
  472. }
  473. }
  474. base.Invalidate();
  475. base.OnMouseUp(e);
  476. }
  477. protected override void OnKeyPress(KeyPressEventArgs e)
  478. {
  479. if (e.KeyChar == 'w')
  480. {
  481. NativeMethods.SetCursorPos(Control.MousePosition.X, Control.MousePosition.Y - 1);
  482. }
  483. else
  484. {
  485. if (e.KeyChar == 's')
  486. {
  487. NativeMethods.SetCursorPos(Control.MousePosition.X, Control.MousePosition.Y + 1);
  488. }
  489. else
  490. {
  491. if (e.KeyChar == 'a')
  492. {
  493. NativeMethods.SetCursorPos(Control.MousePosition.X - 1, Control.MousePosition.Y);
  494. }
  495. else
  496. {
  497. if (e.KeyChar == 'd')
  498. {
  499. NativeMethods.SetCursorPos(Control.MousePosition.X + 1, Control.MousePosition.Y);
  500. }
  501. }
  502. }
  503. }
  504. base.OnKeyPress(e);
  505. }
  506. protected override void OnPaint(PaintEventArgs e)
  507. {
  508. Graphics g = e.Graphics;
  509. if (this.baseImage != null)
  510. {
  511. g.DrawImage(this.m_bmpDark, 0, 0);
  512. g.DrawImage(this.baseImage, this.selectedRectangle, this.selectedRectangle, GraphicsUnit.Pixel);
  513. }
  514. this.DrawOperationBox(g);
  515. if (this.baseImage != null && !this.isDrawed && !this.isMoving && this.m_bMouseEnter && this.isShowInfo)
  516. {
  517. this.DrawInfo(e.Graphics);
  518. }
  519. base.OnPaint(e);
  520. }
  521. protected virtual void DrawOperationBox(Graphics g)
  522. {
  523. string strDrawSize = string.Concat(new object[]
  524. {
  525. "X:",
  526. this.selectedRectangle.X,
  527. " Y:",
  528. this.selectedRectangle.Y,
  529. " W:",
  530. this.selectedRectangle.Width + 1,
  531. " H:",
  532. this.selectedRectangle.Height + 1
  533. });
  534. Size seStr = TextRenderer.MeasureText(strDrawSize, this.Font);
  535. int tempX = this.selectedRectangle.X;
  536. int tempY = this.selectedRectangle.Y - seStr.Height - 5;
  537. if (!this.m_rectClip.IsEmpty && tempX + seStr.Width >= this.m_rectClip.Right)
  538. {
  539. tempX -= seStr.Width;
  540. }
  541. if (tempY <= 0)
  542. {
  543. tempY += seStr.Height + 10;
  544. }
  545. this.m_sb.Color = Color.FromArgb(125, 0, 0, 0);
  546. g.FillRectangle(this.m_sb, tempX, tempY, seStr.Width, seStr.Height);
  547. this.m_sb.Color = this.ForeColor;
  548. g.DrawString(strDrawSize, this.Font, this.m_sb, (float)tempX, (float)tempY);
  549. if (!this.isDrawOperationDot)
  550. {
  551. this.m_pen.Width = 3f;
  552. this.m_pen.Color = this.lineColor;
  553. g.DrawRectangle(this.m_pen, this.selectedRectangle);
  554. return;
  555. }
  556. this.m_rectDots[0].Y = (this.m_rectDots[1].Y = (this.m_rectDots[2].Y = this.selectedRectangle.Y - 2));
  557. this.m_rectDots[5].Y = (this.m_rectDots[6].Y = (this.m_rectDots[7].Y = this.selectedRectangle.Bottom - 2));
  558. this.m_rectDots[0].X = (this.m_rectDots[3].X = (this.m_rectDots[5].X = this.selectedRectangle.X - 2));
  559. this.m_rectDots[2].X = (this.m_rectDots[4].X = (this.m_rectDots[7].X = this.selectedRectangle.Right - 2));
  560. this.m_rectDots[3].Y = (this.m_rectDots[4].Y = this.selectedRectangle.Y + this.selectedRectangle.Height / 2 - 2);
  561. this.m_rectDots[1].X = (this.m_rectDots[6].X = this.selectedRectangle.X + this.selectedRectangle.Width / 2 - 2);
  562. this.m_pen.Width = 1f;
  563. this.m_pen.Color = this.lineColor;
  564. g.DrawRectangle(this.m_pen, this.selectedRectangle);
  565. this.m_sb.Color = this.dotColor;
  566. Rectangle[] rectDots = this.m_rectDots;
  567. for (int i = 0; i < rectDots.Length; i++)
  568. {
  569. Rectangle rect = rectDots[i];
  570. g.FillRectangle(this.m_sb, rect);
  571. }
  572. if (this.selectedRectangle.Width <= 10 || this.selectedRectangle.Height <= 10)
  573. {
  574. g.DrawRectangle(this.m_pen, this.selectedRectangle);
  575. }
  576. }
  577. protected virtual void DrawInfo(Graphics g)
  578. {
  579. int tempX = this.m_ptCurrent.X + 20;
  580. int tempY = this.m_ptCurrent.Y + 20;
  581. int tempW = this.magnifySize.Width * this.magnifyTimes + 8;
  582. int tempH = this.magnifySize.Width * this.magnifyTimes + 12 + this.Font.Height * 3;
  583. if (!this.m_rectClip.IsEmpty)
  584. {
  585. if (tempX + tempW >= this.m_rectClip.Right)
  586. {
  587. tempX -= tempW + 30;
  588. }
  589. if (tempY + tempH >= this.m_rectClip.Bottom)
  590. {
  591. tempY -= tempH + 30;
  592. }
  593. }
  594. else
  595. {
  596. if (tempX + tempW >= base.ClientRectangle.Width)
  597. {
  598. tempX -= tempW + 30;
  599. }
  600. if (tempY + tempH >= base.ClientRectangle.Height)
  601. {
  602. tempY -= tempH + 30;
  603. }
  604. }
  605. Rectangle tempRectBorder = new Rectangle(tempX + 2, tempY + 2, tempW - 4, this.magnifySize.Width * this.magnifyTimes + 4);
  606. this.m_sb.Color = Color.FromArgb(200, 0, 0, 0);
  607. g.FillRectangle(this.m_sb, tempX, tempY, tempW, tempH);
  608. this.m_pen.Width = 2f;
  609. this.m_pen.Color = Color.White;
  610. g.DrawRectangle(this.m_pen, tempRectBorder);
  611. using (Bitmap bmpSrc = new Bitmap(this.magnifySize.Width, this.magnifySize.Height, PixelFormat.Format32bppArgb))
  612. {
  613. using (Graphics gp = Graphics.FromImage(bmpSrc))
  614. {
  615. gp.SetClip(new Rectangle(0, 0, this.magnifySize.Width, this.magnifySize.Height));
  616. gp.DrawImage(this.baseImage, -(this.m_ptCurrent.X - this.magnifySize.Width / 2), -(this.m_ptCurrent.Y - this.magnifySize.Height / 2));
  617. }
  618. using (Bitmap bmpInfo = this.MagnifyImage(bmpSrc, this.magnifyTimes))
  619. {
  620. g.DrawImage(bmpInfo, tempX + 4, tempY + 4);
  621. }
  622. }
  623. this.m_pen.Width = (float)(this.magnifyTimes - 2);
  624. this.m_pen.Color = Color.FromArgb(125, 0, 255, 255);
  625. int tempCenterX = tempX + (tempW + ((this.magnifySize.Width % 2 == 0) ? this.magnifyTimes : 0)) / 2;
  626. int tempCenterY = tempY + 2 + (tempRectBorder.Height + ((this.MagnifySize.Height % 2 == 0) ? this.magnifyTimes : 0)) / 2;
  627. g.DrawLine(this.m_pen, tempCenterX, tempY + 4, tempCenterX, tempRectBorder.Bottom - 2);
  628. g.DrawLine(this.m_pen, tempX + 4, tempCenterY, tempX + tempW - 4, tempCenterY);
  629. this.m_sb.Color = this.ForeColor;
  630. Color clr = ((Bitmap)this.baseImage).GetPixel(this.m_ptCurrent.X, this.m_ptCurrent.Y);
  631. g.DrawString(string.Concat(new object[]
  632. {
  633. "Size: ",
  634. this.selectedRectangle.Width + 1,
  635. " x ",
  636. this.selectedRectangle.Height + 1
  637. }), this.Font, this.m_sb, (float)(tempX + 2), (float)(tempRectBorder.Bottom + 2));
  638. g.DrawString(string.Concat(new object[]
  639. {
  640. clr.A,
  641. ",",
  642. clr.R,
  643. ",",
  644. clr.G,
  645. ",",
  646. clr.B
  647. }), this.Font, this.m_sb, (float)(tempX + 2), (float)(tempRectBorder.Bottom + 2 + this.Font.Height));
  648. g.DrawString(string.Concat(new string[]
  649. {
  650. "0x",
  651. clr.A.ToString("X").PadLeft(2, '0'),
  652. clr.R.ToString("X").PadLeft(2, '0'),
  653. clr.G.ToString("X").PadLeft(2, '0'),
  654. clr.B.ToString("X").PadLeft(2, '0')
  655. }), this.Font, this.m_sb, (float)(tempX + 2), (float)(tempRectBorder.Bottom + 2 + this.Font.Height * 2));
  656. this.m_sb.Color = clr;
  657. g.FillRectangle(this.m_sb, tempX + tempW - 2 - this.Font.Height, tempY + tempH - 2 - this.Font.Height, this.Font.Height, this.Font.Height);
  658. g.DrawRectangle(Pens.Cyan, tempX + tempW - 2 - this.Font.Height, tempY + tempH - 2 - this.Font.Height, this.Font.Height, this.Font.Height);
  659. g.FillRectangle(this.m_sb, tempCenterX - this.magnifyTimes / 2, tempCenterY - this.magnifyTimes / 2, this.magnifyTimes, this.magnifyTimes);
  660. g.DrawRectangle(Pens.Cyan, tempCenterX - this.magnifyTimes / 2, tempCenterY - this.magnifyTimes / 2, this.magnifyTimes - 1, this.magnifyTimes - 1);
  661. }
  662. private Bitmap MagnifyImage(Bitmap bmpSrc, int times)
  663. {
  664. Bitmap bmpNew = new Bitmap(bmpSrc.Width * times, bmpSrc.Height * times, PixelFormat.Format32bppArgb);
  665. BitmapData bmpSrcData = bmpSrc.LockBits(new Rectangle(0, 0, bmpSrc.Width, bmpSrc.Height), ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
  666. BitmapData bmpNewData = bmpNew.LockBits(new Rectangle(0, 0, bmpNew.Width, bmpNew.Height), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb);
  667. byte[] bySrcData = new byte[bmpSrcData.Height * bmpSrcData.Stride];
  668. Marshal.Copy(bmpSrcData.Scan0, bySrcData, 0, bySrcData.Length);
  669. byte[] byNewData = new byte[bmpNewData.Height * bmpNewData.Stride];
  670. Marshal.Copy(bmpNewData.Scan0, byNewData, 0, byNewData.Length);
  671. int y = 0;
  672. int lenY = bmpSrc.Height;
  673. while (y < lenY)
  674. {
  675. int x = 0;
  676. int lenX = bmpSrc.Width;
  677. while (x < lenX)
  678. {
  679. for (int cy = 0; cy < times; cy++)
  680. {
  681. for (int cx = 0; cx < times; cx++)
  682. {
  683. byNewData[(x * times + cx) * 4 + (y * times + cy) * bmpNewData.Stride] = bySrcData[x * 4 + y * bmpSrcData.Stride];
  684. byNewData[(x * times + cx) * 4 + (y * times + cy) * bmpNewData.Stride + 1] = bySrcData[x * 4 + y * bmpSrcData.Stride + 1];
  685. byNewData[(x * times + cx) * 4 + (y * times + cy) * bmpNewData.Stride + 2] = bySrcData[x * 4 + y * bmpSrcData.Stride + 2];
  686. byNewData[(x * times + cx) * 4 + (y * times + cy) * bmpNewData.Stride + 3] = bySrcData[x * 4 + y * bmpSrcData.Stride + 3];
  687. }
  688. }
  689. x++;
  690. }
  691. y++;
  692. }
  693. Marshal.Copy(byNewData, 0, bmpNewData.Scan0, byNewData.Length);
  694. bmpSrc.UnlockBits(bmpSrcData);
  695. bmpNew.UnlockBits(bmpNewData);
  696. return bmpNew;
  697. }
  698. private void SetCursorStyle(Point loc)
  699. {
  700. if (this.m_rectDots[0].Contains(loc) || this.m_rectDots[7].Contains(loc))
  701. {
  702. this.Cursor = Cursors.SizeNWSE;
  703. return;
  704. }
  705. if (this.m_rectDots[1].Contains(loc) || this.m_rectDots[6].Contains(loc))
  706. {
  707. this.Cursor = Cursors.SizeNS;
  708. return;
  709. }
  710. if (this.m_rectDots[2].Contains(loc) || this.m_rectDots[5].Contains(loc))
  711. {
  712. this.Cursor = Cursors.SizeNESW;
  713. return;
  714. }
  715. if (this.m_rectDots[3].Contains(loc) || this.m_rectDots[4].Contains(loc))
  716. {
  717. this.Cursor = Cursors.SizeWE;
  718. return;
  719. }
  720. if (this.selectedRectangle.Contains(loc))
  721. {
  722. this.Cursor = Cursors.SizeAll;
  723. return;
  724. }
  725. this.Cursor = Cursors.Default;
  726. }
  727. private void BuildBitmap()
  728. {
  729. if (this.baseImage == null)
  730. {
  731. return;
  732. }
  733. this.m_bmpDark = new Bitmap(this.baseImage);
  734. using (Graphics g = Graphics.FromImage(this.m_bmpDark))
  735. {
  736. SolidBrush sb = new SolidBrush(Color.FromArgb(125, 0, 0, 0));
  737. g.FillRectangle(sb, 0, 0, this.m_bmpDark.Width, this.m_bmpDark.Height);
  738. sb.Dispose();
  739. }
  740. }
  741. public void ClearDraw()
  742. {
  743. this.isDrawed = false;
  744. this.selectedRectangle.X = (this.selectedRectangle.Y = -100);
  745. this.selectedRectangle.Width = (this.selectedRectangle.Height = 0);
  746. this.Cursor = Cursors.Default;
  747. base.Invalidate();
  748. }
  749. public void SetSelectRect(Rectangle rect)
  750. {
  751. rect.Intersect(this.DisplayRectangle);
  752. if (rect.IsEmpty)
  753. {
  754. return;
  755. }
  756. rect.Width--;
  757. rect.Height--;
  758. if (this.selectedRectangle == rect)
  759. {
  760. return;
  761. }
  762. this.selectedRectangle = rect;
  763. base.Invalidate();
  764. }
  765. public void SetSelectRect(Point pt, Size se)
  766. {
  767. Rectangle rectTemp = new Rectangle(pt, se);
  768. rectTemp.Intersect(this.DisplayRectangle);
  769. if (rectTemp.IsEmpty)
  770. {
  771. return;
  772. }
  773. rectTemp.Width--;
  774. rectTemp.Height--;
  775. if (this.selectedRectangle == rectTemp)
  776. {
  777. return;
  778. }
  779. this.selectedRectangle = rectTemp;
  780. base.Invalidate();
  781. }
  782. public void SetSelectRect(int x, int y, int w, int h)
  783. {
  784. Rectangle rectTemp = new Rectangle(x, y, w, h);
  785. rectTemp.Intersect(this.DisplayRectangle);
  786. if (rectTemp.IsEmpty)
  787. {
  788. return;
  789. }
  790. rectTemp.Width--;
  791. rectTemp.Height--;
  792. if (this.selectedRectangle == rectTemp)
  793. {
  794. return;
  795. }
  796. this.selectedRectangle = rectTemp;
  797. base.Invalidate();
  798. }
  799. public void SetInfoPoint(Point pt)
  800. {
  801. if (this.m_ptCurrent == pt)
  802. {
  803. return;
  804. }
  805. this.m_ptCurrent = pt;
  806. this.m_bMouseEnter = true;
  807. base.Invalidate();
  808. }
  809. public void SetInfoPoint(int x, int y)
  810. {
  811. if (this.m_ptCurrent.X == x && this.m_ptCurrent.Y == y)
  812. {
  813. return;
  814. }
  815. this.m_ptCurrent.X = x;
  816. this.m_ptCurrent.Y = y;
  817. this.m_bMouseEnter = true;
  818. base.Invalidate();
  819. }
  820. public Bitmap GetResultBmp()
  821. {
  822. if (this.baseImage != null)
  823. {
  824. Bitmap bmp = new Bitmap(this.selectedRectangle.Width + 1, this.selectedRectangle.Height + 1);
  825. using (Graphics g = Graphics.FromImage(bmp))
  826. {
  827. g.DrawImage(this.baseImage, -this.selectedRectangle.X, -this.selectedRectangle.Y);
  828. }
  829. return bmp;
  830. }
  831. return null;
  832. }
  833. protected override void Dispose(bool disposing)
  834. {
  835. if (disposing && this.components != null)
  836. {
  837. this.components.Dispose();
  838. }
  839. base.Dispose(disposing);
  840. }
  841. private void InitializeComponent()
  842. {
  843. this.components = new Container();
  844. }
  845. }
  846. }