Is there a simple way to rotate text in an applet? What I am trying to achieve is instead of, say, printString printing the string from left to right, printing it from bottom to top, as if you were looking at the numbers on a football field from the end zone bleachers. Does that make sense? Is there a way I can do this without too much code besides just putting in an image of the text how I want it? Thanks…
Use a rotation transform with Graphics2D.
take a look at Java2Demo in <jdk_install_diir>/demos/jfc/Java2D, it has plenty of rotating text…