libxlsxwriter/Readme.md

84 lines
2.2 KiB
Markdown
Raw Normal View History

2014-06-26 01:15:47 +01:00
# libxlsxwriter
2014-06-08 17:40:59 +01:00
2015-12-08 23:04:30 +00:00
Libxlsxwriter: A C library for creating Excel XLSX files.
2014-06-08 17:40:59 +01:00
2014-06-26 01:15:47 +01:00
![demo image](http://libxlsxwriter.github.io/demo.png)
2014-06-08 17:40:59 +01:00
2014-06-26 01:15:47 +01:00
## The libxlsxwriter library
2017-01-14 01:01:05 +00:00
Libxlsxwriter is a C library that can be used to write text, numbers, formulas
and hyperlinks to multiple worksheets in an Excel 2007+ XLSX file.
2014-06-26 01:15:47 +01:00
It supports features such as:
2015-12-07 20:43:18 +00:00
- 100% compatible Excel XLSX files.
- Full Excel formatting.
- Merged cells.
- Defined names.
- Autofilters.
2016-05-23 23:09:03 +01:00
- Charts.
2017-09-25 00:27:24 +01:00
- Data validation and drop down lists.
- Conditional formatting.
2016-01-03 19:32:44 +00:00
- Worksheet PNG/JPEG images.
- Cell comments.
- Support for adding Macros.
2015-12-22 01:03:51 +00:00
- Memory optimization mode for writing large files.
2015-12-07 20:43:18 +00:00
- Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).
2016-07-14 23:32:25 +01:00
- FreeBSD license.
2015-12-07 20:43:18 +00:00
- ANSI C.
2017-01-11 00:11:30 +00:00
- Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32.
2016-07-14 23:32:25 +01:00
- Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin.
2016-07-03 00:58:51 +01:00
- Compiles for 32 and 64 bit.
- Compiles and works on big and little endian systems.
2015-12-07 20:43:18 +00:00
- The only dependency is on `zlib`.
2014-06-26 01:15:47 +01:00
Here is an example that was used to create the spreadsheet shown above:
```C
#include "xlsxwriter.h"
int main() {
/* Create a new workbook and add a worksheet. */
lxw_workbook *workbook = workbook_new("demo.xlsx");
2014-06-26 01:15:47 +01:00
lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);
/* Add a format. */
2015-03-07 17:23:04 +00:00
lxw_format *format = workbook_add_format(workbook);
2014-06-26 01:15:47 +01:00
/* Set the bold property for the format */
format_set_bold(format);
2016-01-05 00:38:05 +00:00
/* Change the column width for clarity. */
worksheet_set_column(worksheet, 0, 0, 20, NULL);
2014-06-26 01:15:47 +01:00
/* Write some simple text. */
worksheet_write_string(worksheet, 0, 0, "Hello", NULL);
/* Text with formatting. */
worksheet_write_string(worksheet, 1, 0, "World", format);
2018-10-08 23:15:48 +01:00
/* Write some numbers. */
2014-06-26 01:15:47 +01:00
worksheet_write_number(worksheet, 2, 0, 123, NULL);
worksheet_write_number(worksheet, 3, 0, 123.456, NULL);
2016-01-03 19:32:44 +00:00
/* Insert an image. */
worksheet_insert_image(worksheet, 1, 2, "logo.png");
2014-06-26 01:15:47 +01:00
workbook_close(workbook);
return 0;
}
```
2017-01-14 01:01:05 +00:00
See the [full documentation](http://libxlsxwriter.github.io) for the getting
started guide, a tutorial, the main API documentation and examples.