Hi, I want to generate several plotly figures and then stitch them together using PIL (because plotly subplots works with traces but not whole figures). Is there a way how to hand the figure to PIL without having to export as png and read again? Currently PIL does not read plotly figures. Of course I donโt need any interactivity, PIL should see the figure just as a png.
import plotly.express as px
from PIL import Image
figure = px.line([4,5])
Image.open(figure)