Changeset 13545 in osm for applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/ImageModifier.java
- Timestamp:
- 2009-02-05T01:00:53+01:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/ImageModifier.java
r13497 r13545 28 28 public ImageModifier(BufferedImage bi) { 29 29 bufferedImage = bi; 30 System.out.println("cadastrewms.alterColors="+Main.pref.getBoolean("cadastrewms.alterColors")); 31 System.out.println("cadastrewms.backgroundTransparent="+Main.pref.getBoolean("cadastrewms.backgroundTransparent")); 30 32 if (Main.pref.getBoolean("cadastrewms.alterColors")) { 31 33 changeColors(); … … 47 49 int josmBackgroundColor = ColorHelper.html2color(Main.pref.get("color.background", "#FFFFFF")).getRGB(); 48 50 boolean invertGrey = (Main.pref.getBoolean("cadastrewms.invertGrey")); 51 System.out.println("cadastrewms.invertGrey="+invertGrey); 52 System.out.println("color.background="+Main.pref.get("color.background", "#FFFFFF")); 49 53 for (int x = 0; x < w; x++) { 50 54 for (int y = 0; y < h; y++) {
Note:
See TracChangeset
for help on using the changeset viewer.