A C library for creating Excel XLSX files.
Find a file
John McNamara 87df446d49 Added support for cell comments in constant_memory mode.
Added support for cell comments in constant_memory mode
and also refactored the internal data structure for
handling comments.

Issue #38
2020-01-11 09:02:07 +00:00
.github Added sponsorhip details. 2019-10-30 09:12:13 +00:00
cmake Remove FindZLIB.cmake 2019-06-07 00:08:31 +01:00
cocoapods Prep for release 0.9.0. 2019-12-26 18:59:41 +00:00
dev/release Added advanced cell comments sample code. 2020-01-09 21:25:48 +00:00
docs Added advanced cell comments sample code. 2020-01-09 21:25:48 +00:00
examples Added advanced cell comments sample code. 2020-01-09 21:25:48 +00:00
include Added support for cell comments in constant_memory mode. 2020-01-11 09:02:07 +00:00
lib Initial commit 2014-06-08 17:40:59 +01:00
src Added support for cell comments in constant_memory mode. 2020-01-11 09:02:07 +00:00
test Added support for cell comments in constant_memory mode. 2020-01-11 09:02:07 +00:00
third_party Renamed MD5 functions and struct to avoid conflict with openssl. 2020-01-07 23:45:34 +00:00
.gitignore Added cmake test to Travis CI build. 2019-12-26 17:13:43 +00:00
.indent.pro Added support for cell comments and options. 2020-01-07 23:27:04 +00:00
.travis.yml Added cmake test to Travis CI build. 2019-12-26 17:13:43 +00:00
Changes.txt Prep for release 0.9.1. 2019-12-27 11:40:12 +00:00
CMakeLists.txt Addition of Openwall MD5 library. 2019-12-24 00:27:41 +00:00
CONTRIBUTING.md Add docs for lxw_version(). 2018-09-01 20:26:34 +01:00
libxlsxwriter.podspec Prep for release 0.9.1. 2019-12-27 11:40:12 +00:00
License.txt Prep for release 0.9.0. 2019-12-26 18:59:41 +00:00
Makefile Use DESTDIR and PREFIX instead of INSTALL_LOCATION 2019-12-27 12:58:19 +00:00
Readme.md Add docs and an example for add_vba_project. 2019-06-19 00:21:04 +01:00

libxlsxwriter

Libxlsxwriter: A C library for creating Excel XLSX files.

demo image

The libxlsxwriter library

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.

It supports features such as:

  • 100% compatible Excel XLSX files.
  • Full Excel formatting.
  • Merged cells.
  • Defined names.
  • Autofilters.
  • Charts.
  • Data validation and drop down lists.
  • Worksheet PNG/JPEG images.
  • Support for adding Macros.
  • Memory optimization mode for writing large files.
  • Source code available on GitHub.
  • FreeBSD license.
  • ANSI C.
  • Works with GCC, Clang, Xcode, MSVC 2015, ICC, TCC, MinGW, MingGW-w64/32.
  • Works on Linux, FreeBSD, OpenBSD, OS X, iOS and Windows. Also works on MSYS/MSYS2 and Cygwin.
  • Compiles for 32 and 64 bit.
  • Compiles and works on big and little endian systems.
  • The only dependency is on zlib.

Here is an example that was used to create the spreadsheet shown above:

#include "xlsxwriter.h"

int main() {

    /* Create a new workbook and add a worksheet. */
    lxw_workbook  *workbook  = workbook_new("demo.xlsx");
    lxw_worksheet *worksheet = workbook_add_worksheet(workbook, NULL);

    /* Add a format. */
    lxw_format *format = workbook_add_format(workbook);

    /* Set the bold property for the format */
    format_set_bold(format);

    /* Change the column width for clarity. */
    worksheet_set_column(worksheet, 0, 0, 20, NULL);

    /* Write some simple text. */
    worksheet_write_string(worksheet, 0, 0, "Hello", NULL);

    /* Text with formatting. */
    worksheet_write_string(worksheet, 1, 0, "World", format);

    /* Write some numbers. */
    worksheet_write_number(worksheet, 2, 0, 123,     NULL);
    worksheet_write_number(worksheet, 3, 0, 123.456, NULL);

    /* Insert an image. */
    worksheet_insert_image(worksheet, 1, 2, "logo.png");

    workbook_close(workbook);

    return 0;
}

See the full documentation for the getting started guide, a tutorial, the main API documentation and examples.