feat: 首次提交
This commit is contained in:
23
components/firstui/fui-qrcode/fui-qr/lib/8BitByte.js
Normal file
23
components/firstui/fui-qrcode/fui-qr/lib/8BitByte.js
Normal file
@ -0,0 +1,23 @@
|
||||
// 本文件由FirstUI授权予新疆天衡创新研究院有限公司(手机号: 1 86 140 72 54 9,身份证尾号:5A07X5)专用,请尊重知识产权,勿私下传播,违者追究法律责任。
|
||||
import mode from './mode.js'
|
||||
|
||||
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);
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
export default QR8bitByte;
|
Reference in New Issue
Block a user