summaryrefslogtreecommitdiff
path: root/teleirc/matterbridge/vendor/github.com/Baozisoftware/qrcode-terminal-go/README.md
diff options
context:
space:
mode:
authorMistivia <i@mistivia.com>2025-11-02 15:27:18 +0800
committerMistivia <i@mistivia.com>2025-11-02 15:27:18 +0800
commite9c24f4af7ed56760f6db7941827d09f6db9020b (patch)
tree62128c43b883ce5e3148113350978755779bb5de /teleirc/matterbridge/vendor/github.com/Baozisoftware/qrcode-terminal-go/README.md
parent58d5e7cfda4781d8a57ec52aefd02983835c301a (diff)
add matterbridge
Diffstat (limited to 'teleirc/matterbridge/vendor/github.com/Baozisoftware/qrcode-terminal-go/README.md')
-rw-r--r--teleirc/matterbridge/vendor/github.com/Baozisoftware/qrcode-terminal-go/README.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/teleirc/matterbridge/vendor/github.com/Baozisoftware/qrcode-terminal-go/README.md b/teleirc/matterbridge/vendor/github.com/Baozisoftware/qrcode-terminal-go/README.md
new file mode 100644
index 0000000..40e850a
--- /dev/null
+++ b/teleirc/matterbridge/vendor/github.com/Baozisoftware/qrcode-terminal-go/README.md
@@ -0,0 +1,39 @@
+
+# qrcode-terminal-go
+QRCode terminal for golang.
+
+# Example
+```go
+package main
+
+import "github.com/Baozisoftware/qrcode-terminal-go"
+
+func main() {
+ Test1()
+ Test2()
+}
+
+func Test1(){
+ content := "Hello, 世界"
+ obj := qrcodeTerminal.New()
+ obj.Get(content).Print()
+}
+
+func Test2(){
+ content := "https://github.com/Baozisoftware/qrcode-terminal-go"
+ obj := qrcodeTerminal.New2(qrcodeTerminal.ConsoleColors.BrightBlue,qrcodeTerminal.ConsoleColors.BrightGreen,qrcodeTerminal.QRCodeRecoveryLevels.Low)
+ obj.Get([]byte(content)).Print()
+}
+```
+
+## Screenshots
+### Windows XP
+![winxp](https://github.com/Baozisoftware/qrcode-terminal-go/blob/master/screenshots/winxp.png)
+### Windows 7
+![win7](https://github.com/Baozisoftware/qrcode-terminal-go/blob/master/screenshots/win7.png)
+### Windows 10
+![win10](https://github.com/Baozisoftware/qrcode-terminal-go/blob/master/screenshots/win10.png)
+### Ubuntu
+![ubuntu](https://github.com/Baozisoftware/qrcode-terminal-go/blob/master/screenshots/ubuntu.png)
+### macOS
+![macos](https://github.com/Baozisoftware/qrcode-terminal-go/blob/master/screenshots/macos.png)