Available Fonts
The service-hosted font catalog can change independently of SDK interfaces. Use the exact font name shown below, and still verify glyph coverage for the text being introduced.
Loading available fonts...
Use a service font
- Python
- TypeScript
- Java
response = pdf.text().style(
TextStyleRequest.literal("Heading").font("Roboto-Bold").build()
)
const response = await pdf.text().style(
TextStyleRequest.literal('Heading').font('Roboto-Bold').build()
);
var response = pdf.text().style(
TextStyleRequest.literal("Heading").font("Roboto-Bold").build());
For custom TTF registration, embedded-font warnings, and using fonts in text edits, see Working with Fonts.