2016-01-02 01:35:01 +00:00

46 lines
1.2 KiB
C

/*
* A simple example of some of the features of the libxlsxwriter library.
*
* Copyright 2014-2015, John McNamara, jmcnamara@cpan.org
*
* Logo image is from Wikimedia Commons:
*
* http://en.wikipedia.org/wiki/File:The_C_Programming_Language_logo.svg
*
*/
#include "xlsxwriter.h"
int main() {
/* Create a new workbook and add a worksheet. */
lxw_workbook *workbook = new_workbook("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);
/* Widen the first column to make the text clearer. */
worksheet_set_column(worksheet, 0, 0, 20, NULL, NULL);
/* Write some simple text. */
worksheet_write_string(worksheet, 0, 0, "Hello", NULL);
/* Text with formatting. */
worksheet_write_string(worksheet, 1, 0, "World", format);
/* Writer 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, 0, 1, "logo.png");
workbook_close(workbook);
return 0;
}