metrics property
PdfFontMetrics
get
metrics
Implementation
PdfFontMetrics get metrics {
final coef = 1.0 / height;
return PdfFontMetrics(
bottom: horiBearingY * coef,
left: horiBearingX * coef,
top: horiBearingY * coef - height * coef,
right: horiAdvance * coef,
ascent: ascent * coef,
descent: horiBearingY * coef,
advanceWidth: horiAdvance * coef,
leftBearing: horiBearingX * coef,
);
}