123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336 |
- using LYFZ.OtherExpansion.SkinControl;
- using LYFZ.OtherExpansion.Win32;
- using LYFZ.OtherExpansion.Win32.Struct;
- using System;
- using System.Drawing;
- using System.Drawing.Drawing2D;
- using System.Drawing.Imaging;
- using System.Drawing.Text;
- using System.Runtime.InteropServices;
- using System.Windows.Forms;
- namespace LYFZ.OtherExpansion.SkinClass
- {
- public class UpdateForm
- {
- public static Bitmap GaryImg(Bitmap b)
- {
- Bitmap bmp = b.Clone(new Rectangle(0, 0, b.Width, b.Height), PixelFormat.Format24bppRgb);
- b.Dispose();
- BitmapData bmpData = bmp.LockBits(new Rectangle(0, 0, bmp.Width, bmp.Height), ImageLockMode.ReadWrite, bmp.PixelFormat);
- byte[] byColorInfo = new byte[bmp.Height * bmpData.Stride];
- Marshal.Copy(bmpData.Scan0, byColorInfo, 0, byColorInfo.Length);
- int x = 0;
- int xLen = bmp.Width;
- while (x < xLen)
- {
- int y = 0;
- int yLen = bmp.Height;
- while (y < yLen)
- {
- 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])));
- y++;
- }
- x++;
- }
- Marshal.Copy(byColorInfo, 0, bmpData.Scan0, byColorInfo.Length);
- bmp.UnlockBits(bmpData);
- return bmp;
- }
- private static byte GetAvg(byte b, byte g, byte r)
- {
- return (byte)((r + g + b) / 3);
- }
- public static Color GetImageAverageColor(Bitmap back)
- {
- return BitmapHelper.GetImageAverageColor(back);
- }
- public static void CreateRegion(Control ctrl, int RgnRadius)
- {
- int Rgn = NativeMethods.CreateRoundRectRgn(0, 0, ctrl.ClientRectangle.Width + 1, ctrl.ClientRectangle.Height + 1, RgnRadius, RgnRadius);
- NativeMethods.SetWindowRgn(ctrl.Handle, Rgn, true);
- }
- public static void CreateRegion(Control control, Rectangle bounds, int radius, RoundStyle roundStyle)
- {
- if (roundStyle != RoundStyle.None)
- {
- using (GraphicsPath path = GraphicsPathHelper.CreatePath(bounds, radius, roundStyle, true))
- {
- Region region = new Region(path);
- path.Widen(Pens.White);
- region.Union(path);
- control.Region = region;
- return;
- }
- }
- if (control.Region != null)
- {
- control.Region = null;
- }
- }
- public static void CreateRegion(Control control, Rectangle bounds)
- {
- UpdateForm.CreateRegion(control, bounds, 8, RoundStyle.All);
- }
- public static void CreateRegion(IntPtr hWnd, int radius, RoundStyle roundStyle, bool redraw)
- {
- RECT bounds = default(RECT);
- NativeMethods.GetWindowRect(hWnd, ref bounds);
- Rectangle rect = new Rectangle(Point.Empty, bounds.Size);
- if (roundStyle != RoundStyle.None)
- {
- using (GraphicsPath path = GraphicsPathHelper.CreatePath(rect, radius, roundStyle, true))
- {
- using (Region region = new Region(path))
- {
- path.Widen(Pens.White);
- region.Union(path);
- IntPtr hDc = NativeMethods.GetWindowDC(hWnd);
- try
- {
- using (Graphics g = Graphics.FromHdc(hDc))
- {
- NativeMethods.SetWindowRgn(hWnd, region.GetHrgn(g), redraw);
- }
- }
- finally
- {
- NativeMethods.ReleaseDC(hWnd, hDc);
- }
- }
- return;
- }
- }
- IntPtr hRgn = NativeMethods.CreateRectRgn(0, 0, rect.Width, rect.Height);
- NativeMethods.SetWindowRgn(hWnd, hRgn, redraw);
- }
- public static Bitmap BothAlpha(Bitmap p_Bitmap, bool p_CentralTransparent, bool p_Crossdirection)
- {
- Bitmap _SetBitmap = new Bitmap(p_Bitmap.Width, p_Bitmap.Height);
- Graphics _GraphisSetBitmap = Graphics.FromImage(_SetBitmap);
- _GraphisSetBitmap.DrawImage(p_Bitmap, new Rectangle(0, 0, p_Bitmap.Width, p_Bitmap.Height));
- _GraphisSetBitmap.Dispose();
- Bitmap _Bitmap = new Bitmap(_SetBitmap.Width, _SetBitmap.Height);
- Graphics _Graphcis = Graphics.FromImage(_Bitmap);
- Point _Left = new Point(0, 0);
- Point _Left2 = new Point(_Bitmap.Width, 0);
- Point _Left3 = new Point(_Bitmap.Width, _Bitmap.Height / 2);
- Point _Left4 = new Point(0, _Bitmap.Height / 2);
- if (p_Crossdirection)
- {
- _Left = new Point(0, 0);
- _Left2 = new Point(_Bitmap.Width / 2, 0);
- _Left3 = new Point(_Bitmap.Width / 2, _Bitmap.Height);
- _Left4 = new Point(0, _Bitmap.Height);
- }
- Point[] _Point = new Point[]
- {
- _Left,
- _Left2,
- _Left3,
- _Left4
- };
- PathGradientBrush _SetBruhs = new PathGradientBrush(_Point, WrapMode.TileFlipY);
- _SetBruhs.CenterPoint = new PointF(0f, 0f);
- _SetBruhs.FocusScales = new PointF((float)(_Bitmap.Width / 2), 0f);
- _SetBruhs.CenterColor = Color.FromArgb(0, 255, 255, 255);
- _SetBruhs.SurroundColors = new Color[]
- {
- Color.FromArgb(255, 255, 255, 255)
- };
- if (p_Crossdirection)
- {
- _SetBruhs.FocusScales = new PointF(0f, (float)_Bitmap.Height);
- _SetBruhs.WrapMode = WrapMode.TileFlipX;
- }
- if (p_CentralTransparent)
- {
- _SetBruhs.CenterColor = Color.FromArgb(255, 255, 255, 255);
- _SetBruhs.SurroundColors = new Color[]
- {
- Color.FromArgb(0, 255, 255, 255)
- };
- }
- _Graphcis.FillRectangle(_SetBruhs, new Rectangle(0, 0, _Bitmap.Width, _Bitmap.Height));
- _Graphcis.Dispose();
- BitmapData _NewData = _Bitmap.LockBits(new Rectangle(0, 0, _Bitmap.Width, _Bitmap.Height), ImageLockMode.ReadOnly, _Bitmap.PixelFormat);
- byte[] _NewBytes = new byte[_NewData.Stride * _NewData.Height];
- Marshal.Copy(_NewData.Scan0, _NewBytes, 0, _NewBytes.Length);
- _Bitmap.UnlockBits(_NewData);
- BitmapData _SetData = _SetBitmap.LockBits(new Rectangle(0, 0, _SetBitmap.Width, _SetBitmap.Height), ImageLockMode.ReadWrite, _SetBitmap.PixelFormat);
- byte[] _SetBytes = new byte[_SetData.Stride * _SetData.Height];
- Marshal.Copy(_SetData.Scan0, _SetBytes, 0, _SetBytes.Length);
- for (int i = 0; i != _SetData.Height; i++)
- {
- int _WriteIndex = i * _SetData.Stride + 3;
- for (int z = 0; z != _SetData.Width; z++)
- {
- _SetBytes[_WriteIndex] = _NewBytes[_WriteIndex];
- _WriteIndex += 4;
- }
- }
- Marshal.Copy(_SetBytes, 0, _SetData.Scan0, _SetBytes.Length);
- _SetBitmap.UnlockBits(_SetData);
- return _SetBitmap;
- }
- public static Image ImageLightEffect(string Str, Font F, Color ColorFore, Color ColorBack, int BlurConsideration)
- {
- Bitmap Var_Bitmap = null;
- using (Graphics g = Graphics.FromHwnd(IntPtr.Zero))
- {
- SizeF Var_Size = g.MeasureString(Str, F);
- using (Bitmap Var_bmp = new Bitmap((int)Var_Size.Width, (int)Var_Size.Height))
- {
- using (Graphics Var_G_Bmp = Graphics.FromImage(Var_bmp))
- {
- using (SolidBrush Var_BrushBack = new SolidBrush(Color.FromArgb(16, (int)ColorBack.R, (int)ColorBack.G, (int)ColorBack.B)))
- {
- using (SolidBrush Var_BrushFore = new SolidBrush(ColorFore))
- {
- Var_G_Bmp.SmoothingMode = SmoothingMode.HighQuality;
- Var_G_Bmp.InterpolationMode = InterpolationMode.HighQualityBilinear;
- Var_G_Bmp.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
- Var_G_Bmp.DrawString(Str, F, Var_BrushBack, 0f, 0f);
- Var_Bitmap = new Bitmap(Var_bmp.Width + BlurConsideration, Var_bmp.Height + BlurConsideration);
- using (Graphics Var_G_Bitmap = Graphics.FromImage(Var_Bitmap))
- {
- Var_G_Bitmap.SmoothingMode = SmoothingMode.HighQuality;
- Var_G_Bitmap.InterpolationMode = InterpolationMode.HighQualityBilinear;
- Var_G_Bitmap.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
- for (int x = 0; x <= BlurConsideration; x++)
- {
- for (int y = 0; y <= BlurConsideration; y++)
- {
- Var_G_Bitmap.DrawImageUnscaled(Var_bmp, x, y);
- }
- }
- Var_G_Bitmap.DrawString(Str, F, Var_BrushFore, (float)(BlurConsideration / 2), (float)(BlurConsideration / 2));
- }
- }
- }
- }
- }
- }
- return Var_Bitmap;
- }
- public static Image ImageLightEffect(string Str, Font F, Color ColorFore, Color ColorBack, int BlurConsideration, Rectangle rc, bool auto)
- {
- Bitmap Var_Bitmap = null;
- StringFormat sf = new StringFormat(StringFormatFlags.NoWrap);
- sf.Trimming = (auto ? StringTrimming.EllipsisWord : StringTrimming.None);
- using (Graphics g = Graphics.FromHwnd(IntPtr.Zero))
- {
- SizeF Var_Size = g.MeasureString(Str, F);
- using (Bitmap Var_bmp = new Bitmap((int)Var_Size.Width, (int)Var_Size.Height))
- {
- using (Graphics Var_G_Bmp = Graphics.FromImage(Var_bmp))
- {
- using (SolidBrush Var_BrushBack = new SolidBrush(Color.FromArgb(16, (int)ColorBack.R, (int)ColorBack.G, (int)ColorBack.B)))
- {
- using (SolidBrush Var_BrushFore = new SolidBrush(ColorFore))
- {
- Var_G_Bmp.SmoothingMode = SmoothingMode.HighQuality;
- Var_G_Bmp.InterpolationMode = InterpolationMode.HighQualityBilinear;
- Var_G_Bmp.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
- Var_G_Bmp.DrawString(Str, F, Var_BrushBack, rc, sf);
- Var_Bitmap = new Bitmap(Var_bmp.Width + BlurConsideration, Var_bmp.Height + BlurConsideration);
- using (Graphics Var_G_Bitmap = Graphics.FromImage(Var_Bitmap))
- {
- if (ColorBack != Color.Transparent)
- {
- Var_G_Bitmap.SmoothingMode = SmoothingMode.HighQuality;
- Var_G_Bitmap.InterpolationMode = InterpolationMode.HighQualityBilinear;
- Var_G_Bitmap.TextRenderingHint = TextRenderingHint.AntiAliasGridFit;
- for (int x = 0; x <= BlurConsideration; x++)
- {
- for (int y = 0; y <= BlurConsideration; y++)
- {
- Var_G_Bitmap.DrawImageUnscaled(Var_bmp, x, y);
- }
- }
- }
- Var_G_Bitmap.DrawString(Str, F, Var_BrushFore, new Rectangle(new Point(Convert.ToInt32(BlurConsideration / 2), Convert.ToInt32(BlurConsideration / 2)), rc.Size), sf);
- }
- }
- }
- }
- }
- }
- return Var_Bitmap;
- }
- public static void CursorClick(int x, int y)
- {
- int MOUSEEVENTF_LEFTDOWN = 2;
- int MOUSEEVENTF_LEFTUP = 4;
- NativeMethods.mouse_event(MOUSEEVENTF_LEFTDOWN, x * 65536 / 1024, y * 65536 / 768, 0, 0);
- NativeMethods.mouse_event(MOUSEEVENTF_LEFTUP, x * 65536 / 1024, y * 65536 / 768, 0, 0);
- }
- public static Bitmap ResizeBitmap(Bitmap b, int dstWidth, int dstHeight)
- {
- Bitmap dstImage = new Bitmap(dstWidth, dstHeight);
- Graphics g = Graphics.FromImage(dstImage);
- g.InterpolationMode = InterpolationMode.Bilinear;
- g.SmoothingMode = SmoothingMode.HighQuality;
- g.SmoothingMode = SmoothingMode.HighQuality;
- g.InterpolationMode = InterpolationMode.HighQualityBicubic;
- g.DrawImage(b, new Rectangle(0, 0, dstImage.Width, dstImage.Height), new Rectangle(0, 0, b.Width, b.Height), GraphicsUnit.Pixel);
- g.Save();
- g.Dispose();
- return dstImage;
- }
- public static void CreateControlRegion(Control control, Bitmap bitmap, int Alpha)
- {
- if (control == null || bitmap == null)
- {
- return;
- }
- control.Width = bitmap.Width;
- control.Height = bitmap.Height;
- if (control is Form)
- {
- Form form = (Form)control;
- form.Width = control.Width;
- form.Height = control.Height;
- form.FormBorderStyle = FormBorderStyle.None;
- form.BackgroundImage = bitmap;
- GraphicsPath graphicsPath = UpdateForm.CalculateControlGraphicsPath(bitmap, Alpha);
- form.Region = new Region(graphicsPath);
- return;
- }
- if (control is SkinButtom)
- {
- SkinButtom button = (SkinButtom)control;
- GraphicsPath graphicsPath2 = UpdateForm.CalculateControlGraphicsPath(bitmap, Alpha);
- button.Region = new Region(graphicsPath2);
- return;
- }
- if (control is SkinProgressBar)
- {
- SkinProgressBar Progressbar = (SkinProgressBar)control;
- GraphicsPath graphicsPath3 = UpdateForm.CalculateControlGraphicsPath(bitmap, Alpha);
- Progressbar.Region = new Region(graphicsPath3);
- }
- }
- public static GraphicsPath CalculateControlGraphicsPath(Bitmap bitmap, int Alpha)
- {
- GraphicsPath graphicsPath = new GraphicsPath();
- for (int row = 0; row < bitmap.Height; row++)
- {
- for (int col = 0; col < bitmap.Width; col++)
- {
- if ((int)bitmap.GetPixel(col, row).A >= Alpha)
- {
- int colOpaquePixel = col;
- int colNext = colOpaquePixel;
- while (colNext < bitmap.Width && (int)bitmap.GetPixel(colNext, row).A >= Alpha)
- {
- colNext++;
- }
- graphicsPath.AddRectangle(new Rectangle(colOpaquePixel, row, colNext - colOpaquePixel, 1));
- col = colNext;
- }
- }
- }
- return graphicsPath;
- }
- }
- }
|