Skip to content

Commit ddeed48

Browse files
committed
- Fix issue background image and table missing after save;
- Update test template for this fix
1 parent 6e1475a commit ddeed48

File tree

3 files changed

+60
-0
lines changed

3 files changed

+60
-0
lines changed

sheet.go

+2
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,8 @@ func replaceRelationshipsNameSpace(workbookMarshal string) string {
125125
func replaceRelationshipsID(workbookMarshal string) string {
126126
rids := strings.Replace(workbookMarshal, `<drawing rid="" />`, ``, -1)
127127
rids = strings.Replace(rids, `<hyperlinks></hyperlinks>`, ``, -1)
128+
rids = strings.Replace(rids, `<tableParts count="0"></tableParts>`, ``, -1)
129+
rids = strings.Replace(rids, `<picture></picture>`, ``, -1)
128130
return strings.Replace(rids, `<drawing rid="`, `<drawing r:id="`, -1)
129131
}
130132

test/Workbook1.xlsx

3.17 KB
Binary file not shown.

xmlWorksheet.go

+58
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@ type xlsxWorksheet struct {
2323
PageSetUp xlsxPageSetUp `xml:"pageSetup"`
2424
HeaderFooter xlsxHeaderFooter `xml:"headerFooter"`
2525
Drawing xlsxDrawing `xml:"drawing"`
26+
Picture xlsxPicture `xml:"picture"`
27+
TableParts xlsxTableParts `xml:"tableParts"`
2628
}
2729

2830
// xlsxDrawing change r:id to rid in the namespace.
@@ -292,3 +294,59 @@ type xlsxHyperlink struct {
292294
Display string `xml:"display,attr,omitempty"`
293295
RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
294296
}
297+
298+
// xlsxTableParts directly maps the tableParts element in the namespace
299+
// http://schemas.openxmlformats.org/spreadsheetml/2006/main -
300+
// The table element has several attributes applied to identify the table
301+
// and the data range it covers. The table id attribute needs to be unique
302+
// across all table parts, the same goes for the name and displayName. The
303+
// displayName has the further restriction that it must be unique across
304+
// all defined names in the workbook. Later on we will see that you can
305+
// define names for many elements, such as cells or formulas. The name
306+
// value is used for the object model in Microsoft Office Excel. The
307+
// displayName is used for references in formulas. The ref attribute is
308+
// used to identify the cell range that the table covers. This includes
309+
// not only the table data, but also the table header containing column
310+
// names.
311+
// To add columns to your table you add new tableColumn elements to the
312+
// tableColumns container. Similar to the shared string table the
313+
// collection keeps a count attribute identifying the number of columns.
314+
// Besides the table definition in the table part there is also the need
315+
// to identify which tables are displayed in the worksheet. The worksheet
316+
// part has a separate element tableParts to store this information. Each
317+
// table part is referenced through the relationship ID and again a count
318+
// of the number of table parts is maintained. The following markup sample
319+
// is taken from the documents accompanying this book. The sheet data
320+
// element has been removed to reduce the size of the sample. To reference
321+
// the table, just add the tableParts element, of course after having
322+
// created and stored the table part.
323+
// Example:
324+
//
325+
// <worksheet xmlns="http://schemas.openxmlformats.org/spreadsheetml/2006/main">
326+
// ...
327+
// <tableParts count="1">
328+
// <tablePart r:id="rId1" />
329+
// </tableParts>
330+
// </worksheet>
331+
//
332+
type xlsxTableParts struct {
333+
Count int `xml:"count,attr"`
334+
TableParts []xlsxTablePart `xml:"tablePart"`
335+
}
336+
337+
// xlsxTablePart directly maps the tablePart element in the namespace
338+
// http://schemas.openxmlformats.org/spreadsheetml/2006/main
339+
type xlsxTablePart struct {
340+
RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"`
341+
}
342+
343+
// xlsxPicture directly maps the picture element in the namespace
344+
// http://schemas.openxmlformats.org/spreadsheetml/2006/main -
345+
// Background sheet image.
346+
// Example:
347+
//
348+
// <picture r:id="rId1"/>
349+
//
350+
type xlsxPicture struct {
351+
RID string `xml:"http://schemas.openxmlformats.org/officeDocument/2006/relationships id,attr,omitempty"` // Relationship Id pointing to the image part.
352+
}

0 commit comments

Comments
 (0)