-
Notifications
You must be signed in to change notification settings - Fork 0
/
pluginrc
5873 lines (5870 loc) · 287 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/diffraction" 1389868179
(proc-def "plug-in-diffraction" 1
"Generate diffraction patterns"
"Help? What help? Real men do not need help :-)"
"Federico Mena Quintero"
"Federico Mena Quintero & David Bleecker"
"April 1997, 0.5"
"_Diffraction Patterns..."
1
(menu-path "<Image>/Filters/Render/Pattern")
(icon stock-id -1 "")
"RGB*"
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" "Input drawable")
(proc-arg 3 "lam-r" "Light frequency (red)")
(proc-arg 3 "lam-g" "Light frequency (green)")
(proc-arg 3 "lam-b" "Light frequency (blue)")
(proc-arg 3 "contour-r" "Number of contours (red)")
(proc-arg 3 "contour-g" "Number of contours (green)")
(proc-arg 3 "contour-b" "Number of contours (blue)")
(proc-arg 3 "edges-r" "Number of sharp edges (red)")
(proc-arg 3 "edges-g" "Number of sharp edges (green)")
(proc-arg 3 "edges-b" "Number of sharp edges (blue)")
(proc-arg 3 "brightness" "Brightness and shifting/fattening of contours")
(proc-arg 3 "scattering" "Scattering (Speed vs. quality)")
(proc-arg 3 "polarization" "Polarization")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/compose" 1389868182
(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 ([email protected])"
"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 ([email protected])"
"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/shift" 1389868180
(proc-def "plug-in-shift" 1
"Shift each row of pixels by a random amount"
"Shifts the pixels of the specified drawable. Each row will be displaced a random value of pixels."
"Spencer Kimball and Peter Mattis, ported by Brian Degenhardt and Federico Mena Quintero"
"Brian Degenhardt"
"1997"
"_Shift..."
1
(menu-path "<Image>/Filters/Distorts")
(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 "shift-amount" "shift amount (0 <= shift_amount_x <= 200)")
(proc-arg 0 "orientation" "vertical, horizontal orientation")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/animation-play" 1389868179
(proc-def "plug-in-animationplay" 1
"Preview a GIMP layer-based animation"
""
"Adam D. Moss <[email protected]>"
"Adam D. Moss <[email protected]>"
"1997, 1998..."
"_Playback..."
1
(menu-path "<Image>/Filters/Animation")
(icon stock-id -1 "gtk-media-play")
"RGB*, INDEXED*, GRAY*"
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 (unused)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-pdf-load" 1389868182
(proc-def "file-pdf-load" 1
"Load file in PDF format"
"Loads files in Adobe's Portable Document Format. PDF is designed to be easily processed by a variety of different platforms, and is a distant cousin of PostScript."
"Nathan Summers"
"Nathan Summers"
"2005"
"Portable Document Format"
0
(icon stock-id -1 "")
(load-proc
(extension "pdf")
(magic "0, string,%PDF-")
(mime-type "application/pdf")
(thumb-loader "file-pdf-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-pdf-load-thumb" 1
"Loads a preview from a PDF file."
"Loads a small preview of the first page of the PDF format file. Uses the embedded thumbnail if present."
"Nathan Summers"
"Nathan Summers"
"2005"
""
0
(icon stock-id -1 "")
""
2 5
(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-arg 0 "image-type" "Image type")
(proc-arg 0 "num-layers" "Number of pages")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/contrast-normalize" 1389868181
(proc-def "plug-in-normalize" 1
"Stretch brightness values to cover the full range"
"This plugin performs almost the same operation as the 'contrast autostretch' plugin, except that it won't allow the color channels to normalize independently. This is actually what most people probably want instead of contrast-autostretch; use c-a only if you wish to remove an undesirable color-tint from a source image which is supposed to contain pure-white and pure-black."
"Adam D. Moss, Federico Mena Quintero"
"Adam D. Moss, Federico Mena Quintero"
"1997"
"_Normalize"
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/file-png" 1389868180
(proc-def "file-png-load" 1
"Loads files in PNG file format"
"This plug-in loads Portable Network Graphics (PNG) files."
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>"
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>, Nick Lamb <[email protected]>"
"1.3.4 - 03 September 2002"
"PNG image"
0
(icon stock-id -1 "")
(load-proc
(extension "png")
(magic "0,string,PNG\r\n\032\n")
(mime-type "image/png"))
""
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-png-save" 1
"Saves files in PNG file format"
"This plug-in saves Portable Network Graphics (PNG) files."
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>"
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>, Nick Lamb <[email protected]>"
"1.3.4 - 03 September 2002"
"PNG image"
0
(icon stock-id -1 "")
"RGB*,GRAY*,INDEXED*"
12 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 "interlace" "Use Adam7 interlacing?")
(proc-arg 0 "compression" "Deflate Compression factor (0--9)")
(proc-arg 0 "bkgd" "Write bKGD chunk?")
(proc-arg 0 "gama" "Write gAMA chunk?")
(proc-arg 0 "offs" "Write oFFs chunk?")
(proc-arg 0 "phys" "Write pHYs chunk?")
(proc-arg 0 "time" "Write tIME chunk?"))
(proc-def "file-png-save2" 1
"Saves files in PNG file format"
"This plug-in saves Portable Network Graphics (PNG) files. This procedure adds 2 extra parameters to file-png-save that allows to control whether image comments are saved and whether transparent pixels are saved or nullified."
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>"
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>, Nick Lamb <[email protected]>"
"1.3.4 - 03 September 2002"
"PNG image"
0
(icon stock-id -1 "")
"RGB*,GRAY*,INDEXED*"
14 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 "interlace" "Use Adam7 interlacing?")
(proc-arg 0 "compression" "Deflate Compression factor (0--9)")
(proc-arg 0 "bkgd" "Write bKGD chunk?")
(proc-arg 0 "gama" "Write gAMA chunk?")
(proc-arg 0 "offs" "Write oFFs chunk?")
(proc-arg 0 "phys" "Write pHYs chunk?")
(proc-arg 0 "time" "Write tIME chunk?")
(proc-arg 0 "comment" "Write comment?")
(proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))
(proc-def "file-png-save-defaults" 1
"Saves files in PNG file format"
"This plug-in saves Portable Network Graphics (PNG) files, using the default settings stored as a parasite."
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>"
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>, Nick Lamb <[email protected]>"
"1.3.4 - 03 September 2002"
"PNG image"
0
(icon stock-id -1 "")
(save-proc
(extension "png")
(mime-type "image/png"))
"RGB*,GRAY*,INDEXED*"
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 of the file to save the image in"))
(proc-def "file-png-get-defaults" 1
"Get the current set of defaults used by the PNG file save plug-in"
"This procedure returns the current set of defaults stored as a parasite for the PNG save plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG."
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>"
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>, Nick Lamb <[email protected]>"
"1.3.4 - 03 September 2002"
""
0
(icon stock-id -1 "")
""
0 9
(proc-arg 0 "interlace" "Use Adam7 interlacing?")
(proc-arg 0 "compression" "Deflate Compression factor (0--9)")
(proc-arg 0 "bkgd" "Write bKGD chunk?")
(proc-arg 0 "gama" "Write gAMA chunk?")
(proc-arg 0 "offs" "Write oFFs chunk?")
(proc-arg 0 "phys" "Write pHYs chunk?")
(proc-arg 0 "time" "Write tIME chunk?")
(proc-arg 0 "comment" "Write comment?")
(proc-arg 0 "svtrans" "Preserve color of transparent pixels?"))
(proc-def "file-png-set-defaults" 1
"Set the current set of defaults used by the PNG file save plug-in"
"This procedure set the current set of defaults stored as a parasite for the PNG save plug-in. These defaults are used to seed the UI, by the file_png_save_defaults procedure, and by gimp_file_save when it detects to use PNG."
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>"
"Michael Sweet <[email protected]>, Daniel Skarda <[email protected]>, Nick Lamb <[email protected]>"
"1.3.4 - 03 September 2002"
""
0
(icon stock-id -1 "")
""
9 0
(proc-arg 0 "interlace" "Use Adam7 interlacing?")
(proc-arg 0 "compression" "Deflate Compression factor (0--9)")
(proc-arg 0 "bkgd" "Write bKGD chunk?")
(proc-arg 0 "gama" "Write gAMA chunk?")
(proc-arg 0 "offs" "Write oFFs chunk?")
(proc-arg 0 "phys" "Write pHYs chunk?")
(proc-arg 0 "time" "Write tIME chunk?")
(proc-arg 0 "comment" "Write comment?")
(proc-arg 0 "svtrans" "Preserve color of transparent pixels?")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/emboss" 1389868182
(proc-def "plug-in-emboss" 1
"Simulate an image created by embossing"
"Emboss or Bumpmap the given drawable, specifying the angle and elevation for the light source."
"Eric L. Hernes, John Schlag"
"Eric L. Hernes"
"1997"
"_Emboss..."
1
(menu-path "<Image>/Filters/Distorts")
(icon stock-id -1 "")
"RGB*"
7 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 "azimuth" "The Light Angle (degrees)")
(proc-arg 3 "elevation" "The Elevation Angle (degrees)")
(proc-arg 0 "depth" "The Filter Width")
(proc-arg 0 "emboss" "Emboss or Bumpmap")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/red-eye-removal" 1389868180
(proc-def "plug-in-red-eye-removal" 1
"Remove the red eye effect caused by camera flashes"
"This plug-in removes the red eye effect caused by camera flashes by using a percentage based red color threshold. Make a selection containing the eyes, and apply the filter while adjusting the threshold to accurately remove the red eyes."
"Robert Merkel <[email protected]>, Andreas Røsdal <[email protected]>"
"Copyright 2004-2006 Robert Merkel, Andreas Røsdal"
"2006"
"_Red Eye Removal..."
1
(menu-path "<Image>/Filters/Enhance")
(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 0 "threshold" "Red eye threshold in percent")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/sharpen" 1389868182
(proc-def "plug-in-sharpen" 1
"Make image sharper (less powerful than Unsharp Mask)"
"This plug-in selectively performs a convolution filter on an image."
"Michael Sweet <[email protected]>"
"Copyright 1997-1998 by Michael Sweet"
"1.4.2 - 3 June 1998"
"_Sharpen..."
1
(menu-path "<Image>/Filters/Enhance")
(icon stock-id -1 "")
"RGB*, GRAY*"
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 0 "percent" "Percent sharpening (default = 10)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/flame" 1389868182
(proc-def "plug-in-flame" 1
"Create cosmic recursive fractal flames"
"Create cosmic recursive fractal flames"
"Scott Draves"
"Scott Draves"
"1997"
"_Flame..."
1
(menu-path "<Image>/Filters/Render/Nature")
(icon stock-id -1 "")
"RGB*"
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/tile-seamless" 1389868182
(proc-def "plug-in-make-seamless" 1
"Alters edges to make the image seamlessly tileable"
"This plugin creates a seamless tileable from the input drawable"
"Tim Rowley"
"Tim Rowley"
"1997"
"_Make Seamless"
1
(menu-path "<Image>/Filters/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/file-fli" 1389868180
(proc-def "file-fli-load" 1
"load FLI-movies"
"This is an experimantal plug-in to handle FLI movies"
"Jens Ch. Restemeier"
"Jens Ch. Restemeier"
"1997"
"AutoDesk FLIC animation"
0
(icon stock-id -1 "")
(load-proc
(extension "fli,flc")
(mime-type "image/x-flic"))
""
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-fli-save" 1
"save FLI-movies"
"This is an experimantal plug-in to handle FLI movies"
"Jens Ch. Restemeier"
"Jens Ch. Restemeier"
"1997"
"AutoDesk FLIC animation"
0
(icon stock-id -1 "")
(save-proc
(extension "fli,flc")
(mime-type "image/x-flic"))
"INDEXED,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" "Input drawable (unused)")
(proc-arg 4 "filename" "The name of the file to save")
(proc-arg 4 "raw-filename" "The name entered")
(proc-arg 0 "from-frame" "Save beginning from this frame")
(proc-arg 0 "to-frame" "End saving with this frame"))
(proc-def "file-fli-info" 1
"Get information about a Fli movie"
"This is a experimantal plug-in to handle FLI movies"
"Jens Ch. Restemeier"
"Jens Ch. Restemeier"
"1997"
""
0
(icon stock-id -1 "")
""
1 3
(proc-arg 4 "filename" "The name of the file to get info")
(proc-arg 0 "width" "Width of one frame")
(proc-arg 0 "height" "Height of one frame")
(proc-arg 0 "frames" "Number of Frames")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-cel" 1389868181
(proc-def "file-cel-load" 1
"Loads files in KISS CEL file format"
"This plug-in loads individual KISS cell files."
"Nick Lamb"
"Nick Lamb <[email protected]>"
"May 1998"
"KISS CEL"
0
(icon stock-id -1 "")
(load-proc
(extension "cel")
(magic "0,string,KiSS\\040"))
""
4 1
(proc-arg 0 "run-mode" "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }")
(proc-arg 4 "filename" "Filename to load image from")
(proc-arg 4 "raw-filename" "Name entered")
(proc-arg 4 "palette-filename" "Filename to load palette from")
(proc-arg 13 "image" "Output image"))
(proc-def "file-cel-save" 1
"Saves files in KISS CEL file format"
"This plug-in saves individual KISS cell files."
"Nick Lamb"
"Nick Lamb <[email protected]>"
"May 1998"
"KISS CEL"
0
(icon stock-id -1 "")
(save-proc
(extension "cel"))
"RGB*, 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" "Filename to save image to")
(proc-arg 4 "raw-filename" "Name entered")
(proc-arg 4 "palette-filename" "Filename to save palette to")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/gradient-map" 1389868180
(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/value-propagate" 1389868179
(proc-def "plug-in-vpropagate" 1
"Propagate certain colors to neighboring pixels"
"Propagate values of the layer"
"Shuji Narazaki ([email protected])"
"Shuji Narazaki"
"1996-1997"
"_Value Propagate..."
1
(menu-path "<Image>/Filters/Distorts")
(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 (not used)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "propagate-mode" "propagate 0:white, 1:black, 2:middle value 3:foreground to peak, 4:foreground, 5:background, 6:opaque, 7:transparent")
(proc-arg 0 "propagating-channel" "channels which values are propagated")
(proc-arg 3 "propagating-rate" "0.0 <= propagatating_rate <= 1.0")
(proc-arg 0 "direction-mask" "0 <= direction-mask <= 15")
(proc-arg 0 "lower-limit" "0 <= lower-limit <= 255")
(proc-arg 0 "upper-limit" "0 <= upper-limit <= 255"))
(proc-def "plug-in-erode" 1
"Shrink lighter areas of the image"
"Erode image"
"Shuji Narazaki ([email protected])"
"Shuji Narazaki"
"1996-1997"
"E_rode"
1
(menu-path "<Image>/Filters/Generic")
(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 (not used)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "propagate-mode" "propagate 0:white, 1:black, 2:middle value 3:foreground to peak, 4:foreground, 5:background, 6:opaque, 7:transparent")
(proc-arg 0 "propagating-channel" "channels which values are propagated")
(proc-arg 3 "propagating-rate" "0.0 <= propagatating_rate <= 1.0")
(proc-arg 0 "direction-mask" "0 <= direction-mask <= 15")
(proc-arg 0 "lower-limit" "0 <= lower-limit <= 255")
(proc-arg 0 "upper-limit" "0 <= upper-limit <= 255"))
(proc-def "plug-in-dilate" 1
"Grow lighter areas of the image"
"Dilate image"
"Shuji Narazaki ([email protected])"
"Shuji Narazaki"
"1996-1997"
"_Dilate"
1
(menu-path "<Image>/Filters/Generic")
(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 (not used)")
(proc-arg 16 "drawable" "Input drawable")
(proc-arg 0 "propagate-mode" "propagate 0:white, 1:black, 2:middle value 3:foreground to peak, 4:foreground, 5:background, 6:opaque, 7:transparent")
(proc-arg 0 "propagating-channel" "channels which values are propagated")
(proc-arg 3 "propagating-rate" "0.0 <= propagatating_rate <= 1.0")
(proc-arg 0 "direction-mask" "0 <= direction-mask <= 15")
(proc-arg 0 "lower-limit" "0 <= lower-limit <= 255")
(proc-arg 0 "upper-limit" "0 <= upper-limit <= 255")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/newsprint" 1389868182
(proc-def "plug-in-newsprint" 1
"Halftone the image to give newspaper-like effect"
"Halftone the image, trading off resolution to represent colors or grey levels using the process described both in the PostScript language definition, and also by Robert Ulichney, \"Digital halftoning\", MIT Press, 1987."
"Austin Donnelly"
"Austin Donnelly"
"1998 (v0.60)"
"Newsprin_t..."
1
(menu-path "<Image>/Filters/Distorts")
(icon stock-id -1 "")
"RGB*, GRAY*"
15 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 "cell-width" "Screen cell width in pixels")
(proc-arg 0 "colorspace" "Separate to { GRAYSCALE (0), RGB (1), CMYK (2), LUMINANCE (3) }")
(proc-arg 0 "k-pullout" "Percentage of black to pullout (CMYK only)")
(proc-arg 3 "gry-ang" "Grey/black screen angle (degrees)")
(proc-arg 0 "gry-spotfn" "Grey/black spot function { DOTS (0), LINES (1), DIAMONDS (2), EUCLIDIAN-DOT (3), PS-DIAMONDS (4) }")
(proc-arg 3 "red-ang" "Red/cyan screen angle (degrees)")
(proc-arg 0 "red-spotfn" "Red/cyan spot function (values as gry-spotfn)")
(proc-arg 3 "grn-ang" "Green/magenta screen angle (degrees)")
(proc-arg 0 "grn-spotfn" "Green/magenta spot function (values as gry-spotfn)")
(proc-arg 3 "blu-ang" "Blue/yellow screen angle (degrees)")
(proc-arg 0 "blu-spotfn" "Blue/yellow spot function (values as gry-spotfn)")
(proc-arg 0 "oversample" "how many times to oversample spot fn")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/cubism" 1389868181
(proc-def "plug-in-cubism" 1
"Convert the image into randomly rotated square blobs"
"Help not yet written for this plug-in"
"Spencer Kimball & Tracy Scott"
"Spencer Kimball & Tracy Scott"
"1996"
"_Cubism..."
1
(menu-path "<Image>/Filters/Artistic")
(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 "tile-size" "Average diameter of each tile (in pixels)")
(proc-arg 3 "tile-saturation" "Expand tiles by this amount")
(proc-arg 0 "bg-color" "Background color { BLACK (0), BG (1) }")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-jp2-load" 1389868180
(proc-def "file-jp2-load" 1
"Loads JPEG 2000 images."
"The JPEG 2000 image loader."
"Aurimas Juška"
"Aurimas Juška, Florian Traverse"
"2009"
"JPEG 2000 image"
0
(icon stock-id -1 "")
(load-proc
(extension "jp2,jpc,jpx,j2k,jpf")
(magic "4,string,jP,0,string,ÿOÿQ")
(mime-type "image/jp2"))
""
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")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/blur-motion" 1389868180
(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/file-sgi" 1389868182
(proc-def "file-sgi-load" 1
"Loads files in SGI image file format"
"This plug-in loads SGI image files."
"Michael Sweet <[email protected]>"
"Copyright 1997-1998 by Michael Sweet"
"1.1.1 - 17 May 1998"
"Silicon Graphics IRIS image"
0
(icon stock-id -1 "")
(load-proc
(extension "sgi,rgb,rgba,bw,icon")
(magic "0,short,474")
(mime-type "image/x-sgi"))
""
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-sgi-save" 1
"Saves files in SGI image file format"
"This plug-in saves SGI image files."
"Michael Sweet <[email protected]>"
"Copyright 1997-1998 by Michael Sweet"
"1.1.1 - 17 May 1998"
"Silicon Graphics IRIS image"
0
(icon stock-id -1 "")
(save-proc
(extension "sgi,rgb,rgba,bw,icon")
(mime-type "image/x-sgi"))
"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" "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 level (0 = none, 1 = RLE, 2 = ARLE)")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/tile-small" 1389868182
(proc-def "plug-in-small-tiles" 1
"Tile image into smaller versions of the original"
"More here later"
"Andy Thomas"
"Andy Thomas"
"1997"
"_Small Tiles..."
1
(menu-path "<Image>/Filters/Map")
(icon stock-id -1 "")
"RGB*, GRAY*"
4 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 "num-tiles" "Number of tiles to make")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/decompose" 1389868180
(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/channel-mixer" 1389868179
(proc-def "plug-in-colors-channel-mixer" 1
"Alter colors by mixing RGB Channels"
"This plug-in mixes the RGB channels."
"Martin Guldahl <[email protected]>"
"Martin Guldahl <[email protected]>"
"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/file-pnm" 1389868181
(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/file-tiff-load" 1389868180
(proc-def "file-tiff-load" 1
"loads files of the tiff file format"
"FIXME: write help for tiff_load"
"Spencer Kimball, Peter Mattis & Nick Lamb"
"Nick Lamb <[email protected]>"
"1995-1996,1998-2003"
"TIFF image"
0
(icon stock-id -1 "")
(load-proc
(extension "tif,tiff")
(magic "0,string,II*\\0,0,string,MM\\0*")
(mime-type "image/tiff"))
""
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")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/guillotine" 1389868180
(proc-def "plug-in-guillotine" 1
"Slice the image into subimages using guides"
"This function takes an image and slices it along its guides, creating new images. The original image is not modified."
"Adam D. Moss ([email protected])"
"Adam D. Moss ([email protected])"
"1998"
"_Guillotine"
1
(menu-path "<Image>/Image/Transform")
(icon stock-id -1 "")
"RGB*, INDEXED*, GRAY*"
3 2
(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 (unused)")
(proc-arg 0 "image-count" "Number of images created")
(proc-arg 5 "image-ids" "Output images")))
(plug-in-def "/usr/lib/gimp/2.0/plug-ins/file-ico" 1389868179
(proc-def "file-ico-load" 1
"Loads files of Windows ICO file format"
"Loads files of Windows ICO file format"
"Christian Kreibich <[email protected]>"
"Christian Kreibich <[email protected]>"
"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 <[email protected]>"
"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 <[email protected]>"
"Christian Kreibich <[email protected]>"
"2002"
"Microsoft Windows icon"
0
(icon stock-id -1 "")
(save-proc
(extension "ico")
(mime-type "image/x-ico"))