greg@freestarthu | (Je sens que je vais me prendre un )
Voilà, j'ai un petit .gif à faire, avec un txt dedans. Tout marchait bien jusqu'a ce qu'un hurluberlu ait un nom super long (ouais c'est des gif avec des noms de gens...) et paf. Bref, what solution do you preconize for gérer les retours lignes?
Merci
Citation :
Code :
- Graphics2D graphics = (Graphics2D) img.getGraphics();
- graphics.setClip(0, 0, IMAGE_SIZE_X, IMAGE_SIZE_Y);
- // fill the background with white
- graphics.setColor(Color.white);
- graphics.fillRect(0, 0, IMAGE_SIZE_X, IMAGE_SIZE_X);
- // prints title text in red
- graphics.setColor(color);
- Font f = new Font("Helvetica", Font.BOLD, 14);
- graphics.setFont(f);
- graphics.drawString(title, 10, 20);
|
|
|