2018-08-08 20:57:24 +00:00
|
|
|
using Gdk;
|
|
|
|
|
|
|
|
[CCode (cheader_filename = "qrencode.h")]
|
|
|
|
namespace Qrencode {
|
|
|
|
|
2018-08-09 14:19:02 +00:00
|
|
|
[CCode (cname = "QRecLevel", cprefix = "QR_ECLEVEL_")]
|
|
|
|
public enum ECLevel {
|
|
|
|
L,
|
|
|
|
M,
|
|
|
|
Q,
|
|
|
|
H
|
|
|
|
}
|
2018-08-08 20:57:24 +00:00
|
|
|
|
2018-08-09 14:19:02 +00:00
|
|
|
[CCode (cname = "QRencodeMode", cprefix = "QR_MODE_")]
|
|
|
|
public enum EncodeMode {
|
2018-08-08 20:57:24 +00:00
|
|
|
NUL,
|
2018-08-09 14:19:02 +00:00
|
|
|
NUM,
|
|
|
|
AN,
|
|
|
|
[CCode (cname = "QR_MODE_8")]
|
|
|
|
EIGHT_BIT,
|
|
|
|
KANJI,
|
|
|
|
STRUCTURE,
|
2018-08-08 20:57:24 +00:00
|
|
|
ECI,
|
|
|
|
FNC1FIRST,
|
|
|
|
FNC1SECOND
|
2018-08-09 14:19:02 +00:00
|
|
|
}
|
2018-08-08 20:57:24 +00:00
|
|
|
|
2018-08-09 14:19:02 +00:00
|
|
|
[CCode (cname = "QRcode", free_function = "QRcode_free", has_type_id = false)]
|
|
|
|
[Compact]
|
|
|
|
public class QRcode {
|
|
|
|
private int version;
|
|
|
|
private int width;
|
|
|
|
[CCode (array_length = false)]
|
|
|
|
private uint8[] data;
|
2018-08-08 20:57:24 +00:00
|
|
|
|
2018-08-09 14:19:02 +00:00
|
|
|
[CCode (cname = "QRcode_encodeString")]
|
|
|
|
public QRcode (string str, int version = 0, ECLevel level = ECLevel.L, EncodeMode hint = EncodeMode.EIGHT_BIT, bool casesensitive = true);
|
2018-08-08 20:57:24 +00:00
|
|
|
|
|
|
|
public Pixbuf to_pixbuf() {
|
|
|
|
uint8[] bitmap = new uint8[3*width*width];
|
|
|
|
for (int i = 0; i < width*width; i++) {
|
|
|
|
uint8 color = (data[i] & 1) == 1 ? 0 : 255;
|
|
|
|
bitmap[i*3] = color;
|
|
|
|
bitmap[i*3+1] = color;
|
|
|
|
bitmap[i*3+2] = color;
|
|
|
|
}
|
|
|
|
return new Pixbuf.from_data(bitmap, Colorspace.RGB, false, 8, width, width, width*3);
|
|
|
|
}
|
2018-08-09 14:19:02 +00:00
|
|
|
}
|
2018-08-08 20:57:24 +00:00
|
|
|
}
|