Converts a value in twips to a value in pixels according to a specified resolution. This is a helper method that is useful when implementing pixel-based document viewers.
public static int Twips2Pixels(int twips, float dpi)
Parameter | Description |
---|---|
twips | The value in twips to be converted. |
dpi | The resolution the conversion is based on. |
Returns the value converted to pixels according to the specified resolution.