Changes between Version 8 and Version 9 of ImageFilters/BrightnessContrast
- Timestamp:
- 2015-07-31T19:48:28+02:00 (10 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ImageFilters/BrightnessContrast
v8 v9 5 5 6 6 {{{ 7 {"a":"b"} 7 { 8 "classname":"org.openstreetmap.josm.plugins.rasterfilters.filters.ContrastFilterImpl", 9 "binaries":["plugins/JOSM-filters.jar"], 10 "name":"contrast", 11 "title": "Contrast / Brightness", 12 "controls": [ 13 { 14 "type": "linear_slider", 15 "name": "contrast", 16 "title": "Contrast", 17 "value_type": "float", 18 "scale": [0, 4], 19 "default": 1, 20 "decoration": "none" 21 }, 22 { 23 "type": "linear_slider", 24 "name": "brightness", 25 "title": "Brightness", 26 "value_type": "float", 27 "scale": [0, 4], 28 "default": 1, 29 "decoration": "none" 30 }, 31 { 32 "type": "colorpicker", 33 "name": "colorpicker", 34 "title": "Choose a color", 35 "value_type": "color", 36 "decoration": "none" 37 } 38 ] 39 } 8 40 }}}