[New] SaveAs support image #304

This commit is contained in:
Wei 2022-01-21 12:01:22 +08:00
parent fb30be7bd3
commit 45e4a57c20
13 changed files with 105 additions and 19 deletions

View File

@ -469,6 +469,27 @@ MiniExcel.SaveAs(path, value, configuration: new OpenXmlConfiguration() { AutoFi
#### 10. Create Image
```csharp
var value = new[] {
new { Name="github",Image=File.ReadAllBytes(PathHelper.GetFile("images/github_logo.png"))},
new { Name="google",Image=File.ReadAllBytes(PathHelper.GetFile("images/google_logo.png"))},
new { Name="microsoft",Image=File.ReadAllBytes(PathHelper.GetFile("images/microsoft_logo.png"))},
new { Name="reddit",Image=File.ReadAllBytes(PathHelper.GetFile("images/reddit_logo.png"))},
new { Name="statck_overflow",Image=File.ReadAllBytes(PathHelper.GetFile("images/statck_overflow_logo.png"))},
};
MiniExcel.SaveAs(path, value);
```
![image](https://user-images.githubusercontent.com/12729184/150462383-ad9931b3-ed8d-4221-a1d6-66f799743433.png)
### Fill Data To Excel Template <a name="getstart3"></a> ### Fill Data To Excel Template <a name="getstart3"></a>

View File

@ -473,6 +473,29 @@ MiniExcel.SaveAs(path, value, configuration: new OpenXmlConfiguration() { AutoFi
#### 10. 图片生成
```csharp
var value = new[] {
new { Name="github",Image=File.ReadAllBytes(PathHelper.GetFile("images/github_logo.png"))},
new { Name="google",Image=File.ReadAllBytes(PathHelper.GetFile("images/google_logo.png"))},
new { Name="microsoft",Image=File.ReadAllBytes(PathHelper.GetFile("images/microsoft_logo.png"))},
new { Name="reddit",Image=File.ReadAllBytes(PathHelper.GetFile("images/reddit_logo.png"))},
new { Name="statck_overflow",Image=File.ReadAllBytes(PathHelper.GetFile("images/statck_overflow_logo.png"))},
};
MiniExcel.SaveAs(path, value);
```
![image](https://user-images.githubusercontent.com/12729184/150462383-ad9931b3-ed8d-4221-a1d6-66f799743433.png)
### 模板填充 Excel <a name="getstart3"></a> ### 模板填充 Excel <a name="getstart3"></a>

View File

@ -479,6 +479,27 @@ MiniExcel.SaveAs(path, value, configuration: new OpenXmlConfiguration() { AutoFi
#### 10. 圖片生成
```csharp
var value = new[] {
new { Name="github",Image=File.ReadAllBytes(PathHelper.GetFile("images/github_logo.png"))},
new { Name="google",Image=File.ReadAllBytes(PathHelper.GetFile("images/google_logo.png"))},
new { Name="microsoft",Image=File.ReadAllBytes(PathHelper.GetFile("images/microsoft_logo.png"))},
new { Name="reddit",Image=File.ReadAllBytes(PathHelper.GetFile("images/reddit_logo.png"))},
new { Name="statck_overflow",Image=File.ReadAllBytes(PathHelper.GetFile("images/statck_overflow_logo.png"))},
};
MiniExcel.SaveAs(path, value);
```
![image](https://user-images.githubusercontent.com/12729184/150462383-ad9931b3-ed8d-4221-a1d6-66f799743433.png)

View File

@ -16,6 +16,9 @@
--- ---
### 0.20.0
- [New] SaveAs support image #304
### 0.19.3-beta ### 0.19.3-beta
- [Fix] Excelnumberformat 1.1.0 valid date expired (Valid from: 2018-04-10 08:00:00 to 2021-04-14 20:00:00) [link](https://github.com/andersnm/ExcelNumberFormat/issues/34) - [Fix] Excelnumberformat 1.1.0 valid date expired (Valid from: 2018-04-10 08:00:00 to 2021-04-14 20:00:00) [link](https://github.com/andersnm/ExcelNumberFormat/issues/34)

View File

@ -23,6 +23,9 @@
--- ---
### 0.20.0
- [New] SaveAs 支持图片生成 #304
### 0.19.3-beta ### 0.19.3-beta
- [Fix] Excelnumberformat 1.1.0 凭证过期 (Valid from: 2018-04-10 08:00:00 to 2021-04-14 20:00:00) [link](https://github.com/andersnm/ExcelNumberFormat/issues/34) - [Fix] Excelnumberformat 1.1.0 凭证过期 (Valid from: 2018-04-10 08:00:00 to 2021-04-14 20:00:00) [link](https://github.com/andersnm/ExcelNumberFormat/issues/34)

View File

@ -17,6 +17,8 @@
--- ---
### 0.20.0
- [New] SaveAs 支持圖片生成 #304
### 0.19.3-beta ### 0.19.3-beta
- [Fix] Excelnumberformat 1.1.0 憑證過期 (Valid from: 2018-04-10 08:00:00 to 2021-04-14 20:00:00) [link](https://github.com/andersnm/ExcelNumberFormat/issues/34) - [Fix] Excelnumberformat 1.1.0 憑證過期 (Valid from: 2018-04-10 08:00:00 to 2021-04-14 20:00:00) [link](https://github.com/andersnm/ExcelNumberFormat/issues/34)

Binary file not shown.

After

Width:  |  Height:  |  Size: 557 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 198 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 754 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 440 B

View File

@ -15,11 +15,13 @@ namespace MiniExcelLibs.OpenXml
{ {
internal class ImageDto internal class ImageDto
{ {
public string ID { get; set; } = $"R{Guid.NewGuid().ToString("N")}".Substring(0,5); public string ID { get; set; } = $"R{Guid.NewGuid().ToString("N")}";
public string Extension { get; set; } public string Extension { get; set; }
public string Path { get { return $"xl/media/image{ID}.{Extension}"; }} public string Path { get { return $"xl/media/image{ID}.{Extension}"; } }
public string Path2 { get { return $"/xl/media/image{ID}.{Extension}"; } } public string Path2 { get { return $"/xl/media/image{ID}.{Extension}"; } }
public Byte[] Byte { get; set; } public Byte[] Byte { get; set; }
public int RowIndex { get; set; }
public int CellIndex { get; set; }
} }
internal class SheetDto internal class SheetDto
{ {
@ -49,7 +51,7 @@ namespace MiniExcelLibs.OpenXml
this._configuration = configuration as OpenXmlConfiguration ?? OpenXmlConfiguration.DefaultConfig; this._configuration = configuration as OpenXmlConfiguration ?? OpenXmlConfiguration.DefaultConfig;
this._printHeader = printHeader; this._printHeader = printHeader;
this._value = value; this._value = value;
_sheets.Add(new SheetDto{ Name =sheetName, SheetIdx =1}); //TODO:remove _sheets.Add(new SheetDto { Name = sheetName, SheetIdx = 1 }); //TODO:remove
} }
public void SaveAs() public void SaveAs()
@ -344,7 +346,7 @@ namespace MiniExcelLibs.OpenXml
} }
} }
private void WriteCell(StreamWriter writer, int yIndex, int cellIndex, object value, ExcelCustomPropertyInfo p) private void WriteCell(StreamWriter writer, int rowIndex, int cellIndex, object value, ExcelCustomPropertyInfo p)
{ {
var v = string.Empty; var v = string.Empty;
var t = "str"; var t = "str";
@ -400,10 +402,13 @@ namespace MiniExcelLibs.OpenXml
{ {
//it can't insert to zip first to avoid cache image to memory //it can't insert to zip first to avoid cache image to memory
//because sheet xml is opening.. https://github.com/shps951023/MiniExcel/issues/304#issuecomment-1017031691 //because sheet xml is opening.. https://github.com/shps951023/MiniExcel/issues/304#issuecomment-1017031691
//int rowIndex, int cellIndex
_images.Add(new ImageDto() _images.Add(new ImageDto()
{ {
Extension = format.ToString(), Extension = format.ToString(),
Byte = bytes, Byte = bytes,
RowIndex = rowIndex,
CellIndex = cellIndex
}); });
} }
} }
@ -428,7 +433,7 @@ namespace MiniExcelLibs.OpenXml
} }
} }
var columname = ExcelOpenXmlUtils.ConvertXyToCell(cellIndex, yIndex); var columname = ExcelOpenXmlUtils.ConvertXyToCell(cellIndex, rowIndex);
if (v != null && (v.StartsWith(" ") || v.EndsWith(" "))) /*Prefix and suffix blank space will lost after SaveAs #294*/ if (v != null && (v.StartsWith(" ") || v.EndsWith(" "))) /*Prefix and suffix blank space will lost after SaveAs #294*/
writer.Write($"<x:c r=\"{columname}\" {(t == null ? "" : $"t =\"{t}\"")} s=\"{s}\" xml:space=\"preserve\"><x:v>{v}</x:v></x:c>"); writer.Write($"<x:c r=\"{columname}\" {(t == null ? "" : $"t =\"{t}\"")} s=\"{s}\" xml:space=\"preserve\"><x:v>{v}</x:v></x:c>");
else else
@ -582,15 +587,15 @@ namespace MiniExcelLibs.OpenXml
{ {
drawing.Append($@"<xdr:oneCellAnchor> drawing.Append($@"<xdr:oneCellAnchor>
<xdr:from> <xdr:from>
<xdr:col>0</xdr:col> <xdr:col>{i.CellIndex- 1/* why -1 : https://user-images.githubusercontent.com/12729184/150460189-f08ed939-44d4-44e1-be6e-9c533ece6be8.png*/}</xdr:col>
<xdr:colOff>0</xdr:colOff> <xdr:colOff>0</xdr:colOff>
<xdr:row>0</xdr:row> <xdr:row>{i.RowIndex-1}</xdr:row>
<xdr:rowOff>0</xdr:rowOff> <xdr:rowOff>0</xdr:rowOff>
</xdr:from> </xdr:from>
<xdr:ext cx=""609600"" cy=""190500"" /> <xdr:ext cx=""609600"" cy=""190500"" />
<xdr:pic> <xdr:pic>
<xdr:nvPicPr> <xdr:nvPicPr>
<xdr:cNvPr id=""{_images.IndexOf(i)+1}"" descr="""" name=""2a3f9147-58ea-4a79-87da-7d6114c4877b"" /> <xdr:cNvPr id=""{_images.IndexOf(i) + 1}"" descr="""" name=""2a3f9147-58ea-4a79-87da-7d6114c4877b"" />
<xdr:cNvPicPr> <xdr:cNvPicPr>
<a:picLocks noChangeAspect=""1"" /> <a:picLocks noChangeAspect=""1"" />
</xdr:cNvPicPr> </xdr:cNvPicPr>

View File

@ -34,15 +34,23 @@ namespace MiniExcelLibs.Tests
[Fact] [Fact]
public void TestIssue304() public void TestIssue304()
{ {
var imagePath = PathHelper.GetFile("images/github_logo.png"); var path = PathHelper.GetTempFilePath();
var image = File.ReadAllBytes(imagePath); var value = new[] {
var value = Enumerable.Range(1, 5).Select(s => new { image }); new { Name="github",Image=File.ReadAllBytes(PathHelper.GetFile("images/github_logo.png"))},
var path = PathHelper.GetRandomPath(); new { Name="google",Image=File.ReadAllBytes(PathHelper.GetFile("images/google_logo.png"))},
new { Name="microsoft",Image=File.ReadAllBytes(PathHelper.GetFile("images/microsoft_logo.png"))},
new { Name="reddit",Image=File.ReadAllBytes(PathHelper.GetFile("images/reddit_logo.png"))},
new { Name="statck_overflow",Image=File.ReadAllBytes(PathHelper.GetFile("images/statck_overflow_logo.png"))},
};
MiniExcel.SaveAs(path, value); MiniExcel.SaveAs(path, value);
{
//TODO: Read from base 64 not work Assert.Contains("/xl/media/image", Helpers.GetZipFileContent(path, "xl/drawings/_rels/drawing1.xml.rels"));
//var image = Convert.FromBase64String("iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQAAAAA3bvkkAAAAEElEQVR4nGJgAQAAAP//AwAABgAFV7+r1AAAAABJRU5ErkJggg=="); Assert.Contains("ext cx=\"609600\" cy=\"190500\"", Helpers.GetZipFileContent(path, "xl/drawings/drawing1.xml"));
Assert.Contains("/xl/drawings/drawing1.xml", Helpers.GetZipFileContent(path, "[Content_Types].xml"));
Assert.Contains("drawing r:id=", Helpers.GetZipFileContent(path, "xl/worksheets/sheet1.xml"));
Assert.Contains("../drawings/drawing1.xml", Helpers.GetZipFileContent(path, "xl/worksheets/_rels/sheet1.xml.rels"));
}
} }
/// <summary> /// <summary>

View File

@ -20,7 +20,7 @@
return path; return path;
} }
public static string GetRandomPath(string extension = "xlsx") public static string GetTempFilePath(string extension = "xlsx")
{ {
return Path.GetTempPath() + Guid.NewGuid().ToString() + "." + extension; return Path.GetTempPath() + Guid.NewGuid().ToString() + "." + extension;
} }