Utility.cs 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. using System;
  2. using System.Collections.Generic;
  3. using System.IO;
  4. using System.Windows;
  5. using System.Windows.Controls;
  6. using System.Windows.Media;
  7. using System.Windows.Media.Imaging;
  8. namespace Phihong_EVSE_UI_Tool
  9. {
  10. public static class Utility
  11. {
  12. public const string BG_PARENTFOLDER = @"Background";
  13. public const string BG_INITIAL = "0_init.bmp";
  14. public const string BG_IDLE = "1_idle.bmp";
  15. public const string BG_VERIFY = "2_verify.bmp";
  16. public const string BG_VERIFYOK = "3_carChkok.bmp";
  17. public const string BG_VERIFYFAIL = "4_chkfail.bmp";
  18. public const string BG_PLUG = "5_plug.bmp";
  19. public const string BG_PRECHARGE = "6_precharge.bmp";
  20. public const string BG_CHARGING = "7_charging.bmp";
  21. public const string BG_COMPLETE = "8_complete.bmp";
  22. public const string BG_MAINTAIN = "9_fix.bmp";
  23. public const string ICO_PARENTFOLDER = @"ICO";
  24. public const string ICO_NAME = "60.ICO";
  25. public const string ICO_MAINLOGO = "10.bmp";
  26. public const string ICO_COMPLETELOGO = "62.bmp";
  27. public const string SDCARD_SUBDIR = "DWIN_SET";
  28. public static readonly string OUTPUT_DIRECTORY = Environment.CurrentDirectory + @"\Output";
  29. public static readonly string CUSTOM_DIRECTORY = Environment.CurrentDirectory + @"\CustomTemp";
  30. public static Dictionary<string, bool> ChangedFiles = new Dictionary<string, bool>()
  31. {
  32. {BG_INITIAL, false}, {BG_IDLE, false}, {BG_VERIFY, false},
  33. {BG_VERIFYOK, false}, {BG_VERIFYFAIL, false}, {BG_PLUG, false},
  34. {BG_PRECHARGE, false}, {BG_CHARGING, false}, {BG_COMPLETE, false},
  35. {BG_MAINTAIN, false}, {ICO_NAME, false}
  36. };
  37. public static void CopyFileFromResource(Uri uriString, string destPath)
  38. {
  39. using (var resource = Application.GetResourceStream(uriString).Stream)
  40. {
  41. using (var file = new FileStream(destPath, FileMode.Create, FileAccess.Write))
  42. {
  43. resource.CopyTo(file);
  44. }
  45. }
  46. }
  47. public static void LoadImageFromPath(Image imgControl, string path)
  48. {
  49. FileStream fstream = new FileStream(path, FileMode.Open);
  50. BitmapImage bitmap = new BitmapImage();
  51. bitmap.BeginInit();
  52. bitmap.StreamSource = fstream;
  53. bitmap.CacheOption = BitmapCacheOption.OnLoad;
  54. bitmap.EndInit();
  55. fstream.Close();
  56. imgControl.BeginInit();
  57. imgControl.Source = bitmap;
  58. imgControl.EndInit();
  59. }
  60. public static bool IsBackgroundImageSizeQualified(string path)
  61. {
  62. FileStream fstream = new FileStream(path, FileMode.Open);
  63. BitmapImage bitmap = new BitmapImage();
  64. bitmap.BeginInit();
  65. bitmap.StreamSource = fstream;
  66. bitmap.CacheOption = BitmapCacheOption.OnLoad;
  67. bitmap.EndInit();
  68. fstream.Close();
  69. if (bitmap.PixelWidth != 800 || bitmap.PixelHeight != 480)
  70. {
  71. return false;
  72. }
  73. return true;
  74. }
  75. public static bool IsIcoImageSizeQualified(string path)
  76. {
  77. FileStream fstream = new FileStream(path, FileMode.Open);
  78. BitmapImage bitmap = new BitmapImage();
  79. bitmap.BeginInit();
  80. bitmap.StreamSource = fstream;
  81. bitmap.CacheOption = BitmapCacheOption.OnLoad;
  82. bitmap.EndInit();
  83. fstream.Close();
  84. if (bitmap.PixelWidth > 255 || bitmap.PixelHeight > 255)
  85. {
  86. return false;
  87. }
  88. return true;
  89. }
  90. public static bool IsIcoLogoSizeQualified(string path)
  91. {
  92. FileStream fstream = new FileStream(path, FileMode.Open);
  93. BitmapImage bitmap = new BitmapImage();
  94. bitmap.BeginInit();
  95. bitmap.StreamSource = fstream;
  96. bitmap.CacheOption = BitmapCacheOption.OnLoad;
  97. bitmap.EndInit();
  98. fstream.Close();
  99. if (bitmap.PixelWidth != 255 || bitmap.PixelHeight != 34)
  100. {
  101. return false;
  102. }
  103. return true;
  104. }
  105. public static void ConvertFileToBitmap565Array(string path, out int width, out int height, out byte[] pixels)
  106. {
  107. FileStream fstream = new FileStream(path, FileMode.Open);
  108. ConvertToBitmap565(out width, out height, out pixels, fstream);
  109. }
  110. public static void ConvertResourceToBitmap565Array(Uri uriString, out int width, out int height, out byte[] pixels)
  111. {
  112. using (var resource = Application.GetResourceStream(uriString).Stream)
  113. {
  114. ConvertToBitmap565(out width, out height, out pixels, resource);
  115. }
  116. }
  117. private static void ConvertToBitmap565(out int width, out int height, out byte[] pixels, Stream fstream)
  118. {
  119. BitmapImage bitmap = new BitmapImage();
  120. bitmap.BeginInit();
  121. bitmap.StreamSource = fstream;
  122. bitmap.CacheOption = BitmapCacheOption.OnLoad;
  123. bitmap.EndInit();
  124. fstream.Close();
  125. FormatConvertedBitmap newFormated = new FormatConvertedBitmap();
  126. newFormated.BeginInit();
  127. newFormated.Source = bitmap;
  128. newFormated.DestinationFormat = PixelFormats.Bgr565;
  129. newFormated.EndInit();
  130. width = newFormated.PixelWidth;
  131. height = newFormated.PixelHeight;
  132. var stride = (newFormated.PixelWidth * newFormated.Format.BitsPerPixel + 7) / 8;
  133. pixels = new byte[newFormated.PixelHeight * stride];
  134. newFormated.CopyPixels(pixels, stride, 0);
  135. for (int i = 0; i < pixels.Length; i += 2)
  136. {
  137. byte temp = pixels[i];
  138. pixels[i] = pixels[i + 1];
  139. pixels[i + 1] = temp;
  140. }
  141. }
  142. }
  143. }