I have svg created in inkscape here.
The document size is in mm
. For the 2 text fields, the font size is given like this:
style="...;font-size:31.420084px;..."
So it is given in px
. Now I want the size of the font related to the document size.
But how should I convert the font-size in px
to mm
? I would need something like dpi
, but the document does not specify anything.
In your case, your viewBox matches your document dimensions:
that means all unit less values are in mm. Just specify your font-size without units (or in your case when you use css just keep your document untouched and use px).
The confusing part is, that px in svg are always user units and not device pixels, for that reason, your font-size is already given in mm... so
font-size:31.420084px
in your document is equal tofont-size:31.420084mm
in a viewBox less document (where user units equal to device pixels)Thats where it gets confusing. In the next example "1mm" is equal to 3.6 user units, but because 1 user unit equals 1mm in the real world, one svg mm equals 3.6 real mm ...
Units in SVG are a bit wired, but well defined...
The SVGLength Interface has a Method
convertToSpecifiedUnits
. you can use that to convert between different units in SVG.