PdfSharp.Fonts.TrueType.TrueTypeDescriptor.DesignUnitsToPdf C# (CSharp) Method

DesignUnitsToPdf() private method

private DesignUnitsToPdf ( double value ) : int
value double
return int
    internal int DesignUnitsToPdf(double value)
    {
      return (int)Math.Round(value * 1000.0 / this.fontData.head.unitsPerEm);
    }