ModifyIco.xaml.cs 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249
  1. using Microsoft.WindowsAPICodePack.Dialogs;
  2. using System;
  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. /// <summary>
  11. /// ModifyIco.xaml 的互動邏輯
  12. /// </summary>
  13. public partial class ModifyIco : UserControl
  14. {
  15. private Properties.Settings mySettings = Properties.Settings.Default;
  16. private string logoCustomImgPath;
  17. private int bytesPerPixel = 2;
  18. public ModifyIco()
  19. {
  20. InitializeComponent();
  21. logoCustomImgPath = mySettings.LogoCustomImgPath;
  22. uxLogoDefaultRadioButton.IsChecked = mySettings.IsLogoDefault;
  23. uxLogoCustomRadioButton.IsChecked = !mySettings.IsLogoDefault;
  24. uxLogoBrowseTextBox.Text = mySettings.LogoCustomImgPath_org;
  25. }
  26. private void ModifyIcoContent(int index)
  27. {
  28. Uri srcPath = new Uri(Path.Combine(Utility.ICO_PARENTFOLDER, Utility.ICO_NAME), UriKind.Relative);
  29. Utility.CopyFileFromResource(srcPath, Path.Combine(Utility.OUTPUT_DIRECTORY, Utility.ICO_NAME));
  30. if (mySettings.IsLogoDefault)
  31. {
  32. return;
  33. }
  34. int width = 0, height = 0;
  35. byte[] pixels = null;
  36. Utility.ConvertToBitmap565Array(logoCustomImgPath, out width, out height, out pixels);
  37. FileStream icoFile = new FileStream(Path.Combine(Utility.OUTPUT_DIRECTORY, Utility.ICO_NAME),
  38. FileMode.OpenOrCreate, FileAccess.ReadWrite);
  39. byte[] array = new byte[4 * bytesPerPixel];
  40. icoFile.Position = index * 4 * bytesPerPixel;
  41. icoFile.Read(array, 0, 4 * bytesPerPixel);
  42. long offset = ((array[2] << 24) + (array[3] << 16) + (array[4] << 8) + array[5]) * bytesPerPixel;
  43. array[6] = pixels[0];
  44. array[7] = pixels[1];
  45. //Modify Header
  46. icoFile.Position = index * 4 * bytesPerPixel; //header offset
  47. icoFile.Write(array, 0, 4 * bytesPerPixel);
  48. //Modify Content
  49. icoFile.Position = offset;
  50. icoFile.Write(pixels, 0, width * height * bytesPerPixel);
  51. icoFile.Close();
  52. }
  53. private void DisplayDWIcoContent()
  54. {
  55. FileStream fs = new FileStream(Path.Combine(Utility.OUTPUT_DIRECTORY, Utility.ICO_NAME),
  56. FileMode.OpenOrCreate, FileAccess.ReadWrite);
  57. if (fs.Length > 131072 * bytesPerPixel)
  58. {
  59. for (int i = 0; i <= 32767; i++)
  60. {
  61. byte[] array = new byte[4 * bytesPerPixel];
  62. fs.Position = i * 4 * bytesPerPixel;
  63. fs.Read(array, 0, 4 * bytesPerPixel);
  64. int width = array[0];
  65. int height = array[1];
  66. long offset = ((array[2] << 24) + (array[3] << 16) + (array[4] << 8) + array[5]) * bytesPerPixel;
  67. if (offset <= 0)
  68. {
  69. continue;
  70. }
  71. if (offset >= 131072 * bytesPerPixel)
  72. {
  73. DisPlayIco(fs, width, height, offset);
  74. Dispatcher.Invoke(System.Windows.Threading.DispatcherPriority.Background, new Action(() => { }));
  75. }
  76. }
  77. }
  78. fs.Close();
  79. }
  80. public void DisPlayIco(FileStream fs, int width, int height, long offset)
  81. {
  82. WriteableBitmap wbitmap = new WriteableBitmap(width, height, 96, 96, PixelFormats.Bgr565, null);
  83. byte[,,] pixels = new byte[width, height, 2];
  84. byte[] pixels1d = new byte[height * width * bytesPerPixel];
  85. fs.Position = offset;
  86. byte[] array = new byte[bytesPerPixel];
  87. for (int i = 0; i < height; i++)
  88. {
  89. for (int j = 0; j < width; j++)
  90. {
  91. fs.Read(array, 0, bytesPerPixel);
  92. pixels[j, i, 0] = array[1];
  93. pixels[j, i, 1] = array[0];
  94. }
  95. }
  96. int index = 0;
  97. for (int row = 0; row < height; row++)
  98. {
  99. for (int col = 0; col < width; col++)
  100. {
  101. for (int i = 0; i < bytesPerPixel; i++)
  102. {
  103. pixels1d[index++] = pixels[col, row, i];
  104. }
  105. }
  106. }
  107. Int32Rect rect = new Int32Rect(0, 0, width, height);
  108. int stride = (width * wbitmap.Format.BitsPerPixel + 7) / 8;
  109. wbitmap.WritePixels(rect, pixels1d, stride, 0);
  110. Image image = new Image()
  111. {
  112. Width = 200,
  113. Height = 200,
  114. Stretch = Stretch.None,
  115. Margin = new Thickness(0),
  116. Source = wbitmap
  117. };
  118. RenderOptions.SetBitmapScalingMode(image, BitmapScalingMode.HighQuality);
  119. uxIcoUniformGrid.Children.Add(image);
  120. }
  121. private void uxDefaultRadioButton_Checked(object sender, RoutedEventArgs e)
  122. {
  123. Uri srcPath;
  124. RadioButton rb = e.Source as RadioButton;
  125. if (rb is null)
  126. {
  127. return;
  128. }
  129. switch (rb.Tag.ToString())
  130. {
  131. case "Logo":
  132. srcPath = new Uri(Path.Combine(Utility.ICO_PARENTFOLDER, Utility.ICO_LOGO), UriKind.Relative);
  133. uxLogoImage.Source = new BitmapImage(srcPath);
  134. mySettings.IsLogoDefault = true;
  135. break;
  136. default:
  137. return;
  138. }
  139. mySettings.Save();
  140. ModifyIcoContent((int)IcoElement.Logo);
  141. //Display Ico
  142. uxIcoUniformGrid.Children.Clear();
  143. DisplayDWIcoContent();
  144. }
  145. private void uxCustomRadioButton_Checked(object sender, RoutedEventArgs e)
  146. {
  147. RadioButton rb = e.Source as RadioButton;
  148. if (rb is null)
  149. {
  150. return;
  151. }
  152. switch (rb.Tag.ToString())
  153. {
  154. case "Logo":
  155. if (File.Exists(logoCustomImgPath))
  156. {
  157. Utility.LoadImageFromPath(uxLogoImage, logoCustomImgPath);
  158. mySettings.IsLogoDefault = false;
  159. ModifyIcoContent((int)IcoElement.Logo);
  160. //Display Ico
  161. uxIcoUniformGrid.Children.Clear();
  162. DisplayDWIcoContent();
  163. }
  164. break;
  165. default:
  166. return;
  167. }
  168. mySettings.Save();
  169. }
  170. private void uxBrowseButton_Click(object sender, RoutedEventArgs e)
  171. {
  172. Button btn = e.Source as Button;
  173. if (btn is null)
  174. {
  175. return;
  176. }
  177. var dlg = new CommonOpenFileDialog()
  178. {
  179. EnsureFileExists = true,
  180. Title = "Select an image file",
  181. };
  182. dlg.Filters.Add(new CommonFileDialogFilter("BMP images", "*.bmp"));
  183. if (dlg.ShowDialog() == CommonFileDialogResult.Ok)
  184. {
  185. if (!Utility.IsIcoLogoSizeQualified(dlg.FileName))
  186. {
  187. MessageBox.Show(dlg.FileName + "\r\n" + "The resolution of the image must be 186x34",
  188. "Incorrect Resolution", MessageBoxButton.OK, MessageBoxImage.Error);
  189. return;
  190. }
  191. switch (btn.Tag.ToString())
  192. {
  193. case "Logo":
  194. uxLogoBrowseTextBox.Text = dlg.FileName;
  195. logoCustomImgPath = Path.Combine(Utility.CUSTOM_DIRECTORY, Utility.ICO_LOGO);
  196. File.Copy(dlg.FileName, logoCustomImgPath, true);
  197. Utility.LoadImageFromPath(uxLogoImage, logoCustomImgPath);
  198. mySettings.IsLogoDefault = false;
  199. mySettings.LogoCustomImgPath = logoCustomImgPath;
  200. mySettings.LogoCustomImgPath_org = uxLogoBrowseTextBox.Text;
  201. ModifyIcoContent((int)IcoElement.Logo);
  202. //Display Ico
  203. uxIcoUniformGrid.Children.Clear();
  204. DisplayDWIcoContent();
  205. break;
  206. default:
  207. break;
  208. }
  209. }
  210. mySettings.Save();
  211. }
  212. }
  213. }