font size used for label in Analyze particles in macro?

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

font size used for label in Analyze particles in macro?

Bill Christens-Barry
Is it possible to specify the font size used to label particles in Analyze Particles? Can this be done by macro command? I'm using ImageJ 1.45k. I didn't see anything in search or at http://rsbweb.nih.gov/ij/docs/menus/analyze.html - have I missed description of such an option?

Thanks.

Bill Christens-Barry
Reply | Threaded
Open this post in threaded view
|

Re: font size used for label in Analyze particles in macro?

Rasband, Wayne (NIH/NIMH) [E]
On Jul 6, 2011, at 1:59 PM, Bill Christens-Barry wrote:

> Is it possible to specify the font size used to label particles in Analyze Particles? Can this be done by macro command? I'm using ImageJ 1.45k. I didn't see anything in search or at http://rsbweb.nih.gov/ij/docs/menus/analyze.html - have I missed description of such an option?

In the 1.45l daily build you can set the particle analyzer font size in a macro using

     call("ij.plugin.filter.ParticleAnalyzer.setFontSize", size);

and in a script or plugin using

    ParticleAnalyzer.setFontSize(size);

-wayne