()
| 1036 | } |
| 1037 | |
| 1038 | ImageProcessor getProcessor() { |
| 1039 | if (defaultIP==null) { |
| 1040 | defaultIP = getImage().getProcessor(); |
| 1041 | if (globalLineWidth>0) |
| 1042 | defaultIP.setLineWidth(globalLineWidth); |
| 1043 | if (globalColor!=null) |
| 1044 | defaultIP.setColor(globalColor); |
| 1045 | else if (!Double.isNaN(globalValue)) |
| 1046 | defaultIP.setValue(globalValue); |
| 1047 | else |
| 1048 | defaultIP.setColor(Toolbar.getForegroundColor()); |
| 1049 | } |
| 1050 | return defaultIP; |
| 1051 | } |
| 1052 | |
| 1053 | int getType() { |
| 1054 | imageType = getImage().getType(); |
no test coverage detected