Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Non-styled versions of TTF fonts are chosen and artificially styled over available styled versions #1209

Open
a-leithner opened this issue Aug 18, 2024 · 0 comments
Labels

Comments

@a-leithner
Copy link

Describe the bug

I'm observing something similiar to what #244 described: I'm registering a bunch of TTF files (Roboto) in different styles from the class path and trying to use these. However, OpenPDF seems to choose the regular (non-styled) font file and apply all necessary styles to it instead of using the styled version in the first place.

To Reproduce

Put the Roboto files (regular, italic, bold, bold-italic; downloadable from Google Fonts) onto the classpath (e.g., the resources folder when using maven) and register them like so:

// In a class file

private static final Font ROBOTO_BOLD_ITALIC;
private static final Font ROBOTO_BOLD;
private static final Font ROBOTO_ITALIC;
private static final Font ROBOTO_REGULAR;

static {
	URL robotoRegularUrl = Thread.currentThread ().getContextClassLoader ().getResource ("fonts/Roboto-Regular.ttf");
	URL robotoBoldUrl = Thread.currentThread ().getContextClassLoader ().getResource ("fonts/Roboto-Bold.ttf");
	URL robotoItalicUrl = Thread.currentThread ().getContextClassLoader ().getResource ("fonts/Roboto-Italic.ttf");
	URL robotoBoldItalicUrl = Thread.currentThread ().getContextClassLoader ().getResource ("fonts/Roboto-BoldItalic.ttf");

	// Obviously check if any of those URLs is null

	try {
		FontFactory.register (robotoBoldItalicUrl.toExternalForm (), "Roboto-BoldItalic");
		FontFactory.register (robotoItalicUrl.toExternalForm (), "Roboto-Italic");
		FontFactory.register (robotoBoldUrl.toExternalForm (), "Roboto-Bold");
		FontFactory.register (robotoRegularUrl.toExternalForm (), "Roboto");
		
		ROBOTO_BOLD_ITALIC = FontFactory.getFont ("Roboto-BoldItalic", BaseFont.IDENTITY_H, true, 10, Font.BOLDITALIC);
		ROBOTO_BOLD = FontFactory.getFont ("Roboto-Bold", BaseFont.IDENTITY_H, true, 10);
		ROBOTO_ITALIC = FontFactory.getFont ("Roboto-Italic", BaseFont.IDENTITY_H, true, 10);
		ROBOTO_REGULAR = FontFactory.getFont ("Roboto", BaseFont.IDENTITY_H, true, 10);
	} catch (Exception e) {
		e.printStackTrace ();
		throw new IllegalStateException (e);
	}
}

This will lead to all files being read. Using them like new Paragraph ("text", ROBOTO_BOLD_ITALIC); will (apparently) not use the file previously read, but rather the regular one and OpenPDF will apply all given styles to that one. This is judging by the looks of the outcome, it looks just like the PDF displayed in #244.

Curiously, if I don't specify styles at all in FontFactory.getFont, then OpenPDF will only use ROBOTO_REGULAR whenever ROBOTO_ITALIC or ROBOTO_BOLD_ITALIC should have been used. ROBOTO_BOLD works as expected though.

Expected behavior

Italic and Bold-Italic should work as expected, using the correct file supplied for them.

Screenshots

This is produced by OpenPDF:
image

This is as displayed in-browser on Google Fonts:
image

This is as displayed in LibreOffice:
image

Obviously, OpenPDF's output looks just wrong: Notice the stroke weight and inclination angle.

System

  • OS: Linux (OpenSuSE Tumbleweed)
  • Used font: Roboto
  • OpenPDF version: 2.0.1 (cannot upgrade due to this issue)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant