diff options
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -36,6 +36,8 @@ main(int argc, char **argv) font = font_find(argv[1]); text = text_new(argv[2]); + text_set_width(text, 80); + text_set_height(text, 25); image = image_new("test.png"); image_render(image, text, font); text_destroy(&text); |