PdfFont.timesBold constructor
PdfFont.timesBold(
- PdfDocument pdfDocument
Bold serif typeface commissioned by the British newspaper The Times
Implementation
factory PdfFont.timesBold(PdfDocument pdfDocument) {
return PdfType1Font.create(
pdfDocument,
fontName: 'Times-Bold',
ascent: 0.935,
descent: -0.218,
widths: timesBoldWidths,
fontBBox: [-168, -218, 1000, 935],
capHeight: 676,
stdHW: 44,
stdVW: 139,
);
}