Hello every one
I try to make a rotate text in j2me
I used these methods :
AffineTransform at = new AffineTransform();
at.setToRotation(Math.PI / 4.0);
g2d.setTransform(at);
g2d.drawString("Vertical text", 10, 10);
but it doesn't help,I got this error " package java.awt does not exist
import java.awt.Graphics2D;"
so can anyone tell me how can I get this package ?, or is there any other method can help me ?
please I hope someone can help me
regard

Reply With Quote

