|
- /*
- * text canvas text import/export
- * Copyright (c) 2006 Sam Hocevar <sam@zoy.org>
- * All Rights Reserved
- *
- * $Id$
- *
- * This program is free software. It comes without any warranty, to
- * the extent permitted by applicable law. You can redistribute it
- * and/or modify it under the terms of the Do What The Fuck You Want
- * To Public License, Version 2, as published by Sam Hocevar. See
- * http://sam.zoy.org/wtfpl/COPYING for more details.
- */
-
- #include "config.h"
- #include "common.h"
- #if !defined(__KERNEL__)
- # if defined(HAVE_INTTYPES_H)
- # include <inttypes.h>
- # endif
- # include <stdio.h>
- # include <string.h>
- # include <stdlib.h>
- #endif
- #include "cucul.h"
-
- #define STRING \
- " _,----._ \n" \
- " (/ @ @ \\) \n" \
- " | OO | \n" \
- " \\ `--' / \n" \
- " `----' \n" \
- "Hello world!\n"
-
- int main(int argc, char *argv[])
- {
- cucul_canvas_t *cv, *pig;
- void *buffer;
- unsigned long int len;
-
- pig = cucul_create_canvas(0, 0);
- cucul_import_memory(pig, STRING, strlen(STRING), "text");
-
- cv = cucul_create_canvas(cucul_get_canvas_width(pig) * 2,
- cucul_get_canvas_height(pig) * 2);
-
- cucul_blit(cv, 0, 0, pig, NULL);
- cucul_flip(pig);
- cucul_blit(cv, cucul_get_canvas_width(pig), 0, pig, NULL);
- cucul_flip(pig);
- cucul_flop(pig);
- cucul_blit(cv, 0, cucul_get_canvas_height(pig), pig, NULL);
- cucul_flop(pig);
- cucul_rotate(pig);
- cucul_blit(cv, cucul_get_canvas_width(pig),
- cucul_get_canvas_height(pig), pig, NULL);
-
- buffer = cucul_export_memory(cv, "utf8", &len);
- fwrite(buffer, len, 1, stdout);
- free(buffer);
-
- cucul_free_canvas(pig);
- cucul_free_canvas(cv);
-
- return 0;
- }
|