-
Notifications
You must be signed in to change notification settings - Fork 79
/
pluginrc
5521 lines (5518 loc) · 273 KB
/
pluginrc
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
# GIMP pluginrc
#
# This file can safely be removed and will be automatically regenerated by
# querying the installed plugins.
(protocol-version 20)
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/whirl-pinch" 1386362054
(proc-def "plug-in-whirl-pinch" 1
"Distort an image by whirling and pinching"
"Distorts the image by whirling and pinching, which are two common center-based, circular distortions. Whirling is like projecting the image onto the surface of water in a toilet and flushing. Pinching is similar to projecting the image onto an elastic surface and pressing or pulling on the center of the surface."
"Federico Mena Quintero and Scott Goehring"
"Federico Mena Quintero and Scott Goehring"
"May 1997, 2.09"
"W_hirl and Pinch..."
1
(menu-path "<Image>/Filters/Distorts")
(icon stock-id -1 "")
"RGB*, GRAY*"
6 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 3 "whirl" "Whirl angle (degrees)")
(proc-arg 3 "pinch" "Pinch amount")
(proc-arg 3 "radius" "Radius (1.0 is the largest circle that fits in the image, and 2.0 goes all the way to the corners)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/cml-explorer" 1386362055
(proc-def "plug-in-cml-explorer" 1
"Create abstract Coupled-Map Lattice patterns"
"Make an image of Coupled-Map Lattice (CML). CML is a kind of Cellula Automata on continuous (value) domain. In GIMP_RUN_NONINTERACTIVE, the name of a prameter file is passed as the 4th arg. You can control CML_explorer via parameter file."
"Shuji Narazaki (narazaki@InetQ.or.jp); http://www.inetq.or.jp/~narazaki/TheGIMP/"
"Shuji Narazaki"
"1997"
"CML _Explorer..."
1
(menu-path "<Image>/Filters/Render/Pattern")
(icon stock-id -1 "")
"RGB*, GRAY*"
4 0
(proc-arg 0 "ru--mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (not used)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 4 "parameter-filename" "The name of parameter file. CML_explorer makes an image with its settings.")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/contrast-stretch" 1386362055
(proc-def "plug-in-c-astretch" 1
"Stretch contrast to cover the maximum possible range"
"This simple plug-in does an automatic contrast stretch. For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full contrast range. For some images it may do just what you want; for others it may not work that well."
"Federico Mena Quintero"
"Federico Mena Quintero"
"1996"
"_Stretch Contrast"
1
(menu-path "<Image>/Colors/Auto")
(icon stock-id -1 "")
"RGB*, GRAY*, INDEXED*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur-motion" 1386362054
(proc-def "plug-in-mblur" 1
"Simulate movement using directional blur"
"This plug-in simulates the effect seen when photographing a moving object at a slow shutter speed. Done by adding multiple displaced copies."
"Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
"Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
"May 2007, 1.3"
"_Motion Blur..."
1
(menu-path "<Image>/Filters/Blur")
(icon stock-id -1 "")
"RGB*, GRAY*"
8 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "type" "Type of motion blur { LINEAR (0), RADIAL (1), ZOOM (2) }")
(proc-arg 0 "length" "Length")
(proc-arg 0 "angle" "Angle")
(proc-arg 3 "center-x" "Center X (optional)")
(proc-arg 3 "center-y" "Center Y (optional)"))
(proc-def "plug-in-mblur-inward" 1
"Simulate movement using directional blur"
"This procedure is equivalent to plug-in-mblur but performs the zoom blur inward instead of outward."
"Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
"Torsten Martinsen, Federico Mena Quintero, Daniel Skarda, Joerg Gittinger"
"May 2007, 1.3"
"_Motion Blur..."
0
(icon stock-id -1 "")
"RGB*, GRAY*"
8 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "type" "Type of motion blur { LINEAR (0), RADIAL (1), ZOOM (2) }")
(proc-arg 0 "length" "Length")
(proc-arg 0 "angle" "Angle")
(proc-arg 3 "center-x" "Center X (optional)")
(proc-arg 3 "center-y" "Center Y (optional)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/channel-mixer" 1386362057
(proc-def "plug-in-colors-channel-mixer" 1
"Alter colors by mixing RGB Channels"
"This plug-in mixes the RGB channels."
"Martin Guldahl <mguldahl@xmission.com>"
"Martin Guldahl <mguldahl@xmission.com>"
"2002"
"Channel Mi_xer..."
1
(menu-path "<Image>/Colors/Components")
(icon stock-id -1 "")
"RGB*"
13 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "monochrome" "Monochrome { TRUE, FALSE }")
(proc-arg 3 "rr-gain" "Set the red gain for the red channel")
(proc-arg 3 "rg-gain" "Set the green gain for the red channel")
(proc-arg 3 "rb-gain" "Set the blue gain for the red channel")
(proc-arg 3 "gr-gain" "Set the red gain for the green channel")
(proc-arg 3 "gg-gain" "Set the green gain for the green channel")
(proc-arg 3 "gb-gain" "Set the blue gain for the green channel")
(proc-arg 3 "br-gain" "Set the red gain for the blue channel")
(proc-arg 3 "bg-gain" "Set the green gain for the blue channel")
(proc-arg 3 "bb-gain" "Set the blue gain for the blue channel")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/compose" 1386362054
(proc-def "plug-in-compose" 1
"Create an image using multiple gray images as color channels"
"This function creates a new image from multiple gray images"
"Peter Kirchgessner"
"Peter Kirchgessner (peter@kirchgessner.net)"
"1997"
"C_ompose..."
1
(menu-path "<Image>/Colors/Components")
(icon stock-id -1 "")
"GRAY*"
7 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image1" "First input image")
(proc-arg 16 "drawable" "Input drawable (not used)")
(proc-arg 13 "image2" "Second input image")
(proc-arg 13 "image3" "Third input image")
(proc-arg 13 "image4" "Fourth input image")
(proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMY\", \"CMYK\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"")
(proc-arg 13 "new-image" "Output image"))
(proc-def "plug-in-drawable-compose" 1
"Compose an image from multiple drawables of gray images"
"This function creates a new image from multiple drawables of gray images"
"Peter Kirchgessner"
"Peter Kirchgessner (peter@kirchgessner.net)"
"1998"
""
0
(icon stock-id -1 "")
"GRAY*"
7 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image1" "First input image (not used)")
(proc-arg 16 "drawable1" "First input drawable")
(proc-arg 16 "drawable2" "Second input drawable")
(proc-arg 16 "drawable3" "Third input drawable")
(proc-arg 16 "drawable4" "Fourth input drawable")
(proc-arg 4 "compose-type" "What to compose: \"RGB\", \"RGBA\", \"HSV\", \"HSL\", \"CMY\", \"CMYK\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr_ITU_R470_256\", \"YCbCr_ITU_R709_256\"")
(proc-arg 13 "new-image" "Output image"))
(proc-def "plug-in-recompose" 1
"Recompose an image that was previously decomposed"
"This function recombines the grayscale layers produced by Decompose into a single RGB or RGBA layer, and replaces the originally decomposed layer with the result."
"Bill Skaggs"
"Bill Skaggs"
"2004"
"R_ecompose"
1
(menu-path "<Image>/Colors/Components")
(icon stock-id -1 "")
"GRAY*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Image to recompose from")
(proc-arg 16 "drawable" "Not used")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/colorify" 1386362055
(proc-def "plug-in-colorify" 1
"Replace all colors with shades of a specified color"
"Makes an average of the RGB channels and uses it to set the color"
"Francisco Bustamante"
"Francisco Bustamante"
"1.1"
"Colorif_y..."
1
(menu-path "<Image>/Colors/Modify")
(icon stock-id -1 "")
"RGB*"
4 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 10 "color" "Color to apply")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile-paper" 1386362055
(proc-def "plug-in-papertile" 1
"Cut image into paper tiles, and slide them"
"This plug-in cuts an image into paper tiles and slides each paper tile."
"Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>"
"Copyright (c)1997-1999 Hirotsuna Mizuno"
"September 31, 1999"
"_Paper Tile..."
1
(menu-path "<Image>/Filters/Map")
(icon stock-id -1 "")
"RGB*"
11 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "tile-size" "Tile size (pixels)")
(proc-arg 3 "move-max" "Max move rate (%)")
(proc-arg 0 "fractional-type" "0:Background 1:Ignore 2:Force")
(proc-arg 0 "wrap-around" "Wrap around (bool)")
(proc-arg 0 "centering" "Centering (bool)")
(proc-arg 0 "background-type" "0:Transparent 1:Inverted 2:Image? 3:FG 4:BG 5:Color")
(proc-arg 0 "background-color" "Background color (for bg-type 5)")
(proc-arg 0 "background-alpha" "Opacity (for bg-type 5)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/fractal-trace" 1386362056
(proc-def "plug-in-fractal-trace" 1
"Transform image with the Mandelbrot Fractal"
"transform image with the Mandelbrot Fractal"
"Hirotsuna Mizuno <s1041150@u-aizu.ac.jp>"
"Copyright (C) 1997 Hirotsuna Mizuno"
"v0.4 test version (Dec. 25 1997)"
"_Fractal Trace..."
1
(menu-path "<Image>/Filters/Map")
(icon stock-id -1 "")
"RGB*, GRAY*"
9 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 3 "xmin" "xmin fractal image delimiter")
(proc-arg 3 "xmax" "xmax fractal image delimiter")
(proc-arg 3 "ymin" "ymin fractal image delimiter")
(proc-arg 3 "ymax" "ymax fractal image delimiter")
(proc-arg 0 "depth" "Trace depth")
(proc-arg 0 "outside-type" "Outside type { WRAP (0), TRANS (1), BLACK (2), WHITE (3) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pnm" 1386362055
(proc-def "file-pnm-load" 1
"Loads files in the PNM file format"
"This plug-in loads files in the various Netpbm portable file formats."
"Erik Nygren"
"Erik Nygren"
"1996"
"PNM Image"
0
(icon stock-id -1 "")
(load-proc
(extension "pnm,ppm,pgm,pbm")
(magic "0,string,P1,0,string,P2,0,string,P3,0,string,P4,0,string,P5,0,string,P6")
(mime-type "image/x-portable-anymap"))
""
3 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 4 "filename" "The name of the file to load")
(proc-arg 4 "raw-filename" "The name of the file to load")
(proc-arg 13 "image" "Output image"))
(proc-def "file-pnm-save" 1
"Saves files in the PNM file format"
"PNM saving handles all image types without transparency."
"Erik Nygren"
"Erik Nygren"
"1996"
"PNM image"
0
(icon stock-id -1 "")
(save-proc
(extension "pnm")
(mime-type "image/x-portable-anymap"))
"RGB, GRAY, INDEXED"
6 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the image in")
(proc-arg 4 "raw-filename" "The name of the file to save the image in")
(proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output"))
(proc-def "file-pbm-save" 1
"Saves files in the PBM file format"
"PBM saving produces mono images without transparency."
"Martin K Collins"
"Erik Nygren"
"2006"
"PBM image"
0
(icon stock-id -1 "")
(save-proc
(extension "pbm")
(mime-type "image/x-portable-bitmap"))
"RGB, GRAY, INDEXED"
6 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the image in")
(proc-arg 4 "raw-filename" "The name of the file to save the image in")
(proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output"))
(proc-def "file-pgm-save" 1
"Saves files in the PGM file format"
"PGM saving produces grayscale images without transparency."
"Erik Nygren"
"Erik Nygren"
"1996"
"PGM image"
0
(icon stock-id -1 "")
(save-proc
(extension "pgm")
(mime-type "image/x-portable-graymap"))
"RGB, GRAY, INDEXED"
6 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the image in")
(proc-arg 4 "raw-filename" "The name of the file to save the image in")
(proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output"))
(proc-def "file-ppm-save" 1
"Saves files in the PPM file format"
"PPM saving handles RGB images without transparency."
"Erik Nygren"
"Erik Nygren"
"1996"
"PPM image"
0
(icon stock-id -1 "")
(save-proc
(extension "ppm")
(mime-type "image/x-portable-pixmap"))
"RGB, GRAY, INDEXED"
6 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the image in")
(proc-arg 4 "raw-filename" "The name of the file to save the image in")
(proc-arg 0 "raw" "Specify non-zero for raw output, zero for ascii output")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/noise-spread" 1386362056
(proc-def "plug-in-spread" 1
"Move pixels around randomly"
"Spreads the pixels of the specified drawable. Pixels are randomly moved to another location whose distance varies from the original by the horizontal and vertical spread amounts "
"Spencer Kimball and Peter Mattis, ported by Brian Degenhardt and Federico Mena Quintero"
"Federico Mena Quintero and Brian Degenhardt"
"1997"
"Sp_read..."
1
(menu-path "<Image>/Filters/Noise")
(icon stock-id -1 "")
"RGB*, GRAY*"
5 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 3 "spread-amount-x" "Horizontal spread amount (0 <= spread_amount_x <= 200)")
(proc-arg 3 "spread-amount-y" "Vertical spread amount (0 <= spread_amount_y <= 200)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/alien-map" 1386362056
(proc-def "plug-in-alienmap2" 1
"Alter colors in various psychedelic ways"
"No help yet. Just try it and you'll see!"
"Martin Weber (martweb@gmx.net)"
"Martin Weber (martweb@gmx.net"
"24th April 1998"
"_Alien Map..."
1
(menu-path "<Image>/Colors/Map")
(icon stock-id -1 "")
"RGB*"
13 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 3 "redfrequency" "Red/hue component frequency factor")
(proc-arg 3 "redangle" "Red/hue component angle factor (0-360)")
(proc-arg 3 "greenfrequency" "Green/saturation component frequency factor")
(proc-arg 3 "greenangle" "Green/saturation component angle factor (0-360)")
(proc-arg 3 "bluefrequency" "Blue/luminance component frequency factor")
(proc-arg 3 "blueangle" "Blue/luminance component angle factor (0-360)")
(proc-arg 2 "colormodel" "Color model { RGB-MODEL (0), HSL-MODEL (1) }")
(proc-arg 2 "redmode" "Red/hue application mode { TRUE, FALSE }")
(proc-arg 2 "greenmode" "Green/saturation application mode { TRUE, FALSE }")
(proc-arg 2 "bluemode" "Blue/luminance application mode { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/print" 1386362056
(proc-def "file-print-gtk" 1
"Print the image"
"Print the image using the GTK+ Print API."
"Bill Skaggs, Sven Neumann, Stefan Röllin"
"Bill Skaggs <weskaggs@primate.ucdavis.edu>"
"2006 - 2008"
"_Print..."
1
(menu-path "<Image>/File/Send")
(icon stock-id -1 "gtk-print")
"*"
2 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
(proc-arg 13 "image" "Image to print")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/displace" 1386362056
(proc-def "plug-in-displace" 1
"Displace pixels as indicated by displacement maps"
"Displaces the contents of the specified drawable by the amounts specified by 'amount-x' and 'amount-y' multiplied by the luminance of corresponding pixels in the 'displace-map' drawables."
"Stephen Robert Norris & (ported to 1.0 by) Spencer Kimball"
"Stephen Robert Norris"
"1996"
"_Displace..."
1
(menu-path "<Image>/Filters/Map")
(icon stock-id -1 "")
"RGB*, GRAY*"
10 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 3 "amount-x" "Displace multiplier for X or radial direction")
(proc-arg 3 "amount-y" "Displace multiplier for Y or tangent (degrees) direction")
(proc-arg 0 "do-x" "Displace in X or radial direction?")
(proc-arg 0 "do-y" "Displace in Y or tangent direction?")
(proc-arg 16 "displace-map-x" "Displacement map for X or radial direction")
(proc-arg 16 "displace-map-y" "Displacement map for Y or tangent direction")
(proc-arg 0 "displace-type" "Edge behavior { WRAP (1), SMEAR (2), BLACK (3) }"))
(proc-def "plug-in-displace-polar" 1
"Displace the contents of the specified drawable"
"Just like plug-in-displace but working in polar coordinates. The drawable is whirled and pinched according to the map."
"Stephen Robert Norris & (ported to 1.0 by) Spencer Kimball"
"Stephen Robert Norris"
"1996"
"Displace Polar"
0
(icon stock-id -1 "")
"RGB*, GRAY*"
10 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 3 "amount-x" "Displace multiplier for X or radial direction")
(proc-arg 3 "amount-y" "Displace multiplier for Y or tangent (degrees) direction")
(proc-arg 0 "do-x" "Displace in X or radial direction?")
(proc-arg 0 "do-y" "Displace in Y or tangent direction?")
(proc-arg 16 "displace-map-x" "Displacement map for X or radial direction")
(proc-arg 16 "displace-map-y" "Displacement map for Y or tangent direction")
(proc-arg 0 "displace-type" "Edge behavior { WRAP (1), SMEAR (2), BLACK (3) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-openraster.py" 1386361943
(proc-def "file-openraster-load-thumb" 1
"loads a thumbnail from an OpenRaster (.ora) file"
"loads a thumbnail from an OpenRaster (.ora) file"
"Jon Nordby"
"Jon Nordby"
"2009"
""
0
(icon stock-id -1 "")
""
3 3
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 4 "filename" "The name of the file to load")
(proc-arg 0 "thumb-size" "Preferred thumbnail size")
(proc-arg 13 "image" "Thumbnail image")
(proc-arg 0 "image-width" "Width of full-sized image")
(proc-arg 0 "image-height" "Height of full-sized image"))
(proc-def "file-openraster-load" 1
"load an OpenRaster (.ora) file"
"load an OpenRaster (.ora) file"
"Jon Nordby"
"Jon Nordby"
"2009"
"OpenRaster"
1
(menu-path "<Load>")
(icon stock-id -1 "")
(load-proc
(extension "ora")
(mime-type "image/openraster")
(thumb-loader "file-openraster-load-thumb"))
""
3 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 4 "filename" "The name of the file to load")
(proc-arg 4 "raw-filename" "The name entered")
(proc-arg 13 "image" "Output image"))
(proc-def "file-openraster-save" 1
"save an OpenRaster (.ora) file"
"save an OpenRaster (.ora) file"
"Jon Nordby"
"Jon Nordby"
"2009"
"OpenRaster"
1
(menu-path "<Save>")
(icon stock-id -1 "")
(save-proc
(extension "ora"))
"*"
5 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 4 "filename" "The name of the file")
(proc-arg 4 "raw-filename" "The name of the file")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/color-enhance" 1386362054
(proc-def "plug-in-color-enhance" 1
"Stretch color saturation to cover maximum possible range"
"This simple plug-in does an automatic saturation stretch. For each channel in the image, it finds the minimum and maximum values... it uses those values to stretch the individual histograms to the full range. For some images it may do just what you want; for others it may not work that well. This version differs from Contrast Autostretch in that it works in HSV space, and preserves hue."
"Martin Weber"
"Martin Weber"
"1997"
"_Color Enhance"
1
(menu-path "<Image>/Colors/Auto")
(icon stock-id -1 "")
"RGB*, INDEXED*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-psd-save" 1386362056
(proc-def "file-psd-save" 1
"saves files in the Photoshop(tm) PSD file format"
"This filter saves files of Adobe Photoshop(tm) native PSD format. These files may be of any image type supported by GIMP, with or without layers, layer masks, aux channels and guides."
"Monigotes"
"Monigotes"
"2000"
"Photoshop image"
0
(icon stock-id -1 "")
(save-proc
(extension "psd")
(mime-type "image/x-psd"))
"RGB*, GRAY*, INDEXED*"
7 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the image in")
(proc-arg 4 "raw-filename" "The name of the file to save the image in")
(proc-arg 0 "compression" "Compression type: { NONE (0), LZW (1), PACKBITS (2)")
(proc-arg 0 "fill-order" "Fill Order: { MSB to LSB (0), LSB to MSB (1)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/crop-auto" 1386362055
(proc-def "plug-in-autocrop" 1
"Remove empty borders from the image"
""
"Tim Newsome"
"Tim Newsome"
"1997"
"Autocrop Imag_e"
1
(menu-path "<Image>/Image/Crop")
(icon stock-id -1 "")
"RGB*, GRAY*, INDEXED*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable"))
(proc-def "plug-in-autocrop-layer" 1
"Remove empty borders from the layer"
""
"Tim Newsome"
"Tim Newsome"
"1997"
"Autocrop Lay_er"
1
(menu-path "<Image>/Layer/Crop")
(icon stock-id -1 "")
"RGB*, GRAY*, INDEXED*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/film" 1386362055
(proc-def "plug-in-film" 1
"Combine several images on a film strip"
"Compose several images to a roll film"
"Peter Kirchgessner"
"Peter Kirchgessner (peter@kirchgessner.net)"
"1997"
"_Filmstrip..."
1
(menu-path "<Image>/Filters/Combine")
(icon stock-id -1 "")
"INDEXED*, GRAY*, RGB*"
12 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (only used as default image in interactive mode)")
(proc-arg 16 "drawable" "Input drawable (not used)")
(proc-arg 0 "film-height" "Height of film (0: fit to images)")
(proc-arg 10 "film-color" "Color of the film")
(proc-arg 0 "number-start" "Start index for numbering")
(proc-arg 4 "number-font" "Font for drawing numbers")
(proc-arg 10 "number-color" "Color for numbers")
(proc-arg 0 "at-top" "Flag for drawing numbers at top of film")
(proc-arg 0 "at-bottom" "Flag for drawing numbers at bottom of film")
(proc-arg 0 "num-images" "Number of images to be used for film")
(proc-arg 5 "image-ids" "num-images image IDs to be used for film")
(proc-arg 13 "new-image" "Output image")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gimpressionist" 1386362057
(proc-def "plug-in-gimpressionist" 1
"Performs various artistic operations"
"Performs various artistic operations on an image"
"Vidar Madsen <vidar@prosalg.no>"
"Vidar Madsen"
"v1.0, November 2003"
"_GIMPressionist..."
1
(menu-path "<Image>/Filters/Artistic")
(icon stock-id -1 "")
"RGB*, GRAY*"
4 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 4 "preset" "Preset Name")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gradient-map" 1386362056
(proc-def "plug-in-gradmap" 1
"Recolor the image using colors from the active gradient"
"This plug-in maps the contents of the specified drawable with active gradient. It calculates luminosity of each pixel and replaces the pixel by the sample of active gradient at the position proportional to that luminosity. Complete black pixel becomes the leftmost color of the gradient, and complete white becomes the rightmost. Works on both Grayscale and RGB image with/without alpha channel."
"Eiichi Takamori"
"Eiichi Takamori"
"1997"
"_Gradient Map"
1
(menu-path "<Image>/Colors/Map")
(icon stock-id -1 "")
"RGB*, GRAY*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable"))
(proc-def "plug-in-palettemap" 1
"Recolor the image using colors from the active palette"
"This plug-in maps the contents of the specified drawable with the active palette. It calculates luminosity of each pixel and replaces the pixel by the palette sample at the corresponding index. A complete black pixel becomes the lowest palette entry, and complete white becomes the highest. Works on both Grayscale and RGB image with/without alpha channel."
"Bill Skaggs"
"Bill Skaggs"
"2004"
"_Palette Map"
1
(menu-path "<Image>/Colors/Map")
(icon stock-id -1 "")
"RGB*, GRAY*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/decompose" 1386362054
(proc-def "plug-in-decompose" 1
"Decompose an image into separate colorspace components"
"This function creates new gray images with different channel information in each of them"
"Peter Kirchgessner"
"Peter Kirchgessner"
"1997"
"_Decompose..."
0
(icon stock-id -1 "")
"RGB*"
5 4
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"Red\", \"Green\", \"Blue\", \"RGBA\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMY\", \"Cyan\", \"Magenta\", \"Yellow\", \"CMYK\", \"Cyan_K\", \"Magenta_K\", \"Yellow_K\", \"Alpha\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr ITU R470 256\", \"YCbCr ITU R709 256\"")
(proc-arg 0 "layers-mode" "Create channels as layers in a single image")
(proc-arg 13 "new-image" "Output gray image")
(proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
(proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
(proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)"))
(proc-def "plug-in-decompose-registered" 1
"Decompose an image into separate colorspace components"
"This function creates new gray images with different channel information in each of them. Pixels in the foreground color will appear black in all output images. This can be used for things like crop marks that have to show up on all channels."
"Peter Kirchgessner"
"Peter Kirchgessner, Clarence Risher"
"1997"
"_Decompose..."
1
(menu-path "<Image>/Colors/Components")
(icon stock-id -1 "")
"RGB*"
5 4
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 4 "decompose-type" "What to decompose: \"RGB\", \"Red\", \"Green\", \"Blue\", \"RGBA\", \"HSV\", \"Hue\", \"Saturation\", \"Value\", \"HSL\", \"Hue (HSL)\", \"Saturation (HSL)\", \"Lightness\", \"CMY\", \"Cyan\", \"Magenta\", \"Yellow\", \"CMYK\", \"Cyan_K\", \"Magenta_K\", \"Yellow_K\", \"Alpha\", \"LAB\", \"YCbCr_ITU_R470\", \"YCbCr_ITU_R709\", \"YCbCr ITU R470 256\", \"YCbCr ITU R709 256\"")
(proc-arg 0 "layers-mode" "Create channels as layers in a single image")
(proc-arg 13 "new-image" "Output gray image")
(proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
(proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")
(proc-arg 13 "new-image" "Output gray image (N/A for single channel extract)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-ico" 1386362056
(proc-def "file-ico-load" 1
"Loads files of Windows ICO file format"
"Loads files of Windows ICO file format"
"Christian Kreibich <christian@whoop.org>"
"Christian Kreibich <christian@whoop.org>"
"2002"
"Microsoft Windows icon"
0
(icon stock-id -1 "")
(load-proc
(extension "ico")
(magic "0,string,\\000\\001\\000\\000,0,string,\\000\\002\\000\\000")
(mime-type "image/x-ico")
(thumb-loader "file-ico-load-thumb"))
""
3 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 4 "filename" "The name of the file to load")
(proc-arg 4 "raw-filename" "The name entered")
(proc-arg 13 "image" "Output image"))
(proc-def "file-ico-load-thumb" 1
"Loads a preview from an Windows ICO file"
""
"Dom Lachowicz, Sven Neumann"
"Sven Neumann <sven@gimp.org>"
"2005"
""
0
(icon stock-id -1 "")
""
2 3
(proc-arg 4 "filename" "The name of the file to load")
(proc-arg 0 "thumb-size" "Preferred thumbnail size")
(proc-arg 13 "image" "Thumbnail image")
(proc-arg 0 "image-width" "Width of full-sized image")
(proc-arg 0 "image-height" "Height of full-sized image"))
(proc-def "file-ico-save" 1
"Saves files in Windows ICO file format"
"Saves files in Windows ICO file format"
"Christian Kreibich <christian@whoop.org>"
"Christian Kreibich <christian@whoop.org>"
"2002"
"Microsoft Windows icon"
0
(icon stock-id -1 "")
(save-proc
(extension "ico")
(mime-type "image/x-ico"))
"*"
5 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the image in")
(proc-arg 4 "raw-filename" "The name entered")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile-glass" 1386362056
(proc-def "plug-in-glasstile" 1
"Simulate distortion caused by square glass tiles"
"Divide the image into square glassblocks in which the image is refracted."
"Karl-Johan Andersson"
"Karl-Johan Andersson"
"May 2000"
"_Glass Tile..."
1
(menu-path "<Image>/Filters/Artistic")
(icon stock-id -1 "")
"RGB*, GRAY*"
5 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "tilex" "Tile width (10 - 50)")
(proc-arg 0 "tiley" "Tile height (10 - 50)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/fractal-explorer" 1386362054
(proc-def "plug-in-fractalexplorer" 1
"Render fractal art"
"No help yet."
"Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)"
"Daniel Cotting (cotting@multimania.com, www.multimania.com/cotting)"
"December, 1998"
"_Fractal Explorer..."
1
(menu-path "<Image>/Filters/Render")
(icon stock-id -1 "")
"RGB*, GRAY*"
22 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 2 "fractaltype" "0: Mandelbrot; 1: Julia; 2: Barnsley 1; 3: Barnsley 2; 4: Barnsley 3; 5: Spider; 6: ManOWar; 7: Lambda; 8: Sierpinski")
(proc-arg 3 "xmin" "xmin fractal image delimiter")
(proc-arg 3 "xmax" "xmax fractal image delimiter")
(proc-arg 3 "ymin" "ymin fractal image delimiter")
(proc-arg 3 "ymax" "ymax fractal image delimiter")
(proc-arg 3 "iter" "Iteration value")
(proc-arg 3 "cx" "cx value ( only Julia)")
(proc-arg 3 "cy" "cy value ( only Julia)")
(proc-arg 2 "colormode" "0: Apply colormap as specified by the parameters below; 1: Apply active gradient to final image")
(proc-arg 3 "redstretch" "Red stretching factor")
(proc-arg 3 "greenstretch" "Green stretching factor")
(proc-arg 3 "bluestretch" "Blue stretching factor")
(proc-arg 2 "redmode" "Red application mode (0:SIN;1:COS;2:NONE)")
(proc-arg 2 "greenmode" "Green application mode (0:SIN;1:COS;2:NONE)")
(proc-arg 2 "bluemode" "Blue application mode (0:SIN;1:COS;2:NONE)")
(proc-arg 2 "redinvert" "Red inversion mode (1: enabled; 0: disabled)")
(proc-arg 2 "greeninvert" "Green inversion mode (1: enabled; 0: disabled)")
(proc-arg 2 "blueinvert" "Green inversion mode (1: enabled; 0: disabled)")
(proc-arg 0 "ncolors" "Number of Colors for mapping (2<=ncolors<=8192)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur-gauss-selective" 1386362054
(proc-def "plug-in-sel-gauss" 1
"Blur neighboring pixels, but only in low-contrast areas"
"This filter functions similar to the regular gaussian blur filter except that neighbouring pixels that differ more than the given maxdelta parameter will not be blended with. This way with the correct parameters, an image can be smoothed out without losing details. However, this filter can be rather slow."
"Thom van Os"
"Thom van Os"
"1999"
"_Selective Gaussian Blur..."
1
(menu-path "<Image>/Filters/Blur")
(icon stock-id -1 "")
"RGB*, GRAY*"
5 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 3 "radius" "Radius of gaussian blur (in pixels, > 0.0)")
(proc-arg 0 "max-delta" "Maximum delta")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/waves" 1386362055
(proc-def "plug-in-waves" 1
"Distort the image with waves"
"none yet"
"Eric L. Hernes, Stephen Norris"
"Stephen Norris"
"1997"
"_Waves..."
1
(menu-path "<Image>/Filters/Distorts")
(icon stock-id -1 "")
"RGB*, GRAY*"
8 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "The Image")
(proc-arg 16 "drawable" "The Drawable")
(proc-arg 3 "amplitude" "The Amplitude of the Waves")
(proc-arg 3 "phase" "The Phase of the Waves")
(proc-arg 3 "wavelength" "The Wavelength of the Waves")
(proc-arg 0 "type" "Type of waves, black/smeared")
(proc-arg 0 "reflective" "Use Reflection")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/depth-merge" 1386362056
(proc-def "plug-in-depth-merge" 1
"Combine two images using depth maps (z-buffers)"
"Taking as input two full-color, full-alpha images and two corresponding grayscale depth maps, this plug-in combines the images based on which is closer (has a lower depth map value) at each point."
"Sean Cier"
"Sean Cier"
"August 1998"
"_Depth Merge..."
1
(menu-path "<Image>/Filters/Combine")
(icon stock-id -1 "")
"RGB*, GRAY*"
11 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "result" "Result")
(proc-arg 16 "source1" "Source 1")
(proc-arg 16 "source2" "Source 2")
(proc-arg 16 "depthMap1" "Depth map 1")
(proc-arg 16 "depthMap2" "Depth map 2")
(proc-arg 3 "overlap" "Overlap")
(proc-arg 3 "offset" "Depth relative offset")
(proc-arg 3 "scale1" "Depth relative scale 1")
(proc-arg 3 "scale2" "Depth relative scale 2")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-gih" 1386362056
(proc-def "file-gih-load" 1
"loads images in GIMP brush pipe format"
"This plug-in loads a GIMP brush pipe as an image."
"Jens Lautenbacher, Sven Neumann"
"Jens Lautenbacher, Sven Neumann"
"2000"
"GIMP brush (animated)"
0
(icon stock-id -1 "gimp-tool-paintbrush")
(load-proc
(extension "gih")
(mime-type "image/x-gimp-gih"))
""
3 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 4 "filename" "The name of the file to load")
(proc-arg 4 "raw-filename" "The name of the file to load")
(proc-arg 13 "image" "Output image"))
(proc-def "file-gih-save" 1
"saves images in GIMP brush pipe format"
"This plug-in saves an image in the GIMP brush pipe format. For a colored brush pipe, RGBA layers are used, otherwise the layers should be grayscale masks. The image can be multi-layered, and additionally the layers can be divided into a rectangular array of brushes."
"Tor Lillqvist"
"Tor Lillqvist"
"1999"
"GIMP brush (animated)"
0
(icon stock-id -1 "gimp-tool-paintbrush")
(save-proc
(extension "gih")
(mime-type "image/x-gimp-gih"))
"RGB*, GRAY*"
15 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the brush pipe in")
(proc-arg 4 "raw-filename" "The name of the file to save the brush pipe in")
(proc-arg 0 "spacing" "Spacing of the brush")
(proc-arg 4 "description" "Short description of the brush pipe")
(proc-arg 0 "cell-width" "Width of the brush cells")
(proc-arg 0 "cell-height" "Width of the brush cells")
(proc-arg 2 "display-cols" "Display column number")
(proc-arg 2 "display-rows" "Display row number")
(proc-arg 0 "dimension" "Dimension of the brush pipe")
(proc-arg 7 "rank" "Ranks of the dimensions")
(proc-arg 0 "dimension" "Dimension (again)")
(proc-arg 9 "sel" "Selection modes")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/engrave" 1386362055
(proc-def "plug-in-engrave" 1
"Simulate an antique engraving"
"Creates a black-and-white 'engraved' version of an image as seen in old illustrations"
"Spencer Kimball & Peter Mattis, Eiichi Takamori, Torsten Martinsen"
"Spencer Kimball & Peter Mattis, Eiichi Takamori, Torsten Martinsen"
"1995,1996,1997"
"En_grave..."
1
(menu-path "<Image>/Filters/Distorts")
(icon stock-id -1 "")
"RGBA, GRAYA"
5 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "height" "Resolution in pixels")
(proc-arg 0 "limit" "Limit line width { TRUE, FALSE }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-gbr" 1386362054
(proc-def "file-gbr-load" 1
"Loads GIMP brushes"
"Loads GIMP brushes (1 or 4 bpp and old .gpb format)"
"Tim Newsome, Jens Lautenbacher, Sven Neumann"
"Tim Newsome, Jens Lautenbacher, Sven Neumann"
"1997-2005"
"GIMP brush"
0
(icon stock-id -1 "gimp-tool-paintbrush")
(load-proc
(extension "gbr, gpb")
(magic "20, string, GIMP")
(mime-type "image/x-gimp-gbr"))
""
3 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 4 "filename" "The name of the file to load")
(proc-arg 4 "raw-filename" "The name of the file to load")
(proc-arg 13 "image" "Output image"))
(proc-def "file-gbr-save" 1
"Saves files in the GIMP brush file format"
"Saves files in the GIMP brush file format"
"Tim Newsome, Jens Lautenbacher, Sven Neumann"
"Tim Newsome, Jens Lautenbacher, Sven Neumann"
"1997-2000"
"GIMP brush"
0
(icon stock-id -1 "gimp-tool-paintbrush")
(save-proc
(extension "gbr")
(mime-type "image/x-gimp-gbr"))
"RGB*, GRAY*"
7 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image")
(proc-arg 16 "drawable" "Drawable to save")
(proc-arg 4 "filename" "The name of the file to save the image in")
(proc-arg 4 "raw-filename" "The name of the file to save the image in")
(proc-arg 0 "spacing" "Spacing of the brush")
(proc-arg 4 "description" "Short description of the brush")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur" 1386362057
(proc-def "plug-in-blur" 1
"Simple blur, fast but not very strong"
"This plug-in blurs the specified drawable, using a 3x3 blur. Indexed images are not supported."
"Miles O'Neal <meo@rru.com>"
"Miles O'Neal, Spencer Kimball, Peter Mattis, Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen Norris, Daniel Cotting"
"1995-1998"
"_Blur"
1
(menu-path "<Image>/Filters/Blur")
(icon stock-id -1 "")
"RGB*, GRAY*"
3 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/oilify" 1386362056
(proc-def "plug-in-oilify" 1
"Smear colors to simulate an oil painting"
"This function performs the well-known oil-paint effect on the specified drawable."
"Torsten Martinsen"
"Torsten Martinsen"
"1996"
"Oili_fy..."
1
(menu-path "<Image>/Filters/Artistic")
(icon stock-id -1 "")
"RGB*, GRAY*"
5 0
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 13 "image" "Input image (unused)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "mask-size" "Oil paint mask size")