Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/han-ya-jun/qrcode2console

链接生成二维码输出到console或者是二维码图片输出到console
https://github.com/han-ya-jun/qrcode2console

qrcode qrcode2console

Last synced: 3 months ago
JSON representation

链接生成二维码输出到console或者是二维码图片输出到console

Awesome Lists containing this project

README

        

### qrcode2console
链接生成二维码输出到console或者是二维码图片输出到console
### 安装
```go
go get -u github.com/Han-Ya-Jun/qrcode2console
```
### 示例
```go
func TestNewQRCode2ConsoleWithUrl(t *testing.T) {
qr := NewQRCode2ConsoleWithUrl("https://hanyajun.com", true)
//qr.Debug()
qr.Output()
}

func TestNewQRCode2ConsoleWithPath(t *testing.T) {
qr := NewQRCode2ConsoleWithPath("qrcode.jpg")
//qr.Debug()
qr.Output()
}
```
### 效果
![image](case1.png)
![image](case2.png)