ImageDrawRect.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. using System;
  2. using System.Drawing;
  3. namespace LYFZ.OtherExpansion.SkinClass
  4. {
  5. public class ImageDrawRect
  6. {
  7. public static ContentAlignment anyRight = (ContentAlignment)1092;
  8. public static ContentAlignment anyTop = (ContentAlignment)7;
  9. public static ContentAlignment anyBottom = (ContentAlignment)1792;
  10. public static ContentAlignment anyCenter = (ContentAlignment)546;
  11. public static ContentAlignment anyMiddle = (ContentAlignment)112;
  12. public static void DrawRect(Graphics g, Bitmap img, Rectangle r, Rectangle lr, int index, int Totalindex)
  13. {
  14. if (img == null)
  15. {
  16. return;
  17. }
  18. int x = (index - 1) * img.Width / Totalindex;
  19. int y = 0;
  20. int x2 = r.Left;
  21. int y2 = r.Top;
  22. if (r.Height > img.Height && r.Width <= img.Width / Totalindex)
  23. {
  24. Rectangle r2 = new Rectangle(x, y, img.Width / Totalindex, lr.Top);
  25. Rectangle r3 = new Rectangle(x2, y2, r.Width, lr.Top);
  26. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  27. r2 = new Rectangle(x, y + lr.Top, img.Width / Totalindex, img.Height - lr.Top - lr.Bottom);
  28. r3 = new Rectangle(x2, y2 + lr.Top, r.Width, r.Height - lr.Top - lr.Bottom);
  29. if (lr.Top + lr.Bottom == 0)
  30. {
  31. r2.Height--;
  32. }
  33. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  34. r2 = new Rectangle(x, y + img.Height - lr.Bottom, img.Width / Totalindex, lr.Bottom);
  35. r3 = new Rectangle(x2, y2 + r.Height - lr.Bottom, r.Width, lr.Bottom);
  36. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  37. return;
  38. }
  39. if (r.Height <= img.Height && r.Width > img.Width / Totalindex)
  40. {
  41. Rectangle r2 = new Rectangle(x, y, lr.Left, img.Height);
  42. Rectangle r3 = new Rectangle(x2, y2, lr.Left, r.Height);
  43. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  44. r2 = new Rectangle(x + lr.Left, y, img.Width / Totalindex - lr.Left - lr.Right, img.Height);
  45. r3 = new Rectangle(x2 + lr.Left, y2, r.Width - lr.Left - lr.Right, r.Height);
  46. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  47. r2 = new Rectangle(x + img.Width / Totalindex - lr.Right, y, lr.Right, img.Height);
  48. r3 = new Rectangle(x2 + r.Width - lr.Right, y2, lr.Right, r.Height);
  49. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  50. return;
  51. }
  52. if (r.Height <= img.Height && r.Width <= img.Width / Totalindex)
  53. {
  54. Rectangle r2 = new Rectangle((index - 1) * img.Width / Totalindex, 0, img.Width / Totalindex, img.Height - 1);
  55. g.DrawImage(img, new Rectangle(x2, y2, r.Width, r.Height), r2, GraphicsUnit.Pixel);
  56. return;
  57. }
  58. if (r.Height > img.Height && r.Width > img.Width / Totalindex)
  59. {
  60. Rectangle r2 = new Rectangle(x, y, lr.Left, lr.Top);
  61. Rectangle r3 = new Rectangle(x2, y2, lr.Left, lr.Top);
  62. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  63. r2 = new Rectangle(x, y + img.Height - lr.Bottom, lr.Left, lr.Bottom);
  64. r3 = new Rectangle(x2, y2 + r.Height - lr.Bottom, lr.Left, lr.Bottom);
  65. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  66. r2 = new Rectangle(x, y + lr.Top, lr.Left, img.Height - lr.Top - lr.Bottom);
  67. r3 = new Rectangle(x2, y2 + lr.Top, lr.Left, r.Height - lr.Top - lr.Bottom);
  68. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  69. r2 = new Rectangle(x + lr.Left, y, img.Width / Totalindex - lr.Left - lr.Right, lr.Top);
  70. r3 = new Rectangle(x2 + lr.Left, y2, r.Width - lr.Left - lr.Right, lr.Top);
  71. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  72. r2 = new Rectangle(x + img.Width / Totalindex - lr.Right, y, lr.Right, lr.Top);
  73. r3 = new Rectangle(x2 + r.Width - lr.Right, y2, lr.Right, lr.Top);
  74. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  75. r2 = new Rectangle(x + img.Width / Totalindex - lr.Right, y + lr.Top, lr.Right, img.Height - lr.Top - lr.Bottom);
  76. r3 = new Rectangle(x2 + r.Width - lr.Right, y2 + lr.Top, lr.Right, r.Height - lr.Top - lr.Bottom);
  77. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  78. r2 = new Rectangle(x + img.Width / Totalindex - lr.Right, y + img.Height - lr.Bottom, lr.Right, lr.Bottom);
  79. r3 = new Rectangle(x2 + r.Width - lr.Right, y2 + r.Height - lr.Bottom, lr.Right, lr.Bottom);
  80. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  81. r2 = new Rectangle(x + lr.Left, y + img.Height - lr.Bottom, img.Width / Totalindex - lr.Left - lr.Right, lr.Bottom);
  82. r3 = new Rectangle(x2 + lr.Left, y2 + r.Height - lr.Bottom, r.Width - lr.Left - lr.Right, lr.Bottom);
  83. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  84. r2 = new Rectangle(x + lr.Left, y + lr.Top, img.Width / Totalindex - lr.Left - lr.Right, img.Height - lr.Top - lr.Bottom);
  85. r3 = new Rectangle(x2 + lr.Left, y2 + lr.Top, r.Width - lr.Left - lr.Right, r.Height - lr.Top - lr.Bottom);
  86. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  87. }
  88. }
  89. public static void DrawRect(Graphics g, Bitmap img, Rectangle r, int index, int Totalindex)
  90. {
  91. if (img == null)
  92. {
  93. return;
  94. }
  95. int width = img.Width / Totalindex;
  96. int height = img.Height;
  97. int x = (index - 1) * width;
  98. int y = 0;
  99. int x2 = r.Left;
  100. int y2 = r.Top;
  101. Rectangle r2 = new Rectangle(x, y, width, height);
  102. Rectangle r3 = new Rectangle(x2, y2, r.Width, r.Height);
  103. g.DrawImage(img, r3, r2, GraphicsUnit.Pixel);
  104. }
  105. public static Rectangle HAlignWithin(Size alignThis, Rectangle withinThis, ContentAlignment align)
  106. {
  107. if ((align & ImageDrawRect.anyRight) != (ContentAlignment)0)
  108. {
  109. withinThis.X += withinThis.Width - alignThis.Width;
  110. }
  111. else
  112. {
  113. if ((align & ImageDrawRect.anyCenter) != (ContentAlignment)0)
  114. {
  115. withinThis.X += (withinThis.Width - alignThis.Width + 1) / 2;
  116. }
  117. }
  118. withinThis.Width = alignThis.Width;
  119. return withinThis;
  120. }
  121. public static Rectangle VAlignWithin(Size alignThis, Rectangle withinThis, ContentAlignment align)
  122. {
  123. if ((align & ImageDrawRect.anyBottom) != (ContentAlignment)0)
  124. {
  125. withinThis.Y += withinThis.Height - alignThis.Height;
  126. }
  127. else
  128. {
  129. if ((align & ImageDrawRect.anyMiddle) != (ContentAlignment)0)
  130. {
  131. withinThis.Y += (withinThis.Height - alignThis.Height + 1) / 2;
  132. }
  133. }
  134. withinThis.Height = alignThis.Height;
  135. return withinThis;
  136. }
  137. }
  138. }