Created
April 12, 2015 09:58
-
-
Save c-garcia/d788cb277155c148e8b6 to your computer and use it in GitHub Desktop.
Prints available font family names
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
; from the REPL | |
(import java.awt.GraphicsEnvironment) | |
(doseq [fnt (.. (GraphicsEnvironment/getLocalGraphicsEnvironment) getAvailableFontFamilyNames)] | |
(println fnt)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment