UpdateForm.cs 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336
  1. using LYFZ.OtherExpansion.SkinControl;
  2. using LYFZ.OtherExpansion.Win32;
  3. using LYFZ.OtherExpansion.Win32.Struct;
  4. using System;
  5. using System.Drawing;
  6. using System.Drawing.Drawing2D;
  7. using System.Drawing.Imaging;
  8. using System.Drawing.Text;
  9. using System.Runtime.InteropServices;
  10. using System.Windows.Forms;
  11. namespace LYFZ.OtherExpansion.SkinClass
  12. {
  13. public class UpdateForm
  14. {
  15. public static Bitmap GaryImg(Bitmap b)
  16. {
  17. Bitmap bmp = b.Clone(new Rectangle(0, 0, b.Width, b.Height), PixelFormat.Format24bppRgb);
  18. b.Dispose();
  19. BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadWrite, bmp.PixelFormat);
  20. byte[] byColorInfo = new byte[bmp.Height * bmpData.Stride];
  21. Marshal.Copy(bmpData.Scan0, byColorInfo, 0, byColorInfo.Length);
  22. int x = 0;
  23. int xLen = bmp.Width;
  24. while (x < xLen)
  25. {
  26. int y = 0;
  27. int yLen = bmp.Height;
  28. while (y < yLen)
  29. {
  30. byColorInfo[y * bmpData.Stride + x * 3] = (byColorInfo[y * bmpData.Stride + x * 3 + 1] = (byColorInfo[y * bmpData.Stride + x * 3 + 2] = UpdateForm.GetAvg(byColorInfo[y * bmpData.Stride + x * 3], byColorInfo[y * bmpData.Stride + x * 3 + 1], byColorInfo[y * bmpData.Stride + x * 3 + 2])));
  31. y++;
  32. }
  33. x++;
  34. }
  35. Marshal.Copy(byColorInfo, 0, bmpData.Scan0, byColorInfo.Length);
  36. bmp.UnlockBits(bmpData);
  37. return bmp;
  38. }
  39. private static byte GetAvg(byte b, byte g, byte r)
  40. {
  41. return (byte)((r + g + b) / 3);
  42. }
  43. public static Color GetImageAverageColor(Bitmap back)
  44. {
  45. return BitmapHelper.GetImageAverageColor(back);
  46. }
  47. public static void CreateRegion(Control ctrl, int RgnRadius)
  48. {
  49. int Rgn = NativeMethods.CreateRoundRectRgn(0, 0, ctrl.ClientRectangle.Width + 1, ctrl.ClientRectangle.Height + 1, RgnRadius, RgnRadius);
  50. NativeMethods.SetWindowRgn(ctrl.Handle, Rgn, true);
  51. }
  52. public static void CreateRegion(Control control, Rectangle bounds, int radius, RoundStyle roundStyle)
  53. {
  54. if (roundStyle != RoundStyle.None)
  55. {
  56. using (GraphicsPath path = GraphicsPathHelper.CreatePath(bounds, radius, roundStyle, true))
  57. {
  58. Region region = new Region(path);
  59. path.Widen(Pens.White);
  60. region.Union(path);
  61. control.Region = region;
  62. return;
  63. }
  64. }
  65. if (control.Region != null)
  66. {
  67. control.Region = null;
  68. }
  69. }
  70. public static void CreateRegion(Control control, Rectangle bounds)
  71. {
  72. UpdateForm.CreateRegion(control, bounds, 8, RoundStyle.All);
  73. }
  74. public static void CreateRegion(IntPtr hWnd, int radius, RoundStyle roundStyle, bool redraw)
  75. {
  76. RECT bounds = default(RECT);
  77. NativeMethods.GetWindowRect(hWnd, ref bounds);
  78. Rectangle rect = new Rectangle(Point.Empty, bounds.Size);
  79. if (roundStyle != RoundStyle.None)
  80. {
  81. using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, radius, roundStyle, true))
  82. {
  83. using (Region region = new Region(path))
  84. {
  85. path.Widen(Pens.White);
  86. region.Union(path);
  87. IntPtr hDc = NativeMethods.GetWindowDC(hWnd);
  88. try
  89. {
  90. using (Graphics g = Graphics.FromHdc(hDc))
  91. {
  92. NativeMethods.SetWindowRgn(hWnd, region.GetHrgn(g), redraw);
  93. }
  94. }
  95. finally
  96. {
  97. NativeMethods.ReleaseDC(hWnd, hDc);
  98. }
  99. }
  100. return;
  101. }
  102. }
  103. IntPtr hRgn = NativeMethods.CreateRectRgn(0, 0, rect.Width, rect.Height);
  104. NativeMethods.SetWindowRgn(hWnd, hRgn, redraw);
  105. }
  106. public static Bitmap BothAlpha(Bitmap p_Bitmap, bool p_CentralTransparent, bool p_Crossdirection)
  107. {
  108. Bitmap _SetBitmap = new Bitmap(p_Bitmap.Width, p_Bitmap.Height);
  109. Graphics _GraphisSetBitmap = Graphics.FromImage(_SetBitmap);
  110. _GraphisSetBitmap.DrawImage(p_Bitmap, new Rectangle(0, 0, p_Bitmap.Width, p_Bitmap.Height));
  111. _GraphisSetBitmap.Dispose();
  112. Bitmap _Bitmap = new Bitmap(_SetBitmap.Width, _SetBitmap.Height);
  113. Graphics _Graphcis = Graphics.FromImage(_Bitmap);
  114. Point _Left = new Point(0, 0);
  115. Point _Left2 = new Point(_Bitmap.Width, 0);
  116. Point _Left3 = new Point(_Bitmap.Width, _Bitmap.Height / 2);
  117. Point _Left4 = new Point(0, _Bitmap.Height / 2);
  118. if (p_Crossdirection)
  119. {
  120. _Left = new Point(0, 0);
  121. _Left2 = new Point(_Bitmap.Width / 2, 0);
  122. _Left3 = new Point(_Bitmap.Width / 2, _Bitmap.Height);
  123. _Left4 = new Point(0, _Bitmap.Height);
  124. }
  125. Point[] _Point = new Point[]
  126. {
  127. _Left,
  128. _Left2,
  129. _Left3,
  130. _Left4
  131. };
  132. PathGradientBrush _SetBruhs = new PathGradientBrush(_Point, WrapMode.TileFlipY);
  133. _SetBruhs.CenterPoint = new PointF(0f, 0f);
  134. _SetBruhs.FocusScales = new PointF((float)(_Bitmap.Width / 2), 0f);
  135. _SetBruhs.CenterColor = Color.FromArgb(0, 255, 255, 255);
  136. _SetBruhs.SurroundColors = new Color[]
  137. {
  138. Color.FromArgb(255, 255, 255, 255)
  139. };
  140. if (p_Crossdirection)
  141. {
  142. _SetBruhs.FocusScales = new PointF(0f, (float)_Bitmap.Height);
  143. _SetBruhs.WrapMode = WrapMode.TileFlipX;
  144. }
  145. if (p_CentralTransparent)
  146. {
  147. _SetBruhs.CenterColor = Color.FromArgb(255, 255, 255, 255);
  148. _SetBruhs.SurroundColors = new Color[]
  149. {
  150. Color.FromArgb(0, 255, 255, 255)
  151. };
  152. }
  153. _Graphcis.FillRectangle(_SetBruhs, new Rectangle(0, 0, _Bitmap.Width, _Bitmap.Height));
  154. _Graphcis.Dispose();
  155. BitmapData _NewData = _Bitmap.LockBits(new Rectangle(0, 0, _Bitmap.Width, _Bitmap.Height), ImageLockMode.ReadOnly, _Bitmap.PixelFormat);
  156. byte[] _NewBytes = new byte[_NewData.Stride * _NewData.Height];
  157. Marshal.Copy(_NewData.Scan0, _NewBytes, 0, _NewBytes.Length);
  158. _Bitmap.UnlockBits(_NewData);
  159. BitmapData _SetData = _SetBitmap.LockBits(new Rectangle(0, 0, _SetBitmap.Width, _SetBitmap.Height), ImageLockMode.ReadWrite, _SetBitmap.PixelFormat);
  160. byte[] _SetBytes = new byte[_SetData.Stride * _SetData.Height];
  161. Marshal.Copy(_SetData.Scan0, _SetBytes, 0, _SetBytes.Length);
  162. for (int i = 0; i != _SetData.Height; i++)
  163. {
  164. int _WriteIndex = i * _SetData.Stride + 3;
  165. for (int z = 0; z != _SetData.Width; z++)
  166. {
  167. _SetBytes[_WriteIndex] = _NewBytes[_WriteIndex];
  168. _WriteIndex += 4;
  169. }
  170. }
  171. Marshal.Copy(_SetBytes, 0, _SetData.Scan0, _SetBytes.Length);
  172. _SetBitmap.UnlockBits(_SetData);
  173. return _SetBitmap;
  174. }
  175. public static Image ImageLightEffect(string Str, Font F, Color ColorFore, Color ColorBack, int BlurConsideration)
  176. {
  177. Bitmap Var_Bitmap = null;
  178. using (Graphics g = Graphics.FromHwnd(IntPtr.Zero))
  179. {
  180. SizeF Var_Size = g.MeasureString(Str, F);
  181. using (Bitmap Var_bmp = new Bitmap((int)Var_Size.Width, (int)Var_Size.Height))
  182. {
  183. using (Graphics Var_G_Bmp = Graphics.FromImage(Var_bmp))
  184. {
  185. using (SolidBrush Var_BrushBack = new SolidBrush(Color.FromArgb(16, (int)ColorBack.R, (int)ColorBack.G, (int)ColorBack.B)))
  186. {
  187. using (SolidBrush Var_BrushFore = new SolidBrush(ColorFore))
  188. {
  189. Var_G_Bmp.SmoothingMode = SmoothingMode.HighQuality;
  190. Var_G_Bmp.InterpolationMode = InterpolationMode.HighQualityBilinear;
  191. Var_G_Bmp.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
  192. Var_G_Bmp.DrawString(Str, F, Var_BrushBack, 0f, 0f);
  193. Var_Bitmap = new Bitmap(Var_bmp.Width + BlurConsideration, Var_bmp.Height + BlurConsideration);
  194. using (Graphics Var_G_Bitmap = Graphics.FromImage(Var_Bitmap))
  195. {
  196. Var_G_Bitmap.SmoothingMode = SmoothingMode.HighQuality;
  197. Var_G_Bitmap.InterpolationMode = InterpolationMode.HighQualityBilinear;
  198. Var_G_Bitmap.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
  199. for (int x = 0; x <= BlurConsideration; x++)
  200. {
  201. for (int y = 0; y <= BlurConsideration; y++)
  202. {
  203. Var_G_Bitmap.DrawImageUnscaled(Var_bmp, x, y);
  204. }
  205. }
  206. Var_G_Bitmap.DrawString(Str, F, Var_BrushFore, (float)(BlurConsideration / 2), (float)(BlurConsideration / 2));
  207. }
  208. }
  209. }
  210. }
  211. }
  212. }
  213. return Var_Bitmap;
  214. }
  215. public static Image ImageLightEffect(string Str, Font F, Color ColorFore, Color ColorBack, int BlurConsideration, Rectangle rc, bool auto)
  216. {
  217. Bitmap Var_Bitmap = null;
  218. StringFormat sf = new StringFormat(StringFormatFlags.NoWrap);
  219. sf.Trimming = (auto ? StringTrimming.EllipsisWord : StringTrimming.None);
  220. using (Graphics g = Graphics.FromHwnd(IntPtr.Zero))
  221. {
  222. SizeF Var_Size = g.MeasureString(Str, F);
  223. using (Bitmap Var_bmp = new Bitmap((int)Var_Size.Width, (int)Var_Size.Height))
  224. {
  225. using (Graphics Var_G_Bmp = Graphics.FromImage(Var_bmp))
  226. {
  227. using (SolidBrush Var_BrushBack = new SolidBrush(Color.FromArgb(16, (int)ColorBack.R, (int)ColorBack.G, (int)ColorBack.B)))
  228. {
  229. using (SolidBrush Var_BrushFore = new SolidBrush(ColorFore))
  230. {
  231. Var_G_Bmp.SmoothingMode = SmoothingMode.HighQuality;
  232. Var_G_Bmp.InterpolationMode = InterpolationMode.HighQualityBilinear;
  233. Var_G_Bmp.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
  234. Var_G_Bmp.DrawString(Str, F, Var_BrushBack, rc, sf);
  235. Var_Bitmap = new Bitmap(Var_bmp.Width + BlurConsideration, Var_bmp.Height + BlurConsideration);
  236. using (Graphics Var_G_Bitmap = Graphics.FromImage(Var_Bitmap))
  237. {
  238. if (ColorBack != Color.Transparent)
  239. {
  240. Var_G_Bitmap.SmoothingMode = SmoothingMode.HighQuality;
  241. Var_G_Bitmap.InterpolationMode = InterpolationMode.HighQualityBilinear;
  242. Var_G_Bitmap.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
  243. for (int x = 0; x <= BlurConsideration; x++)
  244. {
  245. for (int y = 0; y <= BlurConsideration; y++)
  246. {
  247. Var_G_Bitmap.DrawImageUnscaled(Var_bmp, x, y);
  248. }
  249. }
  250. }
  251. Var_G_Bitmap.DrawString(Str, F, Var_BrushFore, new Rectangle(new Point(Convert.ToInt32(BlurConsideration / 2), Convert.ToInt32(BlurConsideration / 2)), rc.Size), sf);
  252. }
  253. }
  254. }
  255. }
  256. }
  257. }
  258. return Var_Bitmap;
  259. }
  260. public static void CursorClick(int x, int y)
  261. {
  262. int MOUSEEVENTF_LEFTDOWN = 2;
  263. int MOUSEEVENTF_LEFTUP = 4;
  264. NativeMethods.mouse_event(MOUSEEVENTF_LEFTDOWN, x * 65536 / 1024, y * 65536 / 768, 0, 0);
  265. NativeMethods.mouse_event(MOUSEEVENTF_LEFTUP, x * 65536 / 1024, y * 65536 / 768, 0, 0);
  266. }
  267. public static Bitmap ResizeBitmap(Bitmap b, int dstWidth, int dstHeight)
  268. {
  269. Bitmap dstImage = new Bitmap(dstWidth, dstHeight);
  270. Graphics g = Graphics.FromImage(dstImage);
  271. g.InterpolationMode = InterpolationMode.Bilinear;
  272. g.SmoothingMode = SmoothingMode.HighQuality;
  273. g.SmoothingMode = SmoothingMode.HighQuality;
  274. g.InterpolationMode = InterpolationMode.HighQualityBicubic;
  275. g.DrawImage(b, new Rectangle(0, 0, dstImage.Width, dstImage.Height), new Rectangle(0, 0, b.Width, b.Height), GraphicsUnit.Pixel);
  276. g.Save();
  277. g.Dispose();
  278. return dstImage;
  279. }
  280. public static void CreateControlRegion(Control control, Bitmap bitmap, int Alpha)
  281. {
  282. if (control == null || bitmap == null)
  283. {
  284. return;
  285. }
  286. control.Width = bitmap.Width;
  287. control.Height = bitmap.Height;
  288. if (control is Form)
  289. {
  290. Form form = (Form)control;
  291. form.Width = control.Width;
  292. form.Height = control.Height;
  293. form.FormBorderStyle = FormBorderStyle.None;
  294. form.BackgroundImage = bitmap;
  295. GraphicsPath graphicsPath = UpdateForm.CalculateControlGraphicsPath(bitmap, Alpha);
  296. form.Region = new Region(graphicsPath);
  297. return;
  298. }
  299. if (control is SkinButtom)
  300. {
  301. SkinButtom button = (SkinButtom)control;
  302. GraphicsPath graphicsPath2 = UpdateForm.CalculateControlGraphicsPath(bitmap, Alpha);
  303. button.Region = new Region(graphicsPath2);
  304. return;
  305. }
  306. if (control is SkinProgressBar)
  307. {
  308. SkinProgressBar Progressbar = (SkinProgressBar)control;
  309. GraphicsPath graphicsPath3 = UpdateForm.CalculateControlGraphicsPath(bitmap, Alpha);
  310. Progressbar.Region = new Region(graphicsPath3);
  311. }
  312. }
  313. public static GraphicsPath CalculateControlGraphicsPath(Bitmap bitmap, int Alpha)
  314. {
  315. GraphicsPath graphicsPath = new GraphicsPath();
  316. for (int row = 0; row < bitmap.Height; row++)
  317. {
  318. for (int col = 0; col < bitmap.Width; col++)
  319. {
  320. if ((int)bitmap.GetPixel(col, row).A >= Alpha)
  321. {
  322. int colOpaquePixel = col;
  323. int colNext = colOpaquePixel;
  324. while (colNext < bitmap.Width && (int)bitmap.GetPixel(colNext, row).A >= Alpha)
  325. {
  326. colNext++;
  327. }
  328. graphicsPath.AddRectangle(new Rectangle(colOpaquePixel, row, colNext - colOpaquePixel, 1));
  329. col = colNext;
  330. }
  331. }
  332. }
  333. return graphicsPath;
  334. }
  335. }
  336. }