1234567891011121314151617181920212223 |
- var mode = require('./mode');
- function QR8bitByte(data) {
- this.mode = mode.MODE_8BIT_BYTE;
- this.data = data;
- }
- QR8bitByte.prototype = {
- getLength : function(buffer) {
- return this.data.length;
- },
-
- write : function(buffer) {
- for (var i = 0; i < this.data.length; i++) {
- // not JIS ...
- buffer.put(this.data.charCodeAt(i), 8);
- }
- }
- };
- module.exports = QR8bitByte;
|