Yes.roelandsch wrote:It should still be possible to load those files with higher resolution than the default.
There are many ways of specifying size within SVG: pixels, inches or user-units, either as width and height, or viewbox, or both. I don't fully understand the relationship between these methods.
I have seen cases where some rasterisers (eg in web browsers) don't function correctly when some formal declarations are not made in the SVG. So, rather than starting with...
Code: Select all
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg width="100" height="100">
Code: Select all
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<svg width="100" height="100"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
For me, with IM v6.9.5-3 it does scale, whether the work is done by MSVG, RSVG v2.40.15 or Inkscape v0.91.
There may be a bug in later versions of IM.