First time here? Check out the FAQ!

Ask Your Question
2

.svg files

asked 12 years ago

anonymous user

Anonymous

updated 10 years ago

FrédéricC gravatar image

I'm using SAGE remotely and I would like to know how to save .svg files to my computer.

Preview: (hide)

Comments

Hmm, strange - I get a hyperlink when I do a plot `P` and do `P.save('fun.pdf')` but not with `P.save('fun.svg')`. I don't expect it with `'fun.png'` but those are easy to just drag and drop. I'd like to know how to do this too!

kcrisman gravatar imagekcrisman ( 12 years ago )

1 Answer

Sort by » oldest newest most voted
1

answered 12 years ago

benjaminfjones gravatar image

I don't know why, but SVG files get injected directly into the worksheet HTML, unlike PDF or other filetypes which just get a link. Here is a workaround,

P=plot(sin(x), (x,0,pi))
fn = 'plot.svg'
P.save(DATA+fn, figsize=[2,2])
html(r'<a href="data/'+fn+r'">plot</a>')

It's not very nice, but it does the job. You can now right click on the link and download the SVG file.

Preview: (hide)
link

Comments

Oh, yeah, I should have thought of using `DATA`. Nice!

kcrisman gravatar imagekcrisman ( 12 years ago )

By the way, SVG is injected because it is a "native" html thingie, I think, like pngs. See https://github.com/sagemath/sagenb/blob/master/sagenb/notebook/cell.py#L2353 and see the whole list of file types that do different things at https://github.com/sagemath/sagenb/blob/master/sagenb/notebook/cell.py#L2342 I'm not sure exactly what the right long-term fix for this would be.

kcrisman gravatar imagekcrisman ( 12 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 780 times

Last updated: Jul 16 '12