NapCatQQ/src/qrcode/vendor/QRCode/QR8bitByte.ts
2025-02-03 12:51:50 +08:00

24 lines
517 B
TypeScript

import { MODE_8BIT_BYTE } from './QRMode';
class QR8bitByte {
mode: number;
data: string;
constructor(data: string) {
this.mode = MODE_8BIT_BYTE;
this.data = data;
}
getLength(): number {
return this.data.length;
}
write(buffer: { put: (arg0: number, arg1: number) => void }): void {
for (let i = 0; i < this.data.length; i++) {
// not JIS ...
buffer.put(this.data.charCodeAt(i), 8);
}
}
}
export default QR8bitByte;