forked from c-koi/zart
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpresets.xml
More file actions
5404 lines (5070 loc) · 308 KB
/
presets.xml
File metadata and controls
5404 lines (5070 loc) · 308 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" ?>
<document name="Presets">
<!-- ***********************************
About
************************************ -->
<preset_group name="About" >
<!-- /About/About G'MIC -->
<preset name="About G'MIC">
<command>
_none_
</command>
<note text="<center>is proposed to you by</center>" />
<link name="( IMAGE Team / GREYC Laboratory - CNRS UMR 6072 )" url="https://www.greyc.fr/?page_id=443&lang=en" align="center" />
<note text="
<br/>
This plug-in is based on our open-source libraries <b>G'MIC</b> and<br/>
<b>CImg</b> (C++ Template Image Processing Library),<br/>
available at:" />
<note text="
<br/>
If you appreciate <b>G'MIC</b>, you are welcome to send us a nice postcard from your place, at:
<br/>
<small><tt>David Tschumperl&#233;,
Laboratoire GREYC (CNRS UMR 6072), Equipe Image,
<br/>
6 Bd du Mar&#233;chal Juin,
14050 Caen Cedex / France.</tt></small>" />
</preset>
<!-- /About/Contributors -->
<preset name="Contributors">
<command>
_none_
</command>
<note text="<br/>
We would like to thank all these people who contributed to <b>G'MIC</b> in one way or another.<br/>
A big hug to :
<br/>
<b> -</b> <i>Sylvie Alexandre</i> <small>(packaging, testing &amp; filters)</small><br/>
<b> -</b> <i>Partha Bagchi</i> <small>(packaging)</small><br/>
<b> -</b> <i>Daniel P. Berrang&#233;</i> <small>(packaging)</small><br/>
<b> -</b> <i>S&#233;bastien Bougleux</i> <small>(debugging)</small><br/>
<b> -</b> <i>J&#233;rome Boulanger</i> <small>(testing &amp; code)</small><br/>
<b> -</b> <i>Claude Bulin</i> <small>(packaging)</small><br/>
<b> -</b> <i>Aur&#233;lien Ceyden</i> <small>(packaging)</small><br/>
<b> -</b> <i>Fran&#231;ois Collard</i> <small>(testing)</small><br/>
<b> -</b> <i>Patrick David</i> <small>(testing &amp; filters)</small><br/>
<b> -</b> <i>Maxime Daisy</i> <small>(code &amp; testing)</small><br/>
<b> -</b> <i>Fr&#233;d&#233;ric Devernay</i> <small>(code)</small><br/>
<b> -</b> <i>Iain Fergusson</i> <small>(filters)</small><br/>
<b> -</b> <i>Tobias Fleischer</i> <small>(testing &amp; code)</small><br/>
<b> -</b> <i>Roberto Ferramosca</i> <small>(packaging)</small><br/>
<b> -</b> <i>J&#233;rome Ferrari</i> <small>(testing, code &amp; tutorials)</small><br/>
<b> -</b> <i>Andrea Ferrero</i> <small>(testing, code)</small><br/>
<b> -</b> <i>Chris Fiedler</i> <small>(gfx)</small><br/>
<b> -</b> <i>S&#233;bastien Fourey</i> <small>(G'MIC-Qt, ZArt code &amp; G'MIC online)</small><br/>
<b> -</b> <i>Gentlemanbeggar</i> <small>(filters)</small><br/>
<b> -</b> <i>David Gowers</i> <small>(testing)</small><br/>
<b> -</b> <i>Claes Holmerson</i> <small>(tutorials)</small><br/>
<b> -</b> <i>Arto Huotari</i> <small>(filters)</small><br/>
<b> -</b> <i>Dan Leinir Turthra Jensen</i> <small>(debugging)</small><br/>
<b> -</b> <i>Tom Keil</i> <small>(testing, filters &amp; tutorials)</small><br/>
<b> -</b> <i>Andy Kelday</i> <small>(testing &amp; filters)</small><br/>
<b> -</b> <i>Alan Kwan</i> (afre) <small>(testing &amp; filters)</small><br/>
<b> -</b> <i>Angelo Lama</i> <small>(testing &amp; EKD integration)</small><br/>
<b> -</b> <i>John Lakkas</i> <small>(filters)</small><br/>
<b> -</b> <i>St&#233;phane de la Linuxerie</i> <small>(design)</small><br/>
<b> -</b> <i>Mark</i> <small>(translation)</small><br/>
<b> -</b> <i>Mahvin</i> <small>(testing &amp; design)</small><br/>
<b> -</b> <i>MareroQ</i> <small>(translation)</small><br/>
<b> -</b> <i>Ramon Miranda</i> <small>(translation)</small><br/>
<b> -</b> <i>Tou Omiya</i> <small>(translation)</small><br/>
<b> -</b> <i>Mauro Quercia</i> <small>(translation)</small><br/>
<b> -</b> <i>PhotoComiX</i> <small>(testing, translation &amp; filters)</small><br/>
<b> -</b> <i>Garry Osgood</i> <small>(documentation &amp; filters)</small><br/>
<b> -</b> <i>Jehan Pages</i> <small>(testing &amp; code)</small><br/>
<b> -</b> <i>Andreas P&#229;hlsson</i> <small>(filters)</small><br/>
<b> -</b> <i>James Prichard</i> <small>(testing &amp; filters)</small><br/>
<b> -</b> <i>Guilherme Razgriz</i> <small>(translation)</small><br/>
<b> -</b> <i>Karsten Rodenacker</i> <small>(packaging &amp; code)</small><br/>
<b> -</b> <i>Marc Roovers</i> <small>(clut data)</small><br/>
<b> -</b> <i>Dani Sard&#224;</i> <small>(translation)</small><br/>
<b> -</b> <i>Yuri Shemanin</i> <small>(debugging)</small><br/>
<b> -</b> <i>Silvio Grosso</i> <small>(debugging)</small><br/>
<b> -</b> <i>Stepanekos</i> <small>(translation)</small><br/>
<b> -</b> <i>Thorsten "otto" Stettin</i> <small>(packaging)</small><br/>
<b> -</b> <i>Lukas Tvrdy</i> <small>(Krita integration)</small><br/>
<b> -</b> <i>Martin Wolff</i> <small>(testing &amp; filters)</small><br/>
<b> -</b> <i>Bernd Zeimetz</i> <small>(packaging)</small><br/>
<b> -</b> <i>Matthias Zepper</i> <small>(testing)</small><br/>
<b> -</b>" />
</preset>
<!-- /About/Gmicky - Roddy -->
<preset name="Gmicky - Roddy">
<command>
-fx_gmicky_preview $"*"
</command>
<choice name="Mascot Image" default="0" choice0="Gmicky (by Deevad)" choice1="Gmicky (by Mahvin)" choice2="Gmicky &amp; Wilber (by Mahvin)" choice3="Roddy (by Mahvin)" />
<separator />
<note text="<b><i>Gmicky</i></b> is the name of the <b>G'MIC</b> mascot.<br/>
He is a small and cute tiger who knows how to do magic.<br/>
<b><i>Gmicky</i></b> is a tiger, i.e. fast, agile and elegant, just as the <b>G'MIC</b> code is :).<br/>
As many magicians, <b><i>Gmicky</i></b> knows lot of <b>gimmicks</b>,<br/>
and he is a direct and friendly companion of<br/>
the ImageMagick's wizard, or the GraphicMagick's frog." />
<note text="<b><i>Roddy</i></b> is another mascot designed specifically for the<br/>
<i>Artistic / Rodilius</i> filter of <b>G'MIC</b>.
" />
<note text="<b><i>Gmicky</i></b> and <b><i>Roddy</i></b> have been both created and drawn by " />
<link name="Mahvelous Mahvin" url="http://www.mahvin.com/" align="center" />
<note text="and" />
<link name="David Revoy (Deevad)" url="http://www.davidrevoy.com/" align="center" />
</preset>
<!-- /About/Release Notes -->
<preset name="Release Notes">
<command>
_none_
</command>
<note text="<br/>
- <b>2009/01/13</b> : version <i>1.3.0</i> (initial plug-in release).
<br/>
- <b>2010/09/03</b> : version <i>1.4.0</i>.
<br/>
- <b>2011/07/07</b> : version <i>1.5.0</i>.
<br/>
- <b>2014/08/20</b> : version <i>1.6.0</i>.
<br/>
- <b>2016/03/25</b> : version <i>1.7.0</i>.
<br/>
- <b>2017/05/29</b> : version <i>2.0.0</i>.
<br/>
- <b>2017/10/09</b> : version <i>2.1.0</i>.
<br/>
- <b>2018/02/15</b> : version <i>2.2.0</i>.
<br/>
- <b>2018/06/21</b> : version <i>2.3.0</i>.
<br/>
- <b>2018/10/04</b> : version <i>2.4.0</i>.
<br/>
- <b>2019/03/15</b> : version <i>2.5.0</i>.
<br/>
- <b>2019/04/29</b> : version <i>2.6.0</i>.
<br/>
- <b>2019/08/14</b> : version <i>2.7.0</i>.
<br/>
- <span foreground="purple"><b>2019/10/10</b> : version <i>2.7.4</i> (Current stable).</span>
<br/>
" />
<separator />
<link name="View latest minor changelog (2.7)" url="https://discuss.pixls.us/t/release-of-gmic-2-7" align="center" />
<link name="View latest major changelog (2.0)" url="https://discuss.pixls.us/t/release-of-gmic-2-0-0" align="center" />
</preset>
</preset_group>
<!-- ***********************************
Arrays & Tiles
************************************ -->
<preset_group name="Arrays & Tiles" >
<!-- /Arrays & Tiles/Array [Faded] -->
<preset name="Array [Faded]">
<command>
-fx_array_fade_preview $"*"
</command>
<int name="X-Tiles" default="2" min="1" max="10" />
<int name="Y-Tiles" default="2" min="1" max="10" />
<float name="X-Offset (%)" default="0" min="0" max="100" />
<float name="Y-Offset (%)" default="0" min="0" max="100" />
<float name="Fade Start (%)" default="80" min="1" max="100" />
<float name="Fade End (%)" default="90" min="1" max="100" />
<choice name="Mirror" default="0" choice0="None" choice1="X-Axis" choice2="Y-Axis" choice3="XY-Axes" />
<choice name="Size" default="0" choice0="Shrink" choice1="Expand" choice2="Repeat [Memory Consuming!]" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Array [Mirrored] -->
<preset name="Array [Mirrored]">
<command>
-fx_array_mirror_preview $"*"
</command>
<int name="Iterations" default="1" min="1" max="10" />
<float name="X-Offset (%)" default="0" min="0" max="100" />
<float name="Y-Offset (%)" default="0" min="0" max="100" />
<choice name="Array Mode" default="2" choice0="X-Axis" choice1="Y-Axis" choice2="XY-Axes" choice3="2XY-Axes" />
<choice name="Initialization" default="0" choice0="Original" choice1="Mirror X" choice2="Mirror Y" choice3="Rotate 90 deg." choice4="Rotate 180 deg." choice5="Rotate 270 deg." />
<bool name="Expand Size" default="0" />
<int name="Crop (%)" default="0" min="0" max="100" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Array [Random] -->
<preset name="Array [Random]">
<command>
-array_random $"*"
</command>
<int name="Source X-Tiles" default="5" min="1" max="20" />
<int name="Source Y-Tiles" default="5" min="1" max="20" />
<int name="Destination X-Tiles" default="7" min="1" max="20" />
<int name="Destination Y-Tiles" default="7" min="1" max="20" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Array [Random Colors] -->
<preset name="Array [Random Colors]">
<command>
-fx_array_color $"*"
</command>
<int name="X-Tiles" default="5" min="1" max="20" />
<int name="Y-Tiles" default="5" min="1" max="20" />
<float name="Opacity" default="0.5" min="0" max="1" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Array [Regular] -->
<preset name="Array [Regular]">
<command>
-fx_array_preview $"*"
</command>
<int name="X-Tiles" default="2" min="1" max="10" />
<int name="Y-Tiles" default="2" min="1" max="10" />
<float name="X-Offset (%)" default="0" min="0" max="100" />
<float name="Y-Offset (%)" default="0" min="0" max="100" />
<choice name="Mirror" default="0" choice0="None" choice1="X-Axis" choice2="Y-Axis" choice3="XY-Axes" />
<choice name="Size" default="0" choice0="Shrink" choice1="Expand" choice2="Repeat [Memory Consuming!]" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Chessboard -->
<preset name="Chessboard">
<command>
-fx_chessboard_preview $"*"
</command>
<int name="First Size" default="64" min="1" max="512" />
<int name="Second Size" default="64" min="1" max="512" />
<int name="First Offset" default="0" min="0" max="512" />
<int name="Second Offset" default="0" min="0" max="512" />
<float name="Angle" default="0" min="0" max="180" />
<float name="Opacity" default="0.5" min="0" max="1" />
<color name="First Color" default="0,0,0,255" />
<color name="Second Color" default="255,255,255,255" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Dices -->
<preset name="Dices">
<command>
-fx_dices $"*"
</command>
<float name="Resolution" default="2" min="1" max="10" />
<int name="Size" default="24" min="8" max="64" />
<choice name="Color Model" default="1" choice0="Black Dices" choice1="White Dices" choice2="Dices with Colored Numbers" choice3="Dices with Colored Sides" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2013/27/06</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Grid [Cartesian] -->
<preset name="Grid [Cartesian]">
<command>
-fx_imagegrid $"*"
</command>
<int name="X-Size" default="10" min="2" max="100" />
<int name="Y-Size" default="10" min="2" max="100" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Grid [Hexagonal] -->
<preset name="Grid [Hexagonal]">
<command>
-fx_imagegrid_hexagonal $"*"
</command>
<int name="Resolution" default="32" min="1" max="128" />
<float name="Outline" default="0.1" min="0" max="0.5" />
<bool name="Anti-Aliasing" default="1" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2015/12/01</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Grid [Triangular] -->
<preset name="Grid [Triangular]">
<command>
-fx_imagegrid_triangular $"*"
</command>
<int name="Pattern Width" default="10" min="8" max="128" />
<int name="Pattern Height" default="18" min="8" max="128" />
<choice name="Pattern Type" default="0" choice0="Horizontal" choice1="Vertical" choice2="Crossed" choice3="Cube" choice4="Decreasing" choice5="Increasing" />
<color name="Outline Color" default="255,255,255,128" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2015/08/07</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Ministeck -->
<preset name="Ministeck">
<command>
-fx_ministeck_preview $"*"
</command>
<int name="Number of Colors" default="8" min="2" max="24" />
<int name="Resolution (px)" default="64" min="16" max="256" />
<int name="Piece Size (px)" default="8" min="1" max="64" />
<int name="Piece Complexity" default="2" min="1" max="10" />
<float name="Relief Amplitude" default="100" min="0" max="256" />
<float name="Relief Size" default="0.3" min="0" max="1" />
<bool name="Add 1px Outline" default="0" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2015/14/01</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Puzzle -->
<preset name="Puzzle">
<command>
-fx_puzzle_preview $"*"
</command>
<note text="<small><b>Pattern parameters:</b></small>" />
<int name="X-Tiles" default="5" min="2" max="32" />
<int name="Y-Tiles" default="5" min="2" max="32" />
<float name="Curvature" default="0.5" min="0" max="1.5" />
<float name="Connectors Centering" default="0" min="0" max="1" />
<float name="Connectors Variability" default="0" min="0" max="2" />
<separator />
<note text="<small><b>Blending parameters:</b></small>" />
<float name="Relief Smoothness" default="0.3" min="0" max="3" />
<float name="Relief Contrast" default="100" min="0" max="255" />
<float name="Outline Smoothness" default="0.2" min="0" max="3" />
<float name="Outline Contrast" default="255" min="0" max="255" />
<separator />
<note text="<small><b>Recomposition parameters:</b></small>" />
<float name="Scale" default="100" min="0" max="150" />
<float name="Scale Variations" default="0" min="0" max="100" />
<float name="Angle" default="0" min="-180" max="180" />
<float name="Angle Variations" default="0" min="0" max="180" />
<bool name="Shuffle Pieces" default="0" />
<bool name="Additional Outline" default="0" />
<bool name="Output Each Piece on a Different Layer" default="0" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2014/06/01</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Taquin -->
<preset name="Taquin">
<command>
-fx_taquin $"*"
</command>
<int name="X-Tiles" default="7" min="1" max="20" />
<int name="Y-Tiles" default="7" min="1" max="20" />
<choice name="Remove Tile" default="0" choice0="None" choice1="First" choice2="Last" choice3="Random" />
<separator />
<float name="Relief" default="50" min="0" max="255" />
<float name="Border Thickness (%)" default="5" min="0" max="100" />
<int name="Border Outline" default="0" min="0" max="16" />
<color name="Ouline Color" default="0,0,0,255" />
<separator />
<int name="Random Seed" default="0" min="0" max="65535" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2014/13/01</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Tiled Rotation -->
<preset name="Tiled Rotation">
<command>
-fx_rotate_tiles $"*"
</command>
<int name="X-Tiles" default="5" min="1" max="80" />
<int name="Y-Tiles" default="5" min="1" max="80" />
<float name="Angle" default="15" min="0" max="360" />
<float name="X-Shadow" default="3" min="-20" max="20" />
<float name="Y-Shadow" default="3" min="-20" max="20" />
<float name="Smoothness" default="1.8" min="0" max="5" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Tiled Normalization -->
<preset name="Tiled Normalization">
<command>
-fx_normalize_tiles $"*"
</command>
<int name="X-Tiles" default="25" min="1" max="80" />
<int name="Y-Tiles" default="25" min="1" max="80" />
<float name="Minimal Value" default="0" min="0" max="255" />
<float name="Maximal Value" default="255" min="0" max="255" />
<separator />
<choice name="Channel(s)" default="11" choice0="All" choice1="RGBA [All]" choice2="RGB [All]" choice3="RGB [Red]" choice4="RGB [Green]" choice5="RGB [Blue]" choice6="RGBA [Alpha]" choice7="Linear RGB [All]" choice8="Linear RGB [Red]" choice9="Linear RGB [Green]" choice10="Linear RGB [Blue]" choice11="YCbCr [Luminance]" choice12="YCbCr [Blue-Red Chrominances]" choice13="YCbCr [Blue Chrominance]" choice14="YCbCr [Red Chrominance]" choice15="YCbCr [Green Chrominance]" choice16="Lab [Lightness]" choice17="Lab [ab-Chrominances]" choice18="Lab [a-Chrominance]" choice19="Lab [b-Chrominance]" choice20="Lch [ch-Chrominances]" choice21="Lch [c-Chrominance]" choice22="Lch [h-Chrominance]" choice23="HSV [Hue]" choice24="HSV [Saturation]" choice25="HSV [Value]" choice26="HSI [Intensity]" choice27="HSL [Lightness]" choice28="CMYK [Cyan]" choice29="CMYK [Magenta]" choice30="CMYK [Yellow]" choice31="CMYK [Key]" choice32="YIQ [Luma]" choice33="YIQ [Chromas]" choice34="RYB [All]" choice35="RYB [Red]" choice36="RYB [Yellow]" choice37="RYB [Blue]" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Tiled Random Shifts -->
<preset name="Tiled Random Shifts">
<command>
-fx_shift_tiles $"*"
</command>
<int name="X-Tiles" default="10" min="1" max="30" />
<int name="Y-Tiles" default="10" min="1" max="30" />
<float name="Amplitude" default="10" min="0" max="100" />
<float name="Opacity" default="1" min="0" max="1" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Tiled Parameterization -->
<preset name="Tiled Parameterization">
<command>
-fx_parameterize_tiles $"*"
</command>
<int name="X-Tiles" default="10" min="1" max="30" />
<int name="Y-Tiles" default="10" min="1" max="30" />
<choice name="Fitting Function" default="0" choice0="Linear" choice1="Quadratic" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Arrays & Tiles/Tiled Isolation -->
<preset name="Tiled Isolation">
<command>
-fx_isolate_tiles $"*"
</command>
<float name="X-Size" default="10" min="0" max="100" />
<float name="Y-Size" default="10" min="0" max="100" />
<float name="X-Border" default="5" min="0" max="100" />
<float name="Y-Border" default="5" min="0" max="100" />
<bool name="Keep Tiles Square" default="1" />
<bool name="Keep Borders Square" default="1" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2011/13/04</i>.</small>" />
</preset>
</preset_group>
<!-- ***********************************
Artistic
************************************ -->
<preset_group name="Artistic" >
<!-- /Artistic/Bokeh -->
<preset name="Bokeh">
<command>
-fx_bokeh_preview $"*"
</command>
<int name="Number of Scales" default="3" min="1" max="10" />
<choice name="Shape" default="8" choice0="Triangle" choice1="Square" choice2="Diamond" choice3="Pentagon" choice4="Hexagon" choice5="Octogon" choice6="Decagon" choice7="Star" choice8="Circular" />
<int name="Random Seed" default="0" min="0" max="65535" />
<separator />
<note text="<small><b>Starting parameters:</b></small>" />
<int name="Density" default="30" min="1" max="256" />
<float name="Radius (%)" default="8" min="0" max="50" />
<float name="Outline (%)" default="4" min="0" max="100" />
<float name="Inner Shade" default="0.3" min="0" max="1" />
<float name="Smoothness" default="0.2" min="0" max="8" />
<color name="Color" default="210,210,80,160" />
<float name="Color Dispersion" default="0.7" min="0" max="1" />
<separator />
<note text="<small><b>Ending parameters:</b></small>" />
<int name="Density" default="30" min="1" max="256" />
<float name="Radius (%)" default="20" min="0" max="50" />
<float name="Outline (%)" default="20" min="0" max="100" />
<float name="Inner Shade" default="1" min="0" max="1" />
<float name="Smoothness" default="2" min="0" max="8" />
<color name="Color" default="170,130,20,110" />
<float name="Color Dispersion" default="0.15" min="0" max="1" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2015/02/07</i>.</small>" />
</preset>
<!-- /Artistic/Cartoon -->
<preset name="Cartoon">
<command>
-fx_cartoon_preview $"*"
</command>
<float name="Smoothness" default="3" min="0" max="10" />
<float name="Sharpening" default="200" min="0" max="400" />
<float name="Edge Threshold" default="20" min="1" max="30" />
<float name="Edge Thickness" default="0.25" min="0" max="1" />
<float name="Color Strength" default="1.5" min="0" max="3" />
<int name="Color Quantization" default="8" min="2" max="256" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Artistic/Cubism -->
<preset name="Cubism">
<command>
-fx_cubism_preview $"*"
</command>
<int name="Iterations" default="2" min="0" max="10" />
<float name="Density" default="50" min="0" max="200" />
<float name="Thickness" default="10" min="0" max="50" />
<float name="Angle" default="90" min="0" max="360" />
<float name="Opacity" default="0.7" min="0.01" max="1" />
<float name="Smoothness" default="0" min="0" max="5" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2013/05/06</i>.</small>" />
</preset>
<!-- /Artistic/Cutout -->
<preset name="Cutout">
<command>
-fx_cutout_preview $"*"
</command>
<int name="Number of Levels" default="4" min="2" max="32" />
<float name="Edge Simplicity" default="0.5" min="0" max="3" />
<int name="Edge Fidelity" default="4" min="0" max="10" />
<bool name="Normalize" default="1" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Authors: <i>David Tschumperl&#233;</i> and <i>Garagecoder</i><br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Latest Update: <i>2014/03/06</i>.</small>" />
</preset>
<!-- /Artistic/Diffusion Tensors -->
<preset name="Diffusion Tensors">
<command>
-fx_diffusiontensors_preview $"*"
</command>
<float name="Resolution (%)" default="10" min="0" max="20" />
<float name="Size" default="5" min="0" max="16" />
<choice name="Color Mode" default="3" choice0="Monochrome" choice1="Grayscale" choice2="Orientation" choice3="Color" />
<int name="Outline" default="1" min="0" max="16" />
<separator />
<float name="Sharpness" default="0.15" min="0" max="1" />
<float name="Anisotropy" default="1" min="0" max="1" />
<float name="Gradient Smoothness" default="0" min="0" max="10" />
<float name="Tensor Smoothness" default="3" min="0" max="10" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2016/19/10</i>.</small>" />
</preset>
<!-- /Artistic/Ellipsionism -->
<preset name="Ellipsionism">
<command>
-fx_ellipsionism_preview $"*"
</command>
<float name="Primary Radius" default="20" min="1" max="100" />
<float name="Secondary Radius" default="10" min="1" max="100" />
<float name="Smoothness" default="0.5" min="0" max="10" />
<float name="Opacity" default="0.7" min="0" max="1" />
<float name="Outline" default="3" min="1" max="3" />
<float name="Density" default="0.5" min="0.1" max="2" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Artistic/Felt Pen -->
<preset name="Felt Pen">
<command>
-fx_feltpen_preview $"*"
</command>
<float name="Amplitude" default="300" min="0" max="4000" />
<float name="Density" default="50" min="0" max="100" />
<float name="Smoothness" default="1" min="0" max="10" />
<float name="Opacity" default="0.1" min="0" max="1" />
<float name="Edge" default="20" min="0" max="100" />
<int name="Thickness" default="5" min="2" max="32" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2012/25/10</i>.</small>" />
</preset>
<!-- /Artistic/Hard Sketch -->
<preset name="Hard Sketch">
<command>
-fx_hardsketchbw_preview $"*"
</command>
<float name="Amplitude" default="300" min="0" max="4000" />
<float name="Density" default="50" min="0" max="100" />
<float name="Smoothness" default="1" min="0" max="10" />
<float name="Opacity" default="0.1" min="0" max="1" />
<float name="Edge" default="20" min="0" max="100" />
<bool name="Fast Approximation" default="0" />
<choice name="Color Model" default="4" choice0="Black on white" choice1="White on black" choice2="Black on transparent white" choice3="White on transparent black" choice4="Color on white" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Artistic/Hope Poster -->
<preset name="Hope Poster">
<command>
-fx_poster_hope_preview $"*"
</command>
<float name="Gamma" default="0" min="-3" max="3" />
<float name="Smoothness" default="3" min="0" max="20" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2013/07/11</i>.</small>" />
</preset>
<!-- /Artistic/Hough Sketch -->
<preset name="Hough Sketch">
<command>
-fx_houghsketchbw_preview $"*"
</command>
<float name="Smoothness" default="1.25" min="0" max="10" />
<float name="Density" default="10" min="0" max="70" />
<int name="Radius" default="5" min="0" max="30" />
<float name="Threshold" default="80" min="0" max="100" />
<float name="Opacity" default="0.1" min="0" max="1" />
<choice name="Color Model" default="4" choice0="Black on white" choice1="White on black" choice2="Black on transparent white" choice3="White on transparent black" choice4="Color on white" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2011/18/05</i>.</small>" />
</preset>
<!-- /Artistic/Kuwahara -->
<preset name="Kuwahara">
<command>
-fx_kuwahara_preview $"*"
</command>
<int name="Iterations" default="2" min="1" max="20" />
<int name="Radius" default="5" min="1" max="30" />
<separator />
<choice name="Channel(s)" default="0" choice0="All" choice1="RGBA [All]" choice2="RGB [All]" choice3="RGB [Red]" choice4="RGB [Green]" choice5="RGB [Blue]" choice6="RGBA [Alpha]" choice7="Linear RGB [All]" choice8="Linear RGB [Red]" choice9="Linear RGB [Green]" choice10="Linear RGB [Blue]" choice11="YCbCr [Luminance]" choice12="YCbCr [Blue-Red Chrominances]" choice13="YCbCr [Blue Chrominance]" choice14="YCbCr [Red Chrominance]" choice15="YCbCr [Green Chrominance]" choice16="Lab [Lightness]" choice17="Lab [ab-Chrominances]" choice18="Lab [a-Chrominance]" choice19="Lab [b-Chrominance]" choice20="Lch [ch-Chrominances]" choice21="Lch [c-Chrominance]" choice22="Lch [h-Chrominance]" choice23="HSV [Hue]" choice24="HSV [Saturation]" choice25="HSV [Value]" choice26="HSI [Intensity]" choice27="HSL [Lightness]" choice28="CMYK [Cyan]" choice29="CMYK [Magenta]" choice30="CMYK [Yellow]" choice31="CMYK [Key]" choice32="YIQ [Luma]" choice33="YIQ [Chromas]" choice34="RYB [All]" choice35="RYB [Red]" choice36="RYB [Yellow]" choice37="RYB [Blue]" />
<choice name="Value Action" default="0" choice0="None" choice1="Cut" choice2="Normalize" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2011/31/05</i>.</small>" />
</preset>
<!-- /Artistic/Lylejk's Painting -->
<preset name="Lylejk's Painting">
<command>
-fx_lylejk_painting_preview $"*"
</command>
<int name="Iterations" default="10" min="1" max="20" />
<int name="Abstraction" default="2" min="1" max="20" />
<int name="Radius" default="4" min="1" max="30" />
<float name="Canvas" default="10" min="0" max="100" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Authors: <i>Lyle Kroll</i> and <i>David Tschumperl&#233;</i>.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Latest Update: <i>2015/23/02</i>.</small>" />
<link name="Filter Explained here" url="http://www.gimpchat.com/viewtopic.php?f=10&t=2624" align="center" />
</preset>
<!-- /Artistic/Painting -->
<preset name="Painting">
<command>
-fx_painting_preview $"*"
</command>
<int name="Abstraction" default="5" min="1" max="10" />
<float name="Details Scale" default="2.5" min="0" max="5" />
<float name="Color" default="1.5" min="0" max="4" />
<float name="Smoothness" default="50" min="0" max="1000" />
<bool name="Sharpen Shades" default="1" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Authors: <i>Lyle Kroll</i>, <i>Angelo Lama</i> and <i>David Tschumperl&#233;</i>.<br/>
Latest Update: <i>2011/28/02</i>.</small>" />
</preset>
<!-- /Artistic/Pen Drawing -->
<preset name="Pen Drawing">
<command>
-fx_pen_drawing_preview $"*"
</command>
<float name="Amplitude" default="10" min="0" max="30" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Artistic/Polygonize [Delaunay] -->
<preset name="Polygonize [Delaunay]">
<command>
-fx_polygonize_delaunay_preview $"*"
</command>
<float name="Density (%)" default="40" min="0" max="100" />
<float name="Edges" default="5" min="0" max="100" />
<float name="Boundaries (%)" default="75" min="0" max="100" />
<float name="Smoothness" default="0.5" min="0" max="8" />
<choice name="Filling" default="3" choice0="Black" choice1="White" choice2="Random" choice3="Average" choice4="Linear" />
<float name="Outline (%)" default="50" min="0" max="100" />
<color name="Outline Color" default="0,0,0,255" />
<bool name="Anti-Aliasing" default="1" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2018/06/05</i>.</small>" />
</preset>
<!-- /Artistic/Poster Edges -->
<preset name="Poster Edges">
<command>
-fx_poster_edges_preview $"*"
</command>
<float name="Image Smoothness" default="20" min="0" max="100" />
<float name="Edge Threshold" default="60" min="0" max="100" />
<float name="Edge Shade" default="5" min="0" max="30" />
<float name="Edge Thickness" default="0" min="0" max="5" />
<float name="Edge Antialiasing" default="10" min="0" max="100" />
<int name="Posterization Level" default="0" min="0" max="15" />
<float name="Posterization Antialiasing" default="0" min="0" max="100" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<separator />
<note text="<small>Authors: <i>David Tschumperl&#233;</i> and <i>David Revoy</i>.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Latest Update: <i>2012/30/11</i>.</small>" />
</preset>
<!-- /Artistic/Posterize -->
<preset name="Posterize">
<command>
-fx_posterize_preview $"*"
</command>
<float name="Smoothness" default="150" min="0" max="800" />
<float name="Edges (%)" default="30" min="0" max="100" />
<float name="Paint" default="1" min="0" max="10" />
<int name="Colors" default="12" min="2" max="32" />
<int name="Minimal Area" default="0" min="0" max="64" />
<float name="Outline (%)" default="0" min="0" max="100" />
<bool name="Normalize Colors" default="0" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2016/25/10</i>.</small>" />
</preset>
<!-- /Artistic/Rodilius -->
<preset name="Rodilius">
<command>
-fx_rodilius_preview $"*"
</command>
<float name="Amplitude" default="10" min="0" max="30" />
<float name="Thickness" default="10" min="0" max="100" />
<float name="Sharpness" default="300" min="0" max="1000" />
<int name="Orientations" default="5" min="2" max="36" />
<float name="Offset" default="30" min="0" max="180" />
<int name="Smoothness" default="0" min="0" max="5" />
<choice name="Color Mode" default="1" choice0="Darker" choice1="Lighter" />
<separator />
<choice name="Channel(s)" default="0" choice0="All" choice1="RGBA [All]" choice2="RGB [All]" choice3="RGB [Red]" choice4="RGB [Green]" choice5="RGB [Blue]" choice6="RGBA [Alpha]" choice7="Linear RGB [All]" choice8="Linear RGB [Red]" choice9="Linear RGB [Green]" choice10="Linear RGB [Blue]" choice11="YCbCr [Luminance]" choice12="YCbCr [Blue-Red Chrominances]" choice13="YCbCr [Blue Chrominance]" choice14="YCbCr [Red Chrominance]" choice15="YCbCr [Green Chrominance]" choice16="Lab [Lightness]" choice17="Lab [ab-Chrominances]" choice18="Lab [a-Chrominance]" choice19="Lab [b-Chrominance]" choice20="Lch [ch-Chrominances]" choice21="Lch [c-Chrominance]" choice22="Lch [h-Chrominance]" choice23="HSV [Hue]" choice24="HSV [Saturation]" choice25="HSV [Value]" choice26="HSI [Intensity]" choice27="HSL [Lightness]" choice28="CMYK [Cyan]" choice29="CMYK [Magenta]" choice30="CMYK [Yellow]" choice31="CMYK [Key]" choice32="YIQ [Luma]" choice33="YIQ [Chromas]" choice34="RYB [All]" choice35="RYB [Red]" choice36="RYB [Yellow]" choice37="RYB [Blue]" />
<choice name="Value Action" default="0" choice0="None" choice1="Cut" choice2="Normalize" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<link name="Click here for a video tutorial" url="http://www.youtube.com/watch?v=RC07VUpzwGc" align="center" />
<separator />
<note text="<small>Authors: <i>David Tschumperl&#233;</i> and <i>Rod/GimpChat</i>.<br/>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Latest Update: <i>2013/05/03</i>.</small>" />
</preset>
<!-- /Artistic/Sharp Abstract -->
<preset name="Sharp Abstract">
<command>
-fx_sharp_abstract_preview $"*"
</command>
<float name="Spatial Scale" default="4" min="0" max="32" />
<float name="Value Scale" default="10" min="0" max="16" />
<float name="Precision" default="0.5" min="0" max="2" />
<separator />
<choice name="Channel(s)" default="0" choice0="All" choice1="RGBA [All]" choice2="RGB [All]" choice3="RGB [Red]" choice4="RGB [Green]" choice5="RGB [Blue]" choice6="RGBA [Alpha]" choice7="Linear RGB [All]" choice8="Linear RGB [Red]" choice9="Linear RGB [Green]" choice10="Linear RGB [Blue]" choice11="YCbCr [Luminance]" choice12="YCbCr [Blue-Red Chrominances]" choice13="YCbCr [Blue Chrominance]" choice14="YCbCr [Red Chrominance]" choice15="YCbCr [Green Chrominance]" choice16="Lab [Lightness]" choice17="Lab [ab-Chrominances]" choice18="Lab [a-Chrominance]" choice19="Lab [b-Chrominance]" choice20="Lch [ch-Chrominances]" choice21="Lch [c-Chrominance]" choice22="Lch [h-Chrominance]" choice23="HSV [Hue]" choice24="HSV [Saturation]" choice25="HSV [Value]" choice26="HSI [Intensity]" choice27="HSL [Lightness]" choice28="CMYK [Cyan]" choice29="CMYK [Magenta]" choice30="CMYK [Yellow]" choice31="CMYK [Key]" choice32="YIQ [Luma]" choice33="YIQ [Chromas]" choice34="RYB [All]" choice35="RYB [Red]" choice36="RYB [Yellow]" choice37="RYB [Blue]" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2016/20/09</i>.</small>" />
</preset>
<!-- /Artistic/Sketch -->
<preset name="Sketch">
<command>
-fx_sketchbw_preview $"*"
</command>
<int name="Number of Orientations" default="3" min="1" max="16" />
<float name="Starting Angle" default="45" min="0" max="180" />
<float name="Angle Range" default="180" min="0" max="180" />
<float name="Stroke Length" default="30" min="0" max="1000" />
<float name="Contour Threshold" default="1.75" min="0" max="10" />
<float name="Opacity" default="0.02" min="0" max="0.3" />
<float name="Background Intensity" default="0.5" min="0" max="2" />
<float name="Density" default="0.75" min="0" max="5" />
<float name="Sharpness" default="0.1" min="0" max="1" />
<float name="Anisotropy" default="0.7" min="0" max="1" />
<float name="Smoothness" default="3" min="0" max="10" />
<float name="Coherence" default="6" min="0" max="10" />
<bool name="Boost Stroke" default="0" />
<bool name="Curved Stroke" default="1" />
<choice name="Color Model" default="4" choice0="Black on white" choice1="White on black" choice2="Black on transparent white" choice3="White on transparent black" choice4="Color on white" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2018/05/11</i>.</small>" />
</preset>
<!-- /Artistic/Smooth Abstract -->
<preset name="Smooth Abstract">
<command>
-fx_smooth_abstract_preview $"*"
</command>
<float name="Smoothness (%)" default="75" min="0" max="100" />
<choice name="Regularization" default="0" choice0="Isotropic" choice1="Delaunay-oriented" choice2="Edge-oriented" />
<int name="Regularization Iterations" default="20" min="0" max="100" />
<float name="Geometry" default="1" min="0" max="5" />
<float name="Details" default="30" min="0" max="50" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2016/06/04</i>.</small>" />
</preset>
<!-- /Artistic/Vector Painting -->
<preset name="Vector Painting">
<command>
-fx_vector_painting_preview $"*"
</command>
<float name="Details" default="9" min="0" max="10" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.
Latest Update: <i>2015/25/08</i>.</small>" />
</preset>
<!-- /Artistic/Warhol -->
<preset name="Warhol">
<command>
-warhol $"*"
</command>
<int name="X-Tiles" default="3" min="1" max="10" />
<int name="Y-Tiles" default="3" min="1" max="10" />
<float name="Smoothness" default="2" min="0" max="10" />
<float name="Color" default="40" min="0" max="60" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
<!-- /Artistic/Whirl Drawing -->
<preset name="Whirl Drawing">
<command>
-fx_draw_whirl_preview $"*"
</command>
<float name="Amplitude" default="20" min="0" max="100" />
<separator />
<value value="0" />
<value value="50" />
<value value="50" />
<separator />
<note text="<small>Author: <i>David Tschumperl&#233;</i>.&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br/>
Latest Update: <i>2010/29/12</i>.</small>" />
</preset>
</preset_group>
<!-- ***********************************
Black & White
************************************ -->
<preset_group name="Black & White" >
<!-- /Black & White/Black & White -->
<preset name="Black & White">
<command>
-fx_blackandwhite_preview $"*"
</command>
<float name="Red Level" default="0.299" min="0" max="1" />
<float name="Red Smoothness" default="0" min="0" max="10" />
<float name="Green Level" default="0.587" min="0" max="1" />
<float name="Green Smoothness" default="0" min="0" max="10" />
<float name="Blue Level" default="0.114" min="0" max="1" />
<float name="Blue Smoothness" default="0" min="0" max="10" />
<separator />
<float name="Brightness (%)" default="0" min="-100" max="100" />
<float name="Contrast (%)" default="0" min="-100" max="100" />
<float name="Gamma (%)" default="0" min="-100" max="100" />
<float name="Hue (%)" default="0" min="-100" max="100" />
<float name="Saturation (%)" default="0" min="-100" max="100" />
<separator />
<float name="Grain (Shadows)" default="0" min="0" max="200" />
<float name="Grain (Midtones)" default="0" min="0" max="200" />
<float name="Grain (Highlights)" default="0" min="0" max="200" />
<float name="Grain Tone Fading" default="2" min="0" max="10" />
<float name="Grain Scale" default="0" min="0" max="3" />
<choice name="Grain Type" default="0" choice0="Gaussian" choice1="Uniform" choice2="Salt and Pepper" choice3="Poisson" />
<separator />
<float name="Local Contrast" default="0" min="0" max="60" />
<int name="Radius" default="16" min="1" max="512" />
<float name="Contrast Smoothness" default="4" min="0" max="10" />
<separator />
<int name="Pseudo-Gray Dithering" default="0" min="0" max="5" />