I am generating the qr image using the below code.
url="https://www.google.com"
img = qrcode.make(url)
img.save("displayQrInvite.png")
return render_template('invite.html')
Below is the html template file.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>My App</title>
</head>
<body>
<h1>Scan below qr code image</h1>
<img src="/displayQrInvite.png"/>
</body>
</html>
Somehow the image is not visible on any of the browsers chrome,edge.c