LockedBitmapData.cs 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. using System;
  2. using System.Drawing;
  3. using System.Drawing.Imaging;
  4. namespace Microsoft.Drawing
  5. {
  6. /// <summary>
  7. /// 位图的属性,已锁定
  8. /// </summary>
  9. public sealed class LockedBitmapData : DisposableMini
  10. {
  11. private Bitmap m_Bitmap;//位图
  12. private BitmapData m_BitmapData;//属性
  13. /// <summary>
  14. /// 获取或设置返回此 System.Drawing.Imaging.BitmapData 对象的 System.Drawing.Bitmap 对象中像素信息的格式。
  15. /// </summary>
  16. public PixelFormat PixelFormat
  17. {
  18. get
  19. {
  20. return this.m_BitmapData.PixelFormat;
  21. }
  22. set
  23. {
  24. this.m_BitmapData.PixelFormat = value;
  25. }
  26. }
  27. /// <summary>
  28. /// 获取或设置 System.Drawing.Bitmap 对象的像素宽度。这也可以看作是一个扫描行中的像素数。
  29. /// </summary>
  30. public int Width
  31. {
  32. get
  33. {
  34. return this.m_BitmapData.Width;
  35. }
  36. set
  37. {
  38. this.m_BitmapData.Width = value;
  39. }
  40. }
  41. /// <summary>
  42. /// 获取或设置 System.Drawing.Bitmap 对象的像素高度。有时也称作扫描行数。
  43. /// </summary>
  44. public int Height
  45. {
  46. get
  47. {
  48. return this.m_BitmapData.Height;
  49. }
  50. set
  51. {
  52. this.m_BitmapData.Height = value;
  53. }
  54. }
  55. /// <summary>
  56. /// 获取或设置 System.Drawing.Bitmap 对象的跨距宽度(也称为扫描宽度)。
  57. /// </summary>
  58. public int Stride
  59. {
  60. get
  61. {
  62. return this.m_BitmapData.Stride;
  63. }
  64. set
  65. {
  66. this.m_BitmapData.Stride = value;
  67. }
  68. }
  69. /// <summary>
  70. /// 获取或设置位图中第一个像素数据的地址。它也可以看成是位图中的第一个扫描行。
  71. /// </summary>
  72. public IntPtr Scan0
  73. {
  74. get
  75. {
  76. return this.m_BitmapData.Scan0;
  77. }
  78. set
  79. {
  80. this.m_BitmapData.Scan0 = value;
  81. }
  82. }
  83. /// <summary>
  84. /// 保留。不要使用。
  85. /// </summary>
  86. public int Reserved
  87. {
  88. get
  89. {
  90. return this.m_BitmapData.Reserved;
  91. }
  92. set
  93. {
  94. this.m_BitmapData.Reserved = value;
  95. }
  96. }
  97. /// <summary>
  98. /// 构造函数
  99. /// </summary>
  100. /// <param name="bitmap">位图</param>
  101. /// <param name="flags">读写模式</param>
  102. /// <param name="format">像素格式</param>
  103. public LockedBitmapData(Bitmap bitmap, ImageLockMode flags, PixelFormat format)
  104. {
  105. this.m_Bitmap = bitmap;
  106. Rectangle rect = new Rectangle(0, 0, bitmap.Width, bitmap.Height);
  107. this.m_BitmapData = this.m_Bitmap.LockBits(rect, flags, format);
  108. }
  109. /// <summary>
  110. /// 释放资源
  111. /// </summary>
  112. /// <param name="disposing">释放托管资源为true,否则为false</param>
  113. protected override void Dispose(bool disposing)
  114. {
  115. if (this.m_Bitmap != null)
  116. {
  117. this.m_Bitmap.UnlockBits(this.m_BitmapData);
  118. this.m_Bitmap = null;
  119. this.m_BitmapData = null;
  120. }
  121. }
  122. }
  123. }