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