BitmapHelper.cs 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. using System;
  2. using System.Drawing;
  3. using System.Drawing.Imaging;
  4. using System.Security.Permissions;
  5. namespace LYFZ.OtherExpansion
  6. {
  7. public static class BitmapHelper
  8. {
  9. //[SecurityPermission(SecurityAction.LinkDemand, Flags = SecurityPermissionFlag.UnmanagedCode)]
  10. // public unsafe static Color GetImageAverageColor(Bitmap bitmap)
  11. public static Color GetImageAverageColor(Bitmap bitmap)
  12. {
  13. if (bitmap == null)
  14. {
  15. throw new ArgumentNullException("bitmap");
  16. }
  17. int width = bitmap.Width;
  18. int height = bitmap.Height;
  19. Rectangle rect = new Rectangle(0, 0, width, height);
  20. Color result;
  21. try
  22. {
  23. BitmapData bitmapData = bitmap.LockBits(rect, ImageLockMode.ReadOnly, PixelFormat.Format32bppArgb);
  24. //byte* scan0 = (byte*)((void*)bitmapData.Scan0);
  25. int strideOffset = bitmapData.Stride - bitmapData.Width * 4;
  26. int sum = width * height;
  27. int a = 0;
  28. int r = 0;
  29. int g = 0;
  30. int b = 0;
  31. for (int i = 0; i < height; i++)
  32. {
  33. //for (int j = 0; j < width; j++)
  34. //{
  35. // int arg_79_0 = b;
  36. // byte* expr_72 = scan0;
  37. // scan0 = expr_72 + 1 / 1;
  38. // b = arg_79_0 + (int)(*expr_72);
  39. // int arg_87_0 = g;
  40. // byte* expr_80 = scan0;
  41. // scan0 = expr_80 + 1 / 1;
  42. // g = arg_87_0 + (int)(*expr_80);
  43. // int arg_95_0 = r;
  44. // byte* expr_8E = scan0;
  45. // scan0 = expr_8E + 1 / 1;
  46. // r = arg_95_0 + (int)(*expr_8E);
  47. // int arg_A3_0 = a;
  48. // byte* expr_9C = scan0;
  49. // scan0 = expr_9C + 1 / 1;
  50. // a = arg_A3_0 + (int)(*expr_9C);
  51. //}
  52. //scan0 += strideOffset / 1;
  53. }
  54. bitmap.UnlockBits(bitmapData);
  55. a /= sum;
  56. r /= sum;
  57. g /= sum;
  58. b /= sum;
  59. result = Color.FromArgb(255, r, g, b);
  60. }
  61. catch
  62. {
  63. result = Color.FromArgb(127, 127, 127);
  64. }
  65. return result;
  66. }
  67. }
  68. }