js使用qrcode去掉白边
时间: 2024-01-31 22:03:10 浏览: 250
QRCode.js:使用 JavaScript 生成二维码
可以使用qrcode的margin参数来控制二维码的白边大小,将其设置为0即可去掉白边。以下是一个使用qrcode库生成无白边二维码的示例代码:
```javascript
const QRCode = require('qrcode')
const text = 'Hello, world!'
const options = {
margin: 0
}
QRCode.toDataURL(text, options, function (err, url) {
if (err) throw err
console.log(url)
})
```
在上面的示例中,将options对象中的margin属性设置为0即可去掉二维码的白边。
阅读全文