Utility.cs 5.0 KB

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