Re: text ?
Posted by Gabriel Landini on Nov 19, 2010; 11:58am
URL: http://imagej.273.s1.nabble.com/text-tp3686395p3686397.html
On Friday 19 Nov 2010 11:58:23 you wrote:
> Quite silly question : where is the command to draw Text ?
> (using ImageJ 1.44j on linux 64-bits).
drawString("text", x, y)
Draws text at the specified location. Call setFont() to specify the font.
Call setJustification() to have the text centered or right justified. Call
getStringWidth() to get the width of the text in pixels. Refer to the TextDemo
macro for examples.
Cheers
G.