鸿蒙开发中带图片的二维码如何生成 ?生成QR类型二维码参数不支持增加图标。如果当前没有接口,是否可推动增加?
let content: string = 123456789';
this.QRPixelMap = undefined;
let options: generateBarcode.CreateOptions = {
scanType: scanCore.ScanType.QR_CODE,
width: 200,
height: 200
}
// 码图生成接口,成功返回PixelMap格式图片
generateBarcode.createBarcode(content, options).then((pixelMap: image.PixelMap) => {
this.QRPixelMap = pixelMap;
}).catch((error: BusinessError) => {
hilog.error(0x0001, "[generateBarcode]", "promise error : %{public}s", JSON.stringify(error));
})
你可以通过stack布局,将image组件放在qrcode组件上实现,Image的叠加不会影响QRCode的识别。
本文参与了 【 HarmonyOS NEXT 技术问答冲榜,等你来战!】欢迎正在阅读的你也加入。