-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfilters.json
More file actions
124 lines (124 loc) · 4.22 KB
/
filters.json
File metadata and controls
124 lines (124 loc) · 4.22 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"version": 1,
"filters": [
{
"id": "fractal_swirl",
"name": "Fractal Swirl",
"script_path": "ImageMagick/scripts/fractal_swirl.bash",
"category": "fractal",
"tags": ["plasma", "swirl", "abstract"],
"parameters": [
{"name": "size", "type": "int", "min": 32, "max": 4096, "default": 512, "step": 32},
{"name": "output_dir", "type": "path", "default": "./out"},
{"name": "file_name", "type": "str", "default": "image"}
],
"output": {
"extension": "png",
"mode": "single",
"preview_safe_limits": {"max_size": 1024}
}
},
{
"id": "fractal_plasma",
"name": "Fractal Plasma",
"script_path": "ImageMagick/scripts/fractal_plasma.bash",
"category": "fractal",
"tags": ["plasma", "color", "abstract"],
"parameters": [
{"name": "size", "type": "int", "min": 32, "max": 4096, "default": 512, "step": 32},
{"name": "output_dir", "type": "path", "default": "./out"},
{"name": "file_name", "type": "str", "default": "image"}
],
"output": {
"extension": "png",
"mode": "single",
"preview_safe_limits": {"max_size": 1024}
}
},
{
"id": "fractal_filaments",
"name": "Fractal Filaments",
"script_path": "ImageMagick/scripts/fractal_filaments.bash",
"category": "fractal",
"tags": ["plasma", "mono", "filament"],
"parameters": [
{"name": "size", "type": "int", "min": 32, "max": 4096, "default": 512, "step": 32},
{"name": "output_dir", "type": "path", "default": "./out"},
{"name": "file_name", "type": "str", "default": "image"}
],
"output": {
"extension": "png",
"mode": "single",
"preview_safe_limits": {"max_size": 1024}
}
},
{
"id": "fractal_colour_contours",
"name": "Fractal Colour Contours",
"script_path": "ImageMagick/scripts/fractal_colour_contours.bash",
"category": "fractal",
"tags": ["contours", "edge", "abstract"],
"parameters": [
{"name": "size", "type": "int", "min": 32, "max": 4096, "default": 512, "step": 32},
{"name": "output_dir", "type": "path", "default": "./out"},
{"name": "file_name", "type": "str", "default": "image"}
],
"output": {
"extension": "png",
"mode": "single",
"preview_safe_limits": {"max_size": 1024}
}
},
{
"id": "fractal_colour_contours_256",
"name": "Fractal Colour Contours 256",
"script_path": "ImageMagick/scripts/fractal_colour_contours-256.bash",
"category": "fractal",
"tags": ["contours", "edge", "high-blur"],
"parameters": [
{"name": "size", "type": "int", "min": 32, "max": 4096, "default": 512, "step": 32},
{"name": "output_dir", "type": "path", "default": "./out"},
{"name": "file_name", "type": "str", "default": "image"}
],
"output": {
"extension": "png",
"mode": "single",
"preview_safe_limits": {"max_size": 1024}
}
},
{
"id": "noise_paint_areas",
"name": "Noise Paint Areas",
"script_path": "ImageMagick/scripts/noise_paint_areas.bash",
"category": "noise",
"tags": ["noise", "paint", "texture"],
"parameters": [
{"name": "size", "type": "int", "min": 32, "max": 4096, "default": 512, "step": 32},
{"name": "output_dir", "type": "path", "default": "./out"},
{"name": "file_name", "type": "str", "default": "image"}
],
"output": {
"extension": "png",
"mode": "single",
"preview_safe_limits": {"max_size": 1024}
}
},
{
"id": "hextile_lines",
"name": "Hextile Lines",
"script_path": "ImageMagick/scripts/hextile_lines.bash",
"category": "tile",
"tags": ["hex", "tile", "pattern"],
"parameters": [
{"name": "size", "type": "int", "min": 32, "max": 2048, "default": 512, "step": 32},
{"name": "output_dir", "type": "path", "default": "./out"},
{"name": "file_name", "type": "str", "default": "image"}
],
"output": {
"extension": "png",
"mode": "single",
"preview_safe_limits": {"max_size": 768}
}
}
]
}