I need to convert <font size="10"> to px.
Example only(not correct): <font size="10"> is equivalent to 12px.
Is there any formula or table conversion out there to convert <font size="10"> to px?
|
|
|||||||||||||||
|
|
According to W3:
Hence, the conversion you're asking for is not possible. The browser is not required to use specific sizes with specific Also note that use of the |
|||
|
|
Using the data points from the accepted answer you can use polynomial interpolation to obtain a formula. WolframAlpha Input: interpolating polynomial {{1,.63},{2,.82}, {3,1}, {4,1.13}, {5,1.5}, {6, 2}, {7,3}} Formula: 0.00223611x^6 - 0.0530417x^5 + 0.496319x^4 - 2.30479x^3 + 5.51644x^2 - 6.16717x + 3.14 And use in Groovy code:
import java.math.*
def convert = {x -> (0.00223611*x**6 - 0.053042*x**5 + 0.49632*x**4 - 2.30479*x**3 + 5.5164*x**2 - 6.167*x + 3.14).setScale(2, RoundingMode.HALF_UP) }
(1..7).each { i -> println(convert(i)) }
|
||||
|
|
|
In general you cannot rely on a fixed pixel size for fonts, the user may be scaling the screen and the defaults are not always the same (depends on DPI settings of the screen etc.). Maybe have a look at this (pixel to point) and this link. But of course you can set the font size to px, so that you do know how many pixels the font actually is. This may help if you really need a fixed layout, but this practice reduces accessibility of your web site. |
|||
|
|
|
This cannot be answered that easily. It depends on the font used and the points per inch (ppi). This should give an overview of the problem. |
||||
|
|