在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:JuliaImages/QRCode.jl开源软件地址:https://github.com/JuliaImages/QRCode.jl开源编程语言:Julia 100.0%开源软件介绍:QRCodeCreate QR Codes as data within Julia, or export as PNG. Create a QR Code as dataCreating a QR Code couldn't be simpler. julia> using QRCode
julia> qrcode("Hello world!")
29×29 BitArray{2}:
false false false false … false false false
false false false false false false false
⋮ ⋱
false false false false false false false
false false false false false false false The value There are two optional arguments: the error correction level (explained below) and julia> qrcode("Hello world!", High(), compact = true)
25×25 BitArray{2}:
true true true true … true true true
true false false false false false true
⋮ ⋱
true false false false false false false
true true true true false false true Export a QR Code as a PNG fileExporting files is also easy. julia> exportqrcode("Hello world!") A file will be saved at There are three optional parameters. julia> exportqrcode("Hello world!", "img/hello.png", Medium(), targetsize = 10, compact = true) This file will be saved as Error Correction LevelQR Codes and be encoded with four error correction levels
The four levels are encoded as types in Encoding ModesQR Codes can encode data using several encoding schemes.
Acknowledgments
|
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论