当前位置:首页 > 科技动态 > 正文

如何生成使用二维码

如何生成使用二维码

QRCode Monkey QR Stuff GoQR 使用手机应用2. 打开应用:安装后打开应用。 使用编程语言1. Python:使用`qrcode`库。 ```p...

QRCode Monkey

QR Stuff

GoQR

使用手机应用

2. 打开应用:安装后打开应用。

使用编程语言

1. Python:使用`qrcode`库。

```python

import qrcode

qr = qrcode.QRCode(

version=1,

error_correction=qrcode.constants.ERROR_CORRECT_L,

box_size=10,

border=4,

)

qr.add_data('https://www.example.com')

qr.make(fit=True)

img = qr.make_image(fill_color="black", back_color="white")

img.save("qrcode.png")

```

2. Java:使用`ZXing`库。

```java

import com.google.zxing.client.j2se.MatrixToImageWriter;

import com.google.zxing.common.BitMatrix;

import com.google.zxing.qrcode.QRCodeWriter;

QRCodeWriter qrCodeWriter = new QRCodeWriter();

BitMatrix bitMatrix = qrCodeWriter.encode("https://www.example.com", BarcodeFormat.QR_CODE, 350, 350);

File outputFile = new File("qrcode.png");

MatrixToImageWriter.writeToPath(bitMatrix, "PNG", outputFile.toPath());

```

最新文章