html - What kind of image file format does the Google Charts QR code generator use? -
if use google charts qr code generator html output looks this
<img src="https://chart.googleapis.com/chartcht=qr&chs=500x500&=hello+world&choe=utf-8">`
to me not look data uri , has no filename extension either.
what kind of image format this?
png. doesn't have .png
file extension, have image/png
mime type:
when loading image, browser receives following header:
content-type:image/png
this lets browser know it's png.
Comments
Post a Comment