如何给二维码加边框
- 编程技术
- 2025-01-25 06:15:08
- 1
给二维码添加边框可以通过以下几种方法实现: 使用在线工具2. 选择工具:比如QR Stuff、GoQR等。 使用编程语言如果你熟悉编程,可以通过以下编程语言来实现: P...
给二维码添加边框可以通过以下几种方法实现:
使用在线工具
2. 选择工具:比如QR Stuff、GoQR等。
使用编程语言
如果你熟悉编程,可以通过以下编程语言来实现:
Python
```python
import qrcode
from PIL import Image, ImageDraw
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")
添加边框
draw = ImageDraw.Draw(img)
draw.rectangle([(0, 0), (img.width, img.height)], outline="black", width=3)
img.show()
```
JavaScript
```javascript
// 引入qrcode
const QRCode = require('qrcode')
QRCode.toDataURL('https://www.example.com', { errorCorrectionLevel: 'H'
本文链接:http://xinin56.com/bian/331539.html
上一篇:红河通高铁了吗