猿问

将 numpy 数组转换为 html img 标签的 src 可读的字节串

我有一个 numpy 数组,我想通过组件src的属性显示img html它,有点像这个例子:

def get_placeholder_thumbnail_html_value():
    encoded_image = base64.b64encode(open("../assets/placeholder_thumbnail.png", 'rb').read())
    return 'data:image/png;base64,{}'.format(encoded_image.decode())

然后可以发送返回的字符串以分配给src相应img html组件的属性(我使用 plotly dash 回调来做到这一点)。

问题:在上面的例子中,我是从服务器上的 png 图像做的。我怎么能从 numpy ndarray 做同样的事情?

def get_thumbnail_html_value_from_ndarray(ndarray):
    return 'data:image/png;base64,{}'.format(<what here ?>)

它可以解析为 jpg 或其他任何格式,只要 html 可以正确解释图像。

编辑:我可以将其作为 png 文件保存在服务器上,然后使用上面的示例将其加载回来,但它似乎效率很低,所以我不喜欢这种解决方法。


慕标5832272
浏览 105回答 1
1回答

暮色呼如

我遇到了基本相同的问题,附加条件是图像格式需要为 png。这是我使用 cv2 和 base64 的解决方案:import cv2import base64def ndarray_to_b64(ndarray):&nbsp; &nbsp; """&nbsp; &nbsp; converts a np ndarray to a b64 string readable by html-img tags&nbsp;&nbsp; &nbsp; """&nbsp; &nbsp; img = cv2.cvtColor(ndarray, cv2.COLOR_RGB2BGR)&nbsp; &nbsp; _, buffer = cv2.imencode('.png', img)&nbsp; &nbsp; return base64.b64encode(buffer).decode('utf-8')
随时随地看视频慕课网APP

相关分类

Python
我要回答