Skip to main content
How are we doing? Please help us improve Stack Overflow. Take our short survey
Filter by
Sorted by
Tagged with
1 vote
1 answer
148 views

The code is: package ssl; import javax.swing.*; import java.awt.*; public class WebDingsPhontGlyph extends JFrame { public WebDingsPhontGlyph() { setTitle("WebDings Phone Glyph&...
Eljah's user avatar
  • 5,473
1 vote
0 answers
190 views

I am trying to read all glyphs the font has available, in my case 547. Here's what I've done so far: private static String getCharacters(Font font) { final int glyphs = font.getNumGlyphs();...
DasBabyPixel's user avatar
2 votes
2 answers
230 views

Is it possible to create a custom font with a .ttf file that is inside a .jar file? I've created a jar file with the following structure Game.jar ├──Snake │ ├── lib │ | └── game_over.ttf | ├...
André Clérigo's user avatar
3 votes
2 answers
1k views

This question is about recovering glyph font information in Java and it is related to a question posted here. For more details please check the question and answers. It was suggested there to use ...
Jack London's user avatar
15 votes
3 answers
6k views

I updated my spring-boot application to use buildpacks to create my docker-image instead of a dockerfile. I also use Apache POI in my application and since that update I get an error when generating ...
Pieter Van der Haegen's user avatar
0 votes
1 answer
48 views

As a part of learning Java GUI Programming with javax.swing I intend to save contents of a JTextPane with Font information. Is there a way to do so?
Devansh Shah's user avatar
0 votes
1 answer
218 views

public static void main(String[] args) { Font arial = Font.getFont(ImmutableMap.of(TextAttribute.FAMILY, "Arial")); System.out.println(arial); } Having this little program, when executing it ...
bubbles's user avatar
  • 2,727