Skip to main content

Questions tagged [svg-format]

Questions on the use of Mathematica to export in SVG vector graphics format.

Filter by
Sorted by
Tagged with
2 votes
0 answers
157 views

I know that in Mathematica doesn't seem to support vector graphics for 3D ploting, e.g. exporting-2d-projection-of-3d-graph-in-svg-form. But as far as I know, some paid software can achieve this. ...
licheng's user avatar
  • 2,293
7 votes
4 answers
1k views

So, I have the the Chinese character 熙, which I can easily turn into an image: img=Rasterize[Text[Style[FromCharacterCode[{29081}], FontSize -> 300]]] which ...
Romogi's user avatar
  • 687
2 votes
1 answer
861 views

I want to get the SVG format about this <table> element in this page. It looks like this: But I want to get it with a SVG ...
yode's user avatar
  • 27.8k
0 votes
0 answers
64 views

The code ExportString[Graphics@{Red,Rectangle[]},"SVG"] yields ...
Adam's user avatar
  • 4,293
6 votes
3 answers
386 views

ResourceFunction["CreateSortableUniqueID"][20] As we see, each row has 2 UUID in the current window. But when I export ...
yode's user avatar
  • 27.8k
3 votes
0 answers
108 views

Mathematica is a great tool but when it comes to layout generation is quite poorly intuitive: I would love that exporting to images and SVGs could be more friendly and compliant with graphic design ...
user305883's user avatar
4 votes
2 answers
495 views

This problem does not exist in 13.2.1 anymore I often need to export some svg with mma, but RegionPlot's diagrams will have some extra mesh after exporting SVG: ...
yode's user avatar
  • 27.8k
8 votes
1 answer
193 views

Exporting graphics to SVG in Mathematica defaults to converting all the text to outlines, at least since version 11 as far as I can tell. This is more robust for viewing on different devices, but it ...
Verbeia's user avatar
  • 34.5k
5 votes
0 answers
1k views

I am just trying to get my head around when mathematica stopped (largely 3D) exporting complex graphics as a vector image. I believe it was in one of the 11 versions. I understand there are lots of ...
Niels Walet's user avatar
10 votes
0 answers
204 views

I want to export a red square to the SVG file Export["red_square.svg", Graphics[{Red, RegularPolygon[4]}]] I noticed that in the exported SVG file, the ...
LJFan's user avatar
  • 313
3 votes
1 answer
103 views

The problem Please run this in the Cloud: ...
Kuba's user avatar
  • 139k
0 votes
0 answers
178 views

It seems that exporting cells containing nonalphanumeric characters to SVG or PDF formats doesn't work as it should in Mma 12 on Linux (Fedora 30). For example ...
vsht's user avatar
  • 3,592
19 votes
4 answers
2k views

In the document I found that SVG files can be exported, but there is no information of Import. How can I do that?
bcegkmqs23's user avatar
3 votes
0 answers
87 views

I need this command to work through the WolframKernel and it seems well beyond my understanding why it does not work above a certain amount of data size I'm passing to ...
Fortsaint's user avatar
  • 2,090
5 votes
0 answers
161 views

This recursive function definition creates a number series that I'm interested in: f[y_][x_] := f[y][x] = Mod[10 f[y][x - 1], y]; f[y_][1] = 1 When applying it ...
pgblu's user avatar
  • 249
0 votes
1 answer
842 views

pic11 = Plot3D[Sin[x + y^2], {x, -3, 3}, {y, -2, 2}];Export["ff.svg", pic11] The generated svg diagram is very vague, why is this? How to convert the map ...
Seeds's user avatar
  • 65
2 votes
0 answers
275 views

Good Day everybody, I have difficulties to save both 2D and 3D plots in vectorial format. I can get acceptable results if I save manually: righ-click on image, "Save Graphic as..." or "Print as...". ...
Sange's user avatar
  • 325
-1 votes
1 answer
205 views

On a related topics, here. I am wondering if it is possible to make a better visualisation of this svg file in Mathematica, so I can see it in 3D and rotate it too. Note if you pause your mouse onto ...
Chen Stats Yu's user avatar
6 votes
3 answers
1k views

Observe the following Mathematica Code: ...
EllipticalInitial's user avatar
8 votes
1 answer
2k views

For 3D, Mathematica does not export SVG as vector graphics, it just puts an encoded png image inside svg file. Same happens if one exports as .eps or .pdf This question does not address the problem ...
Lagrangian's user avatar
0 votes
0 answers
260 views

I used the code shown below to save the output of Show: ...
codder code's user avatar
7 votes
1 answer
846 views

I frequently include plots in my emails. The easiest and most reliable way I have found is to just capture a part of the screen using greenshot (Windows) and paste into the message. Microsoft ...
Gustavo Delfino's user avatar
2 votes
1 answer
158 views

I'm trying to export a stream plot to an SVG grapic. I make the stream plot like this: g = StreamPlot[{-x, y}, {x, -3, 3}, {y, -3, 3}] Then export it like this ...
Libby's user avatar
  • 35
4 votes
1 answer
248 views

I Export a Graphics object to SVG, but how do I control the bounding box in the resulting SVG file? Here's my code: ...
Wynne's user avatar
  • 1,566
2 votes
0 answers
185 views

Below are screenshots of the x-axis labels plots generated and exported in SVG format using exactly the same code, either "interactively" or "programmatically": interactively programmatically By "...
kjo's user avatar
  • 11.9k
4 votes
0 answers
311 views

I am trying to export a rasterized density plot with vector axes and vector graphics overlayed. E.g. ...
L Smith's user avatar
  • 41
0 votes
0 answers
104 views

In a plot, I use "/" on the axes labels to denote units. E.g. "t/s" meaning time in seconds. I believe this is pretty standard in Physics. ...
Michael's user avatar
  • 143
9 votes
1 answer
523 views

In the past, I was able to export Mathematica plots as SVG files with relative ease. However, when I tried to do this recently, I found that the text in the plot axes was rendered completely illegible,...
Pillsy's user avatar
  • 18.8k
2 votes
1 answer
797 views

Minimal working example: ...
GeckoGeorge's user avatar
5 votes
1 answer
2k views

I'm trying to export a graph as a graphic to an SVG file with transparent background. When the background is specified as a color (or unspecified), it works just fine. When the background is specified ...
Mike Pierce's user avatar
2 votes
0 answers
636 views

I am trying to do some calculation of some SVG file. After reading in with Import["filename", "XML"] and some easy operation, I can get the string of the Bézier ...
tintin's user avatar
  • 749
8 votes
1 answer
427 views

I'm trying to generate a template for exporting figures and plots in a consistent way that will allow easy editing in any vector based drawing software (such as illustrator). My problem is that ...
rhermans's user avatar
  • 37.7k
12 votes
1 answer
4k views

Suppose I have a Mathematica graphic such as g = Graphics[{Disk[{-1, 0}, 1/2], Rectangle[]}] I would like to be able to export this graphic from Mathematica as a ...
Gustavo Delfino's user avatar
12 votes
1 answer
2k views

I was thinking it would be nice if I could export Mathematica expressions as svg, but I am having some issues. At first blush everything seems to work fine. This piece of code does produce a svg file: ...
Mr Alpha's user avatar
  • 3,166
45 votes
4 answers
7k views

I have a simple interactive plot in Mathematica, with controls for various parameters. The point of the plot is simply that users can explore how the plot changes as the parameters change by ...
kjo's user avatar
  • 11.9k
6 votes
2 answers
701 views

When I use Export to export graphics in SVG format, the exported file contains no width ...
orome's user avatar
  • 12.9k
23 votes
1 answer
907 views

One major problem in my attempt to answer to the CountryData flags question is that the way Mathematica handles filled curves differs from the way SVG and EPS style editors do. The latter two have the ...
Sjoerd C. de Vries's user avatar