aboutsummaryrefslogtreecommitdiff
path: root/lpg/libqr/qr/bitmap.h
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2025-01-10 15:58:57 +0100
committerPřemysl Eric Janouch <p@janouch.name>2025-01-10 16:02:45 +0100
commit9319d14566e5d1bfec617c479b8543a9ee3ad4ea (patch)
treeb0130ae9e5ac2932c88ff99b83c83d23126d91bc /lpg/libqr/qr/bitmap.h
parent147b8805247ca23fb96e51694f78439ab24f93a2 (diff)
parentab64314222aca47dd7e52eca2d54d2fad0a58f6c (diff)
downloadpdf-simple-sign-9319d14566e5d1bfec617c479b8543a9ee3ad4ea.tar.gz
pdf-simple-sign-9319d14566e5d1bfec617c479b8543a9ee3ad4ea.tar.xz
pdf-simple-sign-9319d14566e5d1bfec617c479b8543a9ee3ad4ea.zip
Merge remote-tracking branch 'libqr/master'
Diffstat (limited to 'lpg/libqr/qr/bitmap.h')
-rw-r--r--lpg/libqr/qr/bitmap.h37
1 files changed, 37 insertions, 0 deletions
diff --git a/lpg/libqr/qr/bitmap.h b/lpg/libqr/qr/bitmap.h
new file mode 100644
index 0000000..098d9c3
--- /dev/null
+++ b/lpg/libqr/qr/bitmap.h
@@ -0,0 +1,37 @@
+#ifndef QR_BITMAP_H
+#define QR_BITMAP_H
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+struct qr_bitmap {
+ unsigned char * bits;
+ unsigned char * mask;
+ size_t stride;
+ size_t width, height;
+};
+
+struct qr_bitmap * qr_bitmap_create(size_t width, size_t height, int masked);
+void qr_bitmap_destroy(struct qr_bitmap *);
+
+int qr_bitmap_add_mask(struct qr_bitmap *);
+
+struct qr_bitmap * qr_bitmap_clone(const struct qr_bitmap *);
+
+void qr_bitmap_merge(struct qr_bitmap * dest, const struct qr_bitmap * src);
+
+void qr_bitmap_render(const struct qr_bitmap * bmp,
+ void * buffer,
+ int mod_bits,
+ long line_stride,
+ int line_repeat,
+ unsigned long mark,
+ unsigned long space);
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif
+