PdfFont.times constructor
PdfFont.times(
- PdfDocument pdfDocument
Serif typeface commissioned by the British newspaper The Times
Implementation
factory PdfFont.times(PdfDocument pdfDocument) {
return PdfType1Font.create(
pdfDocument,
fontName: 'Times-Roman',
ascent: 0.898,
descent: -0.218,
widths: timesWidths,
fontBBox: [-168, -218, 1000, 898],
capHeight: 662,
stdHW: 28,
stdVW: 84,
);
}