(String basePath, String[] paths, int width, int height)
| 727 | } |
| 728 | |
| 729 | private static CustomColormap getCustomColors(String basePath, String[] paths, int width, int height) |
| 730 | { |
| 731 | for (int i = 0; i < paths.length; ++i) |
| 732 | { |
| 733 | String s = paths[i]; |
| 734 | s = basePath + s; |
| 735 | CustomColormap customcolormap = getCustomColors(s, width, height); |
| 736 | |
| 737 | if (customcolormap != null) |
| 738 | { |
| 739 | return customcolormap; |
| 740 | } |
| 741 | } |
| 742 | |
| 743 | return null; |
| 744 | } |
| 745 | |
| 746 | public static CustomColormap getCustomColors(String pathImage, int width, int height) |
| 747 | { |
no test coverage detected