mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Added example of setting a watermark in Excel.
This commit is contained in:
parent
c0d12f3a5c
commit
8e358ae62b
3
.gitignore
vendored
3
.gitignore
vendored
@ -38,8 +38,7 @@ docs/latex
|
||||
_temp.c
|
||||
examples/*
|
||||
!examples/*.c
|
||||
!examples/logo.png
|
||||
!examples/logo_small.png
|
||||
!examples/*.png
|
||||
!examples/Makefile
|
||||
!examples/vbaProject.bin
|
||||
cov-int
|
||||
|
@ -42,6 +42,7 @@ my @examples = (
|
||||
[ 'defined_name.c', 'Example of how to create defined names' ],
|
||||
[ 'outline.c', 'Example of grouping and outlines' ],
|
||||
[ 'outline_collapsed.c', 'Example of grouping and collapsed outlines' ],
|
||||
[ 'watermark.c', 'Example of how to set a watermark image for a worksheet' ],
|
||||
[ 'background.c', 'Example of how to set the background image for a worksheet' ],
|
||||
[ 'tab_colors.c', 'Example of how to set worksheet tab colors' ],
|
||||
[ 'diagonal_border.c', 'Example of how to set a worksheet cell diagonal border.' ],
|
||||
|
BIN
docs/images/worksheet_watermark.png
Normal file
BIN
docs/images/worksheet_watermark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 102 KiB |
@ -509,7 +509,7 @@ Example of how to generate Excel outlines and grouping.
|
||||
<table width="600">
|
||||
<tr>
|
||||
<td>@ref outline.c "<< outline.c"</td>
|
||||
<td align="right">@ref background.c "background.c >>"</td>
|
||||
<td align="right">@ref watermark.c "watermark.c >>"</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
@ -521,11 +521,29 @@ mainly on collapsed outlines.
|
||||
|
||||
|
||||
|
||||
@example background.c
|
||||
@example watermark.c
|
||||
|
||||
<table width="600">
|
||||
<tr>
|
||||
<td>@ref outline_collapsed.c "<< outline_collapsed.c"</td>
|
||||
<td align="right">@ref background.c "background.c >>"</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
Example of how to a watermark image for a worksheet using the method suggested
|
||||
in the Microsoft documentation:
|
||||
https://support.microsoft.com/en-us/office/add-a-watermark-in-excel-a372182a-d733-484e-825c-18ddf3edf009
|
||||
|
||||
@image html worksheet_watermark.png
|
||||
|
||||
|
||||
|
||||
|
||||
@example background.c
|
||||
|
||||
<table width="600">
|
||||
<tr>
|
||||
<td>@ref watermark.c "<< watermark.c"</td>
|
||||
<td align="right">@ref tab_colors.c "tab_colors.c >>"</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -239,6 +239,15 @@ mainly on collapsed outlines.
|
||||
|
||||
@image html outline2.png
|
||||
|
||||
##############################################################
|
||||
@example watermark.c
|
||||
|
||||
Example of how to a watermark image for a worksheet using the method suggested
|
||||
in the Microsoft documentation:
|
||||
https://support.microsoft.com/en-us/office/add-a-watermark-in-excel-a372182a-d733-484e-825c-18ddf3edf009
|
||||
|
||||
@image html worksheet_watermark.png
|
||||
|
||||
##############################################################
|
||||
@example background.c
|
||||
|
||||
|
26
examples/watermark.c
Normal file
26
examples/watermark.c
Normal file
@ -0,0 +1,26 @@
|
||||
/*
|
||||
* An example of adding a worksheet watermark image using libxlsxwriter. This
|
||||
* is based on the method of putting an image in the worksheet header as
|
||||
* suggested in the Microsoft documentation:
|
||||
* https://support.microsoft.com/en-us/office/add-a-watermark-in-excel-a372182a-d733-484e-825c-18ddf3edf009
|
||||
*
|
||||
* Copyright 2014-2021, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include "xlsxwriter.h"
|
||||
|
||||
int main() {
|
||||
|
||||
lxw_workbook *workbook = workbook_new("watermark.xlsx");
|
||||
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
|
||||
|
||||
|
||||
/* Set a worksheet header with the watermark image. */
|
||||
lxw_header_footer_options header_options = {.image_center = "watermark.png"};
|
||||
worksheet_set_header_opt(worksheet, "&C&[Picture]", &header_options);
|
||||
|
||||
workbook_close(workbook);
|
||||
|
||||
return 0;
|
||||
}
|
BIN
examples/watermark.png
Normal file
BIN
examples/watermark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 321 KiB |
BIN
test/functional/src/images/watermark.png
Normal file
BIN
test/functional/src/images/watermark.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 321 KiB |
22
test/functional/src/test_header_image20.c
Normal file
22
test/functional/src/test_header_image20.c
Normal file
@ -0,0 +1,22 @@
|
||||
/*****************************************************************************
|
||||
* Test cases for libxlsxwriter.
|
||||
*
|
||||
* Test to compare output against Excel files.
|
||||
*
|
||||
* Copyright 2014-2022, John McNamara, jmcnamara@cpan.org
|
||||
*
|
||||
*/
|
||||
|
||||
#include "xlsxwriter.h"
|
||||
|
||||
int main() {
|
||||
|
||||
lxw_workbook *workbook = workbook_new("test_header_image20.xlsx");
|
||||
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
|
||||
|
||||
lxw_header_footer_options header_options = {.image_center = "images/watermark.png"};
|
||||
|
||||
worksheet_set_header_opt(worksheet, "&C&G", &header_options);
|
||||
|
||||
return workbook_close(workbook);
|
||||
}
|
@ -100,6 +100,10 @@ class TestCompareXLSXFiles(base_test_class.XLSXBaseTest):
|
||||
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<pageMargins', '<pageSetup']}
|
||||
self.run_exe_test('test_header_image19')
|
||||
|
||||
def test_header_image20(self):
|
||||
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<pageMargins', '<pageSetup']}
|
||||
self.run_exe_test('test_header_image20')
|
||||
|
||||
# Test format strings with &[Picture] instead of &G.
|
||||
def test_header_image51(self):
|
||||
self.ignore_elements = {'xl/worksheets/sheet1.xml': ['<pageMargins', '<pageSetup']}
|
||||
|
BIN
test/functional/xlsx_files/header_image20.xlsx
Normal file
BIN
test/functional/xlsx_files/header_image20.xlsx
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user