How can I save a Google map as a SVG image?

I want to convert the image here: http://scimaps.org/maps/map/map_of_complexity_sc_154/detail to a SVG or PDF file. Using print from Firefox doesn’t work. What are my options? Answer Assuming you have permission to do so from the content owner and are not creating copyright issues for yourself or others you share it with, you can just zoom out … Read more

SVG linear gradient displayed differently by different software when x2 attribute is not present

I’ve recently imported and edited a file in Inkscape. I saved the image as “optimized SVG” in Inkscape, but when I opened the resulting file in different programs, some displayed it the same as Inkscape, while others weren’t applying a particular linear gradient (while all the other parts of the image, including gradients, were working … Read more

Why are matplotlib labels not editable in inkscape?

There is a related question here. I generate a graph using the following code: import numpy as np import matplotlib.pyplot as plt WALK_LENGTH = 1_000 random_signs = np.random.choice([-1,1], WALK_LENGTH) random_signs[0] = 0 random_walk = random_signs.cumsum() plt.plot(random_walk) plt.savefig(“random_walk.svg”) The image looks like this: I would like to change the fonts of the tick labels, but cannot. … Read more

Extract Object from multi-object svg file

So, I bought a set of beautiful web vector buttons from istockphoto. Now I have a single svg file, where all the buttons are lumped together. How can I extract the individual buttons from the file? Answer AttributionSource : Link , Question Author : steve761271 , Answer Author : Community

Can I make Figma export to SVG by default?

I frequently export objects from Figma to SVG, for use on the web. Figma defaults to PNG which obviously looks poor when zoomed in. Can I make Figma default to SVG so I don’t have to select the output format every time? Answer AttributionSource : Link , Question Author : mikemaccana , Answer Author : … Read more

Cropping SVG images on the Command Line

Is it possible to crop an svg on the command line and re-save the file? I’ve looked into rsvg-convert and thought a combination of the options (specifically zoom, width and height) could achieve the result but it doesn’t seem to do what I want. Can rsvg-convert or any other command line tool do this? Thanks … Read more

Inkscape: cloning object to other file

Is object cloning (Alt+D) between files possible in Inkscape/SVG? Answer Cloning uses the SVG <use> element, which in principle could refer to an external file. I tried modifying another <use> element to link to an external SVG file to no avail. I’ll try harder. If you need the same part of an SVG updating in … Read more