| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- using OfficeOpenXml;
- using System;
- using System.Collections.Generic;
- using System.Data;
- using System.Drawing;
- using System.IO;
- using System.Linq;
- using System.Text;
- namespace Masuit.Tools.Excel
- {
- public static class ExcelExtension
- {
- static ExcelExtension()
- {
- ExcelPackage.LicenseContext = LicenseContext.NonCommercial;
- }
- /// <summary>
- /// 将内存表自动填充到Excel
- /// </summary>
- /// <param name="sheetTables">sheet名和内存表的映射</param>
- /// <param name="password">密码</param>
- /// <returns>内存流</returns>
- public static MemoryStream ToExcel(this Dictionary<string, DataTable> sheetTables, string password = null)
- {
- using (var pkg = new ExcelPackage())
- {
- foreach (var pair in sheetTables)
- {
- pair.Value.TableName = pair.Key;
- CreateWorksheet(pkg, pair.Value);
- }
- return SaveAsStream(pkg, password);
- }
- }
- /// <summary>
- /// 将内存表自动填充到Excel
- /// </summary>
- /// <param name="tables">内存表</param>
- /// <param name="password">密码</param>
- /// <returns>内存流</returns>
- public static MemoryStream ToExcel(this List<DataTable> tables, string password = null)
- {
- using var pkg = new ExcelPackage();
- foreach (var table in tables)
- {
- CreateWorksheet(pkg, table);
- }
- return SaveAsStream(pkg, password);
- }
- /// <summary>
- /// 将内存表自动填充到Excel
- /// </summary>
- /// <param name="table">内存表</param>
- /// <param name="password">密码</param>
- /// <returns>内存流</returns>
- public static MemoryStream ToExcel(this DataTable table, string password = null)
- {
- using var pkg = new ExcelPackage();
- CreateWorksheet(pkg, table);
- return SaveAsStream(pkg, password);
- }
- private static MemoryStream SaveAsStream(ExcelPackage pkg, string password)
- {
- var ms = new MemoryStream();
- if (!string.IsNullOrEmpty(password))
- {
- pkg.SaveAs(ms, password);
- }
- else
- {
- pkg.SaveAs(ms);
- }
- return ms;
- }
- public static void CreateWorksheet(this ExcelPackage pkg, DataTable table)
- {
- if (string.IsNullOrEmpty(table.TableName))
- {
- table.TableName = "Sheet1";
- }
- pkg.Workbook.Worksheets.Add(table.TableName);
- var sheet = pkg.Workbook.Worksheets[table.TableName];
- // 填充表头
- var maxWidth = new int[table.Columns.Count];
- for (var j = 0; j < table.Columns.Count; j++)
- {
- sheet.SetValue(1, j + 1, table.Columns[j].ColumnName);
- maxWidth[j] = Encoding.UTF8.GetBytes(table.Columns[j].ColumnName).Length;
- }
- sheet.Row(1).Style.Font.Bold = true; // 表头设置为粗体
- sheet.Row(1).Style.Font.Size = sheet.Row(1).Style.Font.Size * 1.11f; // 表头字号放大1.11倍
- sheet.Row(1).CustomHeight = true; // 自动调整行高
- sheet.Cells.AutoFitColumns(); // 表头自适应列宽
- sheet.Cells.Style.WrapText = true;
- // 填充内容
- for (var i = 0; i < table.Rows.Count; i++)
- {
- sheet.Row(i + 2).CustomHeight = true; // 自动调整行高
- for (var j = 0; j < table.Columns.Count; j++)
- {
- switch (table.Rows[i][j])
- {
- case Stream s:
- {
- if (s.Length > 2)
- {
- using var bmp = new Bitmap(s);
- bmp.SetResolution(96, 96);
- using var picture = sheet.Drawings.AddPicture(Guid.NewGuid().ToString(), bmp);
- picture.SetPosition(i + 1, 3, j, 5); //设置图片显示位置
- var percent = 11000f / bmp.Height;
- picture.SetSize((int)percent);
- sheet.Row(i + 2).Height = 90;
- sheet.Column(j + 1).Width = Math.Max(sheet.Column(j + 1).Width, bmp.Width / 6 > 32 ? bmp.Width / 6 : 32);
- }
- break;
- }
- case Bitmap bmp:
- {
- if (bmp.Width + bmp.Height > 4)
- {
- bmp.SetResolution(96, 96);
- using var picture = sheet.Drawings.AddPicture(Guid.NewGuid().ToString(), bmp);
- picture.SetPosition(i + 1, 3, j, 5); //设置图片显示位置
- var percent = 11000f / bmp.Height;
- picture.SetSize((int)percent);
- sheet.Row(i + 2).Height = 90;
- sheet.Column(j + 1).Width = Math.Max(sheet.Column(j + 1).Width, bmp.Width / 6 > 32 ? bmp.Width / 6 : 32);
- }
- break;
- }
- case IEnumerable<Stream> streams:
- {
- double sumWidth = 0;
- foreach (var stream in streams.Where(stream => stream.Length > 2))
- {
- using var bmp = new Bitmap(stream);
- bmp.SetResolution(96, 96);
- using var picture = sheet.Drawings.AddPicture(Guid.NewGuid().ToString(), bmp);
- picture.SetPosition(i + 1, 3, j, (int)(5 + sumWidth)); //设置图片显示位置
- var percent = 11000f / bmp.Height;
- picture.SetSize((int)percent);
- sheet.Row(i + 2).Height = 90;
- sumWidth += bmp.Width * 1.0 * percent / 100 + 5;
- sheet.Column(j + 1).Width = Math.Max(sheet.Column(j + 1).Width, sumWidth / 6 > 32 ? sumWidth / 6 : 32);
- }
- break;
- }
- case IEnumerable<Bitmap> bmps:
- {
- double sumWidth = 0;
- foreach (var bmp in bmps.Where(stream => stream.Width + stream.Height > 4))
- {
- bmp.SetResolution(96, 96);
- using var picture = sheet.Drawings.AddPicture(Guid.NewGuid().ToString(), bmp);
- picture.SetPosition(i + 1, 3, j, (int)(5 + sumWidth)); //设置图片显示位置
- var percent = 11000f / bmp.Height;
- picture.SetSize((int)percent);
- sheet.Row(i + 2).Height = 90;
- sumWidth += bmp.Width * 1.0 * percent / 100 + 5;
- sheet.Column(j + 1).Width = Math.Max(sheet.Column(j + 1).Width, sumWidth / 6 > 32 ? sumWidth / 6 : 32);
- }
- break;
- }
- case IDictionary<string, Stream> dic:
- {
- double sumWidth = 0;
- foreach (var kv in dic.Where(kv => kv.Value.Length > 2))
- {
- using var bmp = new Bitmap(kv.Value);
- bmp.SetResolution(96, 96);
- using var picture = sheet.Drawings.AddPicture(Guid.NewGuid().ToString(), bmp, new Uri(kv.Key));
- picture.SetPosition(i + 1, 3, j, (int)(5 + sumWidth)); //设置图片显示位置
- var percent = 11000f / bmp.Height;
- picture.SetSize((int)percent);
- sheet.Row(i + 2).Height = 90;
- sumWidth += bmp.Width * 1.0 * percent / 100 + 5;
- sheet.Column(j + 1).Width = Math.Max(sheet.Column(j + 1).Width, sumWidth / 6 > 32 ? sumWidth / 6 : 32);
- }
- break;
- }
- case IDictionary<string, Bitmap> bmps:
- {
- double sumWidth = 0;
- foreach (var kv in bmps.Where(kv => kv.Value.Width + kv.Value.Height > 4))
- {
- kv.Value.SetResolution(96, 96);
- using var picture = sheet.Drawings.AddPicture(Guid.NewGuid().ToString(), kv.Value, new Uri(kv.Key));
- picture.SetPosition(i + 1, 3, j, (int)(5 + sumWidth)); //设置图片显示位置
- var percent = 11000f / kv.Value.Height;
- picture.SetSize((int)percent);
- sheet.Row(i + 2).Height = 90;
- sumWidth += kv.Value.Width * 1.0 * percent / 100 + 5;
- sheet.Column(j + 1).Width = Math.Max(sheet.Column(j + 1).Width, sumWidth / 6 > 32 ? sumWidth / 6 : 32);
- }
- break;
- }
- default:
- {
- sheet.SetValue(i + 2, j + 1, table.Rows[i][j] ?? "");
- // 根据单元格内容长度来自适应调整列宽
- maxWidth[j] = Math.Max(Encoding.UTF8.GetBytes(table.Rows[i][j].ToString() ?? string.Empty).Length, maxWidth[j]);
- if (sheet.Column(j + 1).Width < maxWidth[j])
- {
- sheet.Cells[i + 2, j + 1].AutoFitColumns(18, 110); // 自适应最大列宽,最小18,最大110
- }
- break;
- }
- }
- }
- }
- //打印方向:纵向
- sheet.PrinterSettings.Orientation = eOrientation.Landscape;
- //集中在一页里打印
- sheet.PrinterSettings.FitToPage = true;
- //使用A4纸
- sheet.PrinterSettings.PaperSize = ePaperSize.A4;
- }
- }
- }
|