FileHelper.cs 9.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261
  1. using System;
  2. using System.Drawing;
  3. using System.DrawingCore.Imaging;
  4. using System.Globalization;
  5. using System.IO;
  6. using GxPress.Common.Exceptions;
  7. using QRCoder;
  8. using Bitmap = System.DrawingCore.Bitmap;
  9. using Imazen.WebP;
  10. namespace GxPress.Common.Tools
  11. {
  12. /// <summary>
  13. /// 文件帮助类
  14. /// </summary>
  15. public class FileHelper
  16. {
  17. /// <summary>
  18. /// 得到图片的 Size 值
  19. /// </summary>
  20. /// <param name="bytes">图片的二进制数据</param>
  21. /// <returns>图片的 Size 值</returns>
  22. public static Size GetSize(byte[] bytes)
  23. {
  24. var size = Size.Empty;
  25. if (bytes != null && bytes.Length > 0)
  26. {
  27. using var ms = new MemoryStream(bytes);
  28. size = GetSize(ms);
  29. }
  30. return size;
  31. }
  32. /// <summary>
  33. /// 得到图片的 Size 值
  34. /// </summary>
  35. /// <param name="stream">图片的文件数据流</param>
  36. /// <returns>图片的 Size 值</returns>
  37. public static Size GetSize(Stream stream)
  38. {
  39. Size size;
  40. using (var originalImage = Image.FromStream(stream))
  41. {
  42. size = originalImage.Size;
  43. }
  44. return size;
  45. }
  46. /// <summary>
  47. /// 保存文件
  48. /// </summary>
  49. /// <param name="path">文件保存路径</param>
  50. /// <param name="bytes">文件二进制数据</param>
  51. /// <returns>保存文件是否成功!</returns>
  52. public static void Save(string path, byte[] bytes)
  53. {
  54. if (string.IsNullOrWhiteSpace(path))
  55. throw new ArgumentException("文件保存路径不能为空");
  56. if (bytes == null || bytes.Length == 0)
  57. throw new ArgumentException("文件二进制数据不能为空");
  58. var info = new FileInfo(path);
  59. if (info.Directory != null && !info.Directory.Exists) info.Directory.Create();
  60. info.Delete();
  61. File.WriteAllBytes(info.FullName, bytes);
  62. }
  63. /// <summary>
  64. /// 保存文件
  65. /// </summary>
  66. /// <param name="path">文件保存路径</param>
  67. /// <param name="fileName">文件名</param>
  68. /// <param name="bytes">文件二进制数据</param>
  69. /// <returns>保存后文件的路径,为空时,表示上传不成功!</returns>
  70. public static ResultPath SaveFile(string path, string fileName, byte[] bytes)
  71. {
  72. if (string.IsNullOrWhiteSpace(path))
  73. throw new BusinessException("文件保存路径不能为空");
  74. if (bytes == null || bytes.Length == 0)
  75. throw new BusinessException("上传文件不能为空");
  76. fileName = $"{FileNewName()}{Path.GetExtension(fileName)}";
  77. var saveDirectory = DateTime.Now.ToString("yyyyMMdd");
  78. var resultPath = new ResultPath
  79. {
  80. AbsolutePath = Path.Combine(path, "cache", saveDirectory, fileName),
  81. RelativePath = $"/cache/{saveDirectory}/{fileName}",
  82. };
  83. Save(resultPath.AbsolutePath, bytes);
  84. //压缩图片
  85. CompressImage.Execute(resultPath.AbsolutePath, 50);
  86. CompressImage.Execute(resultPath.AbsolutePath, 100);
  87. return resultPath;
  88. }
  89. /// <summary>
  90. /// 获取保存的路径
  91. /// </summary>
  92. /// <param name="path"></param>
  93. /// <param name="fileName"></param>
  94. /// <returns></returns>
  95. public static ResultPath GetSavePath(string path, string fileName)
  96. {
  97. var saveDirectory = DateTime.Now.ToString("yyyyMMdd");
  98. fileName = $"{FileNewName()}{Path.GetExtension(fileName)}";
  99. var resultPath = new ResultPath
  100. {
  101. AbsolutePath = Path.Combine(path, "cache", saveDirectory, fileName),
  102. RelativePath = $"/cache/{saveDirectory}/{fileName}",
  103. };
  104. return resultPath;
  105. }
  106. /// <summary>
  107. /// 获取图片保存地址
  108. /// </summary>
  109. /// <param name="path"></param>
  110. /// <param name="content"></param>
  111. /// <returns></returns>
  112. public static ResultPath SaveQRCodeFile(string path, string content)
  113. {
  114. //创建二维码
  115. QRCodeGenerator qrGenerator = new QRCodeGenerator();
  116. QRCodeData qrCodeData = qrGenerator.CreateQrCode(content, QRCodeGenerator.ECCLevel.Q);
  117. var qrCode = new QRCode(qrCodeData);
  118. Bitmap qrCodeImage = qrCode.GetGraphic(20);
  119. if (string.IsNullOrWhiteSpace(path))
  120. throw new BusinessException("文件保存路径不能为空");
  121. var fileName = $"{FileNewName()}.jpeg";
  122. var saveDirectory = DateTime.Now.ToString("yyyyMMdd");
  123. var resultPath = new ResultPath
  124. {
  125. AbsolutePath = Path.Combine(path, "cache", saveDirectory, fileName),
  126. RelativePath = $"/cache/{saveDirectory}/{fileName}",
  127. };
  128. var info = new FileInfo(resultPath.AbsolutePath);
  129. if (info.Directory != null && !info.Directory.Exists) info.Directory.Create();
  130. info.Delete();
  131. //保存位置
  132. qrCodeImage.Save(resultPath.AbsolutePath, ImageFormat.Jpeg);
  133. return resultPath;
  134. }
  135. /// <summary>
  136. /// 删除指定的文件
  137. /// </summary>
  138. /// <param name="path">文件路径</param>
  139. /// <returns>删除是否成功</returns>
  140. public static bool Delete(string path)
  141. {
  142. if (string.IsNullOrWhiteSpace(path))
  143. throw new ArgumentException("文件路径不能为空");
  144. if (File.Exists(path)) File.Delete(path);
  145. return true;
  146. }
  147. /// <summary>
  148. /// webp
  149. /// </summary>
  150. /// <param name="path"></param>
  151. /// <param name="fileName"></param>
  152. /// <param name="webpUrl"></param>
  153. /// <returns></returns>
  154. public static ResultPath WebPToImage(string path, string fileName, ResultPath resultPath, string absolutePathUrl)
  155. {
  156. // using (Bitmap image = WebPFormat.LoadFromStream(new FileStream("image.webp", FileMode.Open, FileAccess.Read)))
  157. // {
  158. // image.Save("image.png", ImageFormat.Png);
  159. // }
  160. var dim = System.IO.File.ReadAllBytes("wwwroot/" + resultPath.RelativePath);
  161. //Imazen.WebP.Extern.LoadLibrary.LoadWebPOrFail();
  162. var simpleDecoder = new SimpleDecoder();
  163. var bitmap = simpleDecoder.DecodeFromBytes(dim, dim.Length);
  164. var saveDirectory = DateTime.Now.ToString("yyyyMMdd");
  165. fileName = fileName.Split('.')[0] + ".jpg";
  166. resultPath.AbsolutePath = Path.Combine(path, "cache", saveDirectory, fileName);
  167. resultPath.RelativePath = $"/cache/{saveDirectory}/{fileName}";
  168. using (MemoryStream stream = new MemoryStream())
  169. {
  170. bitmap.Save(resultPath.AbsolutePath, System.Drawing.Imaging.ImageFormat.Jpeg); // 坑点:格式选Bmp时,不带透明度
  171. stream.Close();
  172. }
  173. resultPath.AbsolutePath = absolutePathUrl + resultPath.RelativePath;
  174. resultPath.FileName = fileName;
  175. resultPath.MinAbsolutePath = StringUtils.AddDomainMin(resultPath.AbsolutePath);
  176. //压缩图片
  177. CompressImage.Execute(resultPath.AbsolutePath, 50);
  178. CompressImage.Execute(resultPath.AbsolutePath, 100);
  179. return resultPath;
  180. }
  181. /// <summary>
  182. /// 判断文件是否存在
  183. /// </summary>
  184. /// <param name="path">文件路径</param>
  185. /// <returns>是否存在</returns>
  186. public static bool Exists(string path)
  187. {
  188. if (string.IsNullOrWhiteSpace(path))
  189. throw new ArgumentException("文件路径不能为空");
  190. return File.Exists(path);
  191. }
  192. /// <summary>
  193. /// 读取文件
  194. /// </summary>
  195. /// <param name="path">文件路径</param>
  196. /// <returns>文件的二进制数据</returns>
  197. public static byte[] Read(string path)
  198. {
  199. if (string.IsNullOrWhiteSpace(path))
  200. throw new ArgumentException("文件路径不能为空");
  201. byte[] result = null;
  202. if (File.Exists(path))
  203. result = File.ReadAllBytes(path);
  204. return result;
  205. }
  206. /// <summary>
  207. /// 得到文件新名称
  208. /// </summary>
  209. /// <returns></returns>
  210. public static string FileNewName()
  211. {
  212. return Guid.NewGuid().ToString("N", CultureInfo.InvariantCulture);
  213. }
  214. }
  215. /// <summary>
  216. /// 文件结果
  217. /// </summary>
  218. public class ResultPath
  219. {
  220. /// <summary>相对路径</summary>
  221. public string RelativePath { get; set; }
  222. /// <summary>绝对路径</summary>
  223. public string AbsolutePath { get; set; }
  224. /// <summary>
  225. /// 文件名称
  226. /// </summary>
  227. public string FileName { get; set; }
  228. /// <summary>
  229. /// 文件类型
  230. /// </summary>
  231. public string FileType { get; set; }
  232. public int FileId { get; set; }
  233. public long Size { get; set; }
  234. /// <summary>
  235. /// 缩略图
  236. /// </summary>
  237. /// <value></value>
  238. public string MinAbsolutePath { get; set; }
  239. }
  240. }