Creates a TextRoi using the defaultFont.
(int x, int y, String text)
| 48 | |
| 49 | /** Creates a TextRoi using the defaultFont.*/ |
| 50 | public TextRoi(int x, int y, String text) { |
| 51 | this(x, y, text, defaultFont); |
| 52 | } |
| 53 | |
| 54 | /** Use this constructor as a drop-in replacement for ImageProcessor.drawString(). */ |
| 55 | public TextRoi(String text, double x, double y, Font font) { |
nothing calls this directly
no test coverage detected