我想插入一张图片作为散景图的背景。我使用image_rgba
和image_url
解决方案将1280 * 800 png文件转换为建议here的RGBA数组,但渲染需要几分钟而.html输出会导致浏览器崩溃。
这是我的代码:
import matplotlib.image as mpimg
from bokeh.plotting import figure, show, output_file
output_file('output.html')
img = mpimg.imread('image.png')
p = figure()
p.image_rgba(image=[img], x=[0], y=[799])
show(p)
这是否有资格作为错误或我在这里遗漏了什么?