Re: font size used for label in Analyze particles in macro?
Posted by
Rasband, Wayne (NIH/NIMH) [E] on
Jul 07, 2011; 1:21pm
URL: http://imagej.273.s1.nabble.com/font-size-used-for-label-in-Analyze-particles-in-macro-tp3683987p3683988.html
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