Skip to content

Commit 4d60f5b

Browse files
authored
Update static-image-export.md
Added Documentation for Installing Orca on Google Colab.
1 parent a8a952d commit 4d60f5b

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

doc/python/static-image-export.md

+25
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,31 @@ fig.write_image("images/fig1.eps")
157157

158158
**Note:** It is important to note that any figures containing WebGL traces (i.e. of type `scattergl`, `heatmapgl`, `contourgl`, `scatter3d`, `surface`, `mesh3d`, `scatterpolargl`, `cone`, `streamtube`, `splom`, or `parcoords`) that are exported in a vector format will include encapsulated rasters, instead of vectors, for some parts of the image.
159159

160+
### Install orca on Google Colab
161+
```
162+
!pip install plotly>=4.7.1
163+
!wget https://github.com/plotly/orca/releases/download/v1.2.1/orca-1.2.1-x86_64.AppImage -O /usr/local/bin/orca
164+
!chmod +x /usr/local/bin/orca
165+
!apt-get install xvfb libgtk2.0-0 libgconf-2-4
166+
```
167+
168+
Once this is done you can use this code to make, show and export a figure:
169+
170+
```python
171+
import plotly.graph_objects as go
172+
fig = go.Figure( go.Scatter(x=[1,2,3], y=[1,3,2] ) )
173+
fig.show()
174+
fig.write_image("fig1.svg")
175+
fig.write_image("fig1.png")
176+
```
177+
178+
The files can then be downloaded with:
179+
180+
```python
181+
from google.colab import files
182+
files.download('fig1.svg')
183+
files.download('fig1.png')
184+
```
160185

161186
### Get Image as Bytes
162187
The `plotly.io.to_image` function is used to return an image as a bytes object. You can also use the `.to_image` graph object figure method.

0 commit comments

Comments
 (0)