C# 或 .NetCore 如何使用 NPOI 导出图片到 Excel 文件

今天在本文中,我们将尝试使用NPOI库将图像插入到 Excel 文件的特定位置。请将以下逻辑添加到您的写作方法中,在 Excel 文件中添加图像(JPEG、PNG),我已经有一个示例 jpeg 文件 - Read-write-excel-npoi.jpg ,我们将尝试将其插入索引 (5,5),即第 5 行和第 5 列。

在第 5 行和第 5 列,将以编程方式插入上述图像,代码如下:

byte[] data = File.ReadAllBytes("Read-write-excel-npoi.jpg");//根据自己路径读取图片

int pictureIndex = workbook.AddPicture(data, PictureType.JPEG);

ICreationHelper helper = workbook.GetCreationHelper();

IDrawing drawing = excelSheet.CreateDrawingPatriarch();

IClientAnchor anchor = helper.CreateClientAnchor();

anchor.Col1 = 5;

anchor.Row1 = 5;

IPicture picture = drawing.CreatePicture(anchor, pictureIndex);

picture.Resize();

用图像写入 EXCEL

下面是一个 POC 完整代码示例,如下所示:

static void WriteExcel()

{

List<UserDetails> persons = new List<UserDetails>()

{

new UserDetails() {ID="1001", Name="ABCD", City ="City1", Country="USA"},

new UserDetails() {ID="1002", Name="PQRS", City ="City2", Country="INDIA"},

new UserDetails() {ID="1003", Name="XYZZ", City ="City3", Country="CHINA"},

new UserDetails() {ID="1004", Name="LMNO", City ="City4", Country="UK"},

};

// Lets converts our object data to Datatable for a simplified logic.

// Datatable is most easy way to deal with complex datatypes for easy reading and formatting.

DataTable table = (DataTable)JsonConvert.DeserializeObject(JsonConvert.SerializeObject(persons), (typeof(DataTable)));

var memoryStream = new MemoryStream();

using (var fs = new FileStream("Result.xlsx", FileMode.OpenOrCreate, FileAccess.Write))

{

IWorkbook workbook = new XSSFWorkbook();

ISheet excelSheet = workbook.CreateSheet("TestSheet1");

List<String> columns = new List<string>();

IRow row = excelSheet.CreateRow(0);

int columnIndex = 0;

foreach (System.Data.DataColumn column in table.Columns)

{

columns.Add(column.ColumnName);

row.CreateCell(columnIndex).SetCellValue(column.ColumnName);

columnIndex++;

}

int rowIndex = 1;

foreach (DataRow dsrow in table.Rows)

{

row = excelSheet.CreateRow(rowIndex);

int cellIndex = 0;

foreach (String col in columns)

{

row.CreateCell(cellIndex).SetCellValue(dsrow[col].ToString());

cellIndex++;

}

rowIndex++;

}

byte[] data = File.ReadAllBytes("Read-write-excel-npoi.jpg");

int pictureIndex = workbook.AddPicture(data, PictureType.JPEG);

ICreationHelper helper = workbook.GetCreationHelper();

IDrawing drawing = excelSheet.CreateDrawingPatriarch();

IClientAnchor anchor = helper.CreateClientAnchor();

anchor.Col1 = 5;

anchor.Row1 = 5;

IPicture picture = drawing.CreatePicture(anchor, pictureIndex);

picture.Resize();

workbook.Write(fs);

}

}

我将图像文件保存在同一个项目目录中,以便 Excel API 可以使用它并将其加载到 Excel 中的正确位置。最后图像将成功输入到所需位置:

如果您喜欢此文章,请收藏、点赞、评论,谢谢,祝您快乐每一天。

相关推荐
inxunoffice1 小时前
批量将文本文件转换为 Word/PDF/Excel/图片等其它格式
pdf·word·excel
勘察加熊人2 小时前
forms实现俄罗斯方块
c#
赵孝正5 小时前
自动用 Excel 转 .CSV 为 .xlsx 的原理
excel
互联网上的猪5 小时前
Excel时间类型函数(包括today、date、eomonth、year、month、day、weekday、weeknum、datedif)
笔记·学习·excel
艾妮艾妮6 小时前
C语言常见3种排序
java·c语言·开发语言·c++·算法·c#·排序算法
小码编匠6 小时前
.NET 验证码生成神器基于 SkiaSharp 的高性能方案
后端·c#·.net
专注VB编程开发20年7 小时前
Aspose.words,Aspose.cells,vb.net,c#加载许可证,生成操作选择:嵌入的资源
c#·word·.net·vb.net
andy55207 小时前
.NET 使用 WMQ 连接Queue 发送 message 实例
xml·c#·wmq·c# 连接wmq·发送消息到wmq
破罐子不摔7 小时前
【C#使用S7.NET库读取和写入西门子PLC变量】
java·c#·.net
杰尼杰尼丶7 小时前
Winform MQTT客户端连接方式
c#·winform