Skip to content

Instantly share code, notes, and snippets.

@c-garcia
Created April 12, 2015 09:58
Show Gist options
  • Save c-garcia/d788cb277155c148e8b6 to your computer and use it in GitHub Desktop.
Save c-garcia/d788cb277155c148e8b6 to your computer and use it in GitHub Desktop.
Prints available font family names
; 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