diff options
author | Leo Howell <leo@lwh.jp> | 2009-09-27 16:31:03 +0900 |
---|---|---|
committer | Leo Howell <leo@lwh.jp> | 2009-09-27 16:31:03 +0900 |
commit | 559eb9633e1f97d70112f02538ae5e9a0e46f4d5 (patch) | |
tree | 78d3ce4998fc9cf60f55162c16323a415d47a57b /lpg/libqr/test.c | |
parent | 24e968c84075344de2b6b31dc054bfe988eacd04 (diff) | |
download | pdf-simple-sign-559eb9633e1f97d70112f02538ae5e9a0e46f4d5.tar.gz pdf-simple-sign-559eb9633e1f97d70112f02538ae5e9a0e46f4d5.tar.xz pdf-simple-sign-559eb9633e1f97d70112f02538ae5e9a0e46f4d5.zip |
bitmap handling routines
Diffstat (limited to 'lpg/libqr/test.c')
-rw-r--r-- | lpg/libqr/test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lpg/libqr/test.c b/lpg/libqr/test.c index f51b90b..035908b 100644 --- a/lpg/libqr/test.c +++ b/lpg/libqr/test.c @@ -38,7 +38,7 @@ int main() { char buf[80*25]; int x, y; - qr_code_render(code, buf, 8, 80, 0, 1, 0); + qr_bitmap_render(code->modules, buf, 8, 80, 0, 1, 0); for (y=0;y<21;++y) { printf("\t|"); for (x=0;x<21;++x) { |