我在内联显示Base64图像时遇到问题。
有人可以指出我正确的方向吗?
<!DOCTYPE html>
<html>
<head>
<title>Display Image</title>
</head>
<body>
<img style='display:block; width:100px;height:100px;' id='base64image'
src='data:image/jpeg;base64, LzlqLzRBQ...<!-- base64 data -->' />
</body>
</html>
您的数据网址似乎有一些错误。
您可以使用此在线base64编码 / base64解码工具对图像进行编码以进行嵌入:http : //base64online.org/encode/
选中“格式化为数据URL”选项以将base64数据格式化为URL。