标签: java text rotation swt draw2d
我在SWT GUI中做了一些2D绘图。 为此,我有一个GC Object.
如何在SWT Canvas内绘制rotatet文本?
答案 0 :(得分:2)
这应该这样做:
Transform tr = new Transform(display); tr.rotate(-90); gc.setTransform(tr); gc.drawText("Text", x, y);