Analysis.cs 3.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. using System.Collections.Generic;
  2. using System.Drawing;
  3. using System.IO;
  4. using System.Linq;
  5. using VersOne.Epub;
  6. namespace GxPress.Common.Epub
  7. {
  8. /// <summary>
  9. /// 分析Epub
  10. /// </summary>
  11. public static class Analysis
  12. {
  13. /// <summary>
  14. /// 加工制造
  15. /// </summary>
  16. public static void ProcessMake()
  17. {
  18. // var url = "https://apk.tederen.com/service/cache/20200525/7682915b9dc44f8e98781ddd839291a9.epub";
  19. // FileStream fs = new FileStream(url, FileMode.Open, FileAccess.Read);
  20. // // 读取文件的 byte[]
  21. // byte[] bytes = new byte[fs.Length];
  22. // fs.Read(bytes, 0, bytes.Length);
  23. // fs.Close();
  24. // // 把 byte[] 转换成 Stream
  25. // Stream stream = new MemoryStream(bytes);
  26. //获取
  27. EpubBook epubBook = EpubReader.ReadBook("wwwroot/cache/20200529/e875998ea9e3407888d93f9060a4154a.epub");
  28. //标题
  29. string title = epubBook.Title;
  30. //作者
  31. string author = epubBook.Author;
  32. //作者集合
  33. List<string> authors = epubBook.AuthorList;
  34. //获取图片封面
  35. // byte[] coverImageContent = epubBook.CoverImage;
  36. // if (coverImageContent != null)
  37. // {
  38. // using (MemoryStream coverImageStream = new MemoryStream(coverImageContent))
  39. // {
  40. // Image coverImage = Image.FromStream(coverImageStream);
  41. // }
  42. // }
  43. // 目录
  44. //列举章节
  45. foreach (EpubNavigationItem chapter in epubBook.Navigation)
  46. {
  47. //本章标题
  48. string chapterTitle = chapter.Title;
  49. //嵌套章节
  50. List<EpubNavigationItem> subChapters = chapter.NestedItems;
  51. }
  52. //阅读顺序
  53. //按照阅读顺序枚举本书的全文内容
  54. foreach (EpubTextContentFile textContentFile in epubBook.ReadingOrder)
  55. {
  56. //当前文本内容文件的HTML
  57. string htmlContent = textContentFile.Content;
  58. }
  59. //内容
  60. //书籍的内容(HTML文件,手写板,图像,字体等)
  61. EpubContent bookContent = epubBook.Content;
  62. // 图片
  63. //书中的所有图片(文件名是关键)
  64. Dictionary<string, EpubByteContentFile> images = bookContent.Images;
  65. EpubByteContentFile firstImage = images.Values.First();
  66. //内容类型(例如EpubContentType.IMAGE_JPEG,EpubContentType.IMAGE_PNG)
  67. EpubContentType contentType = firstImage.ContentType;
  68. // MIME类型(例如“ image / jpeg”,“ image / png”)
  69. string mimeType = firstImage.ContentMimeType;
  70. // 从内容创建Image类实例
  71. using (MemoryStream imageStream = new MemoryStream(firstImage.Content))
  72. {
  73. Image image = Image.FromStream(imageStream);
  74. }
  75. }
  76. }
  77. }