ImageDc.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. using LYFZ.OtherExpansion.Win32;
  2. using System;
  3. using System.Security.Permissions;
  4. namespace LYFZ.OtherExpansion.SkinClass
  5. {
  6. [PermissionSet(SecurityAction.Demand, Name = "FullTrust")]
  7. public class ImageDc : IDisposable
  8. {
  9. private int _height;
  10. private int _width;
  11. private IntPtr _pHdc = IntPtr.Zero;
  12. private IntPtr _pBmp = IntPtr.Zero;
  13. private IntPtr _pBmpOld = IntPtr.Zero;
  14. public IntPtr Hdc
  15. {
  16. get
  17. {
  18. return this._pHdc;
  19. }
  20. }
  21. public IntPtr HBmp
  22. {
  23. get
  24. {
  25. return this._pBmp;
  26. }
  27. }
  28. public ImageDc(int width, int height, IntPtr hBmp)
  29. {
  30. this.CreateImageDc(width, height, hBmp);
  31. }
  32. public ImageDc(int width, int height)
  33. {
  34. this.CreateImageDc(width, height, IntPtr.Zero);
  35. }
  36. private void CreateImageDc(int width, int height, IntPtr hBmp)
  37. {
  38. IntPtr pHdc = IntPtr.Zero;
  39. pHdc = NativeMethods.CreateDCA("DISPLAY", "", "", 0);
  40. this._pHdc = NativeMethods.CreateCompatibleDC(pHdc);
  41. if (hBmp != IntPtr.Zero)
  42. {
  43. this._pBmp = hBmp;
  44. }
  45. else
  46. {
  47. this._pBmp = NativeMethods.CreateCompatibleBitmap(pHdc, width, height);
  48. }
  49. this._pBmpOld = NativeMethods.SelectObject(this._pHdc, this._pBmp);
  50. if (this._pBmpOld == IntPtr.Zero)
  51. {
  52. this.ImageDestroy();
  53. }
  54. else
  55. {
  56. this._width = width;
  57. this._height = height;
  58. }
  59. NativeMethods.DeleteDC(pHdc);
  60. pHdc = IntPtr.Zero;
  61. }
  62. private void ImageDestroy()
  63. {
  64. if (this._pBmpOld != IntPtr.Zero)
  65. {
  66. NativeMethods.SelectObject(this._pHdc, this._pBmpOld);
  67. this._pBmpOld = IntPtr.Zero;
  68. }
  69. if (this._pBmp != IntPtr.Zero)
  70. {
  71. NativeMethods.DeleteObject(this._pBmp);
  72. this._pBmp = IntPtr.Zero;
  73. }
  74. if (this._pHdc != IntPtr.Zero)
  75. {
  76. NativeMethods.DeleteDC(this._pHdc);
  77. this._pHdc = IntPtr.Zero;
  78. }
  79. }
  80. public void Dispose()
  81. {
  82. this.ImageDestroy();
  83. }
  84. }
  85. }