Hello,
I’m new here.
I have a MATLAB figure (*.fig).
Is there a way for me to save it in some way, that I could afterwards open it via my web browser? (Chrome)
Not as an image, but as “figure”. so I could have Zoom / Pan / etc…
Thank You!
Hello,
I’m new here.
I have a MATLAB figure (*.fig).
Is there a way for me to save it in some way, that I could afterwards open it via my web browser? (Chrome)
Not as an image, but as “figure”. so I could have Zoom / Pan / etc…
Thank You!
Hi @moose welcome to the forums.
This sounds a bit strange to me. You could save the figure into a *.png file and then open it with a image viewer?
Which functionality do you need exactly?
for the sake of completeness, here is how to open a *.png file and convert it into a plotly figure object:
import plotly.express as px
from PIL import Image
img = Image.open('your_file_here')
fig = px.imshow(img=img)
fig.show()
Thank you for the response.
what I need is: