mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Add fix for worksheets with tables and background images.
This commit is contained in:
parent
800a108057
commit
93616e2729
@ -1440,16 +1440,16 @@ _write_worksheet_rels_file(lxw_packager *self)
|
||||
lxw_add_worksheet_relationship(rels, rel->type, rel->target,
|
||||
rel->target_mode);
|
||||
|
||||
STAILQ_FOREACH(rel, worksheet->external_table_links, list_pointers) {
|
||||
lxw_add_worksheet_relationship(rels, rel->type, rel->target,
|
||||
rel->target_mode);
|
||||
}
|
||||
|
||||
rel = worksheet->external_background_link;
|
||||
if (rel)
|
||||
lxw_add_worksheet_relationship(rels, rel->type, rel->target,
|
||||
rel->target_mode);
|
||||
|
||||
STAILQ_FOREACH(rel, worksheet->external_table_links, list_pointers) {
|
||||
lxw_add_worksheet_relationship(rels, rel->type, rel->target,
|
||||
rel->target_mode);
|
||||
}
|
||||
|
||||
rel = worksheet->external_comment_link;
|
||||
if (rel)
|
||||
lxw_add_worksheet_relationship(rels, rel->type, rel->target,
|
||||
|
24
test/functional/src/test_table29.c
Normal file
24
test/functional/src/test_table29.c
Normal file
@ -0,0 +1,24 @@
|
||||
/*****************************************************************************
|
||||
* Test cases for libxlsxwriter.
|
||||
*
|
||||
* Test to compare output against Excel files.
|
||||
*
|
||||
* Copyright 2014-2023, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include "xlsxwriter.h"
|
||||
|
||||
int main() {
|
||||
|
||||
lxw_workbook *workbook = workbook_new("test_table29.xlsx");
|
||||
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
|
||||
|
||||
worksheet_set_column(worksheet, COLS("C:F"), 10.288, NULL);
|
||||
|
||||
worksheet_add_table(worksheet, RANGE("C3:F13"), NULL);
|
||||
|
||||
worksheet_insert_image(worksheet, 0, 0, "images/red.png");
|
||||
|
||||
return workbook_close(workbook);
|
||||
}
|
24
test/functional/src/test_table30.c
Normal file
24
test/functional/src/test_table30.c
Normal file
@ -0,0 +1,24 @@
|
||||
/*****************************************************************************
|
||||
* Test cases for libxlsxwriter.
|
||||
*
|
||||
* Test to compare output against Excel files.
|
||||
*
|
||||
* Copyright 2014-2023, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include "xlsxwriter.h"
|
||||
|
||||
int main() {
|
||||
|
||||
lxw_workbook *workbook = workbook_new("test_table30.xlsx");
|
||||
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
|
||||
|
||||
worksheet_set_column(worksheet, COLS("C:F"), 10.288, NULL);
|
||||
|
||||
worksheet_add_table(worksheet, RANGE("C3:F13"), NULL);
|
||||
|
||||
worksheet_set_background(worksheet, "images/logo.jpg");
|
||||
|
||||
return workbook_close(workbook);
|
||||
}
|
@ -104,3 +104,9 @@ class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
|
||||
|
||||
def test_table26(self):
|
||||
self.run_exe_test('test_table26')
|
||||
|
||||
def test_table29(self):
|
||||
self.run_exe_test('test_table29')
|
||||
|
||||
def test_table30(self):
|
||||
self.run_exe_test('test_table30')
|
||||
|
BIN
test/functional/xlsx_files/table29.xlsx
Normal file
BIN
test/functional/xlsx_files/table29.xlsx
Normal file
Binary file not shown.
BIN
test/functional/xlsx_files/table30.xlsx
Normal file
BIN
test/functional/xlsx_files/table30.xlsx
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user