Skip to content

Instantly share code, notes, and snippets.

@joepreludian
Created April 7, 2013 03:39
Show Gist options
  • Save joepreludian/5328844 to your computer and use it in GitHub Desktop.
Save joepreludian/5328844 to your computer and use it in GitHub Desktop.
CodeSnippet - Java - Texto no objeto Graphics
//Pra colocar um texto
g.setColor(Color.GREEN);
//Determina a fonte e seu tamanho
Font font = new Font("Callibri", Font.PLAIN, 30);
g.setFont(font);
//Desenha o texto
g.drawString("Pedro maluco!", 25, 100);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment