Ignore:
Timestamp:
2009-02-05T01:00:53+01:00 (16 years ago)
Author:
pieren
Message:

Add municipality boundary import from SVG data delivered by cadastre WMS.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • applications/editors/josm/plugins/cadastre-fr/src/cadastre_fr/ImageModifier.java

    r13497 r13545  
    2828    public ImageModifier(BufferedImage bi) {
    2929        bufferedImage = bi;
     30        System.out.println("cadastrewms.alterColors="+Main.pref.getBoolean("cadastrewms.alterColors"));
     31        System.out.println("cadastrewms.backgroundTransparent="+Main.pref.getBoolean("cadastrewms.backgroundTransparent"));
    3032        if (Main.pref.getBoolean("cadastrewms.alterColors")) {
    3133            changeColors();
     
    4749        int josmBackgroundColor = ColorHelper.html2color(Main.pref.get("color.background", "#FFFFFF")).getRGB();
    4850        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"));
    4953        for (int x = 0; x < w; x++) {
    5054            for (int y = 0; y < h; y++) {
Note: See TracChangeset for help on using the changeset viewer.