File: Gmagick.xml

package info (click to toggle)
phpdox 0.12.0-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid
  • size: 7,672 kB
  • sloc: xml: 80,724; php: 9,167; makefile: 13
file content (1004 lines) | stat: -rw-r--r-- 47,521 bytes parent folder | download | duplicates (2)
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
1001
1002
1003
1004
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="Gmagick" namespace="" name="Gmagick">
  <method name="addimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds new image to Gmagick object image list"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="source" optional="false" byreference="false" type="object" class="Gmagick"/>
  </method>
  <method name="addnoiseimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds random noise to the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="noise_type" optional="false" byreference="false" type="int"/>
  </method>
  <method name="annotateimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Annotates an image with text"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="GmagickDraw" optional="false" byreference="false" type="object" class="GmagickDraw"/>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="angle" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="text" optional="false" byreference="false" type="string"/>
  </method>
  <method name="blurimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds blur filter to image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="sigma" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="channel" optional="true" byreference="false" type="int"/>
  </method>
  <method name="borderimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Surrounds the image with a border"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="color" optional="false" byreference="false" type="object" class="GmagickPixel"/>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
  </method>
  <method name="charcoalimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Simulates a charcoal drawing"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="sigma" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="chopimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Removes a region of an image and trims"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="x" optional="false" byreference="false" type="int"/>
    <parameter name="y" optional="false" byreference="false" type="int"/>
  </method>
  <method name="clear" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Clears all resources associated to Gmagick object"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="commentimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds a comment to your image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="comment" optional="false" byreference="false" type="string"/>
  </method>
  <method name="compositeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Composite one image onto another"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="source" optional="false" byreference="false" type="object" class="Gmagick"/>
    <parameter name="COMPOSE" optional="false" byreference="false" type="int"/>
    <parameter name="x" optional="false" byreference="false" type="int"/>
    <parameter name="y" optional="false" byreference="false" type="int"/>
  </method>
  <constructor name="__construct" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The Gmagick constructor"/>
      <return type="void"/>
    </docblock>
    <parameter name="filename" optional="true" byreference="false" type="string"/>
  </constructor>
  <method name="cropimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Extracts a region of the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="x" optional="false" byreference="false" type="int"/>
    <parameter name="y" optional="false" byreference="false" type="int"/>
  </method>
  <method name="cropthumbnailimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Creates a crop thumbnail"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
  </method>
  <method name="current" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The current purpose"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="cyclecolormapimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Displaces an image's colormap"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="displace" optional="false" byreference="false" type="int"/>
  </method>
  <method name="deconstructimages" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns certain pixel differences between images"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="despeckleimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The despeckleimage purpose"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="destroy" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The destroy purpose"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="drawimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Renders the GmagickDraw object on the current image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="GmagickDraw" optional="false" byreference="false" type="object" class="GmagickDraw"/>
  </method>
  <method name="edgeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Enhance edges within the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="embossimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns a grayscale image with a three-dimensional effect"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="sigma" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="enhanceimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Improves the quality of a noisy image"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="equalizeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Equalizes the image histogram"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="flipimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Creates a vertical mirror image"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="flopimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The flopimage purpose"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="frameimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds a simulated three-dimensional border"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="color" optional="false" byreference="false" type="object" class="GmagickPixel"/>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="inner_bevel" optional="false" byreference="false" type="int"/>
    <parameter name="outer_bevel" optional="false" byreference="false" type="int"/>
  </method>
  <method name="gammaimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gamma-corrects an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="gamma" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="getcopyright" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the GraphicsMagick API copyright as a string"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getfilename" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The filename associated with an image sequence"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getimagebackgroundcolor" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the image background color"/>
      <return type="GmagickPixel"/>
    </docblock>
  </method>
  <method name="getimageblueprimary" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the chromaticy blue primary point"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getimagebordercolor" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the image border color"/>
      <return type="GmagickPixel"/>
    </docblock>
  </method>
  <method name="getimagechanneldepth" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the depth for a particular image channel"/>
      <return type="int"/>
    </docblock>
    <parameter name="channel_type" optional="false" byreference="false" type="int"/>
  </method>
  <method name="getimagecolors" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact=" Returns the color of the specified colormap index"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagecolorspace" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image colorspace"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagecompose" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the composite operator associated with the image"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagedelay" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image delay"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagedepth" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the depth of the image"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagedispose" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image disposal method"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimageextrema" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the extrema for the image"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getimagefilename" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the filename of a particular image in a sequence"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getimageformat" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the format of a particular image in a sequence"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getimagegamma" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image gamma"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getimagegreenprimary" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the chromaticy green primary point"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getimageheight" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the image height"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagehistogram" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image histogram"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getimageindex" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the index of the current active image"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimageinterlacescheme" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image interlace scheme"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimageiterations" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image iterations"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagematte" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Check if the image has a matte channel"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagemattecolor" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the image matte color"/>
      <return type="GmagickPixel"/>
    </docblock>
  </method>
  <method name="getimageprofile" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the named image profile"/>
      <return type="string"/>
    </docblock>
    <parameter name="name" optional="false" byreference="false" type="string"/>
  </method>
  <method name="getimageredprimary" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the chromaticity red primary point"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getimagerenderingintent" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image rendering intent"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimageresolution" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image X and Y resolution"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getimagescene" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image scene"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagesignature" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Generates an SHA-256 message digest"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getimagetype" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the potential image type"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimageunits" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the image units of resolution"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getimagewhitepoint" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the chromaticity white point"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getimagewidth" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the width of the image"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getpackagename" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the GraphicsMagick package name"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getquantumdepth" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the Gmagick quantum depth as a string"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getreleasedate" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the GraphicsMagick release date as a string"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getsamplingfactors" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Gets the horizontal and vertical sampling factor"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getsize" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the size associated with the Gmagick object"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getversion" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the GraphicsMagick API version"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="hasnextimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Checks if the object has more images"/>
      <return type="mixed"/>
    </docblock>
  </method>
  <method name="haspreviousimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Checks if the object has a previous image"/>
      <return type="mixed"/>
    </docblock>
  </method>
  <method name="implodeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Creates a new image as a copy"/>
      <return type="mixed"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="labelimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds a label to an image"/>
      <return type="mixed"/>
    </docblock>
    <parameter name="label" optional="false" byreference="false" type="string"/>
  </method>
  <method name="levelimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adjusts the levels of an image"/>
      <return type="mixed"/>
    </docblock>
    <parameter name="blackPoint" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="gamma" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="whitePoint" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="channel" optional="true" byreference="false" type="int"/>
  </method>
  <method name="magnifyimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Scales an image proportionally 2x"/>
      <return type="mixed"/>
    </docblock>
  </method>
  <method name="mapimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Replaces the colors of an image with the closest color from a reference image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="gmagick" optional="false" byreference="false" type="object" class="gmagick"/>
    <parameter name="dither" optional="false" byreference="false" type="object" class="bool"/>
  </method>
  <method name="medianfilterimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Applies a digital filter"/>
      <return type="void"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="minifyimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Scales an image proportionally to half its size"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="modulateimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Control the brightness, saturation, and hue"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="brightness" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="saturation" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="hue" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="motionblurimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Simulates motion blur"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="sigma" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="angle" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="newimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Creates a new image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="background" optional="false" byreference="false" type="string"/>
    <parameter name="format" optional="true" byreference="false" type="string"/>
  </method>
  <method name="nextimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Moves to the next image"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="normalizeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Enhances the contrast of a color image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="channel" optional="true" byreference="false" type="int"/>
  </method>
  <method name="oilpaintimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Simulates an oil painting"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="previousimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Move to the previous image in the object"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="profileimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds or removes a profile from an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="name" optional="false" byreference="false" type="string"/>
    <parameter name="profile" optional="false" byreference="false" type="string"/>
  </method>
  <method name="quantizeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Analyzes the colors within a reference image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="numColors" optional="false" byreference="false" type="int"/>
    <parameter name="colorspace" optional="false" byreference="false" type="int"/>
    <parameter name="treeDepth" optional="false" byreference="false" type="int"/>
    <parameter name="dither" optional="false" byreference="false" type="object" class="bool"/>
    <parameter name="measureError" optional="false" byreference="false" type="object" class="bool"/>
  </method>
  <method name="quantizeimages" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The quantizeimages purpose"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="numColors" optional="false" byreference="false" type="int"/>
    <parameter name="colorspace" optional="false" byreference="false" type="int"/>
    <parameter name="treeDepth" optional="false" byreference="false" type="int"/>
    <parameter name="dither" optional="false" byreference="false" type="object" class="bool"/>
    <parameter name="measureError" optional="false" byreference="false" type="object" class="bool"/>
  </method>
  <method name="queryfontmetrics" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns an array representing the font metrics"/>
      <return type="array"/>
    </docblock>
    <parameter name="draw" optional="false" byreference="false" type="object" class="GmagickDraw"/>
    <parameter name="text" optional="false" byreference="false" type="string"/>
  </method>
  <method name="queryfonts" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns the configured fonts"/>
      <return type="array"/>
    </docblock>
    <parameter name="pattern" optional="true" byreference="false" type="string"/>
  </method>
  <method name="queryformats" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Returns formats supported by Gmagick"/>
      <return type="array"/>
    </docblock>
    <parameter name="pattern" optional="true" byreference="false" type="string"/>
  </method>
  <method name="radialblurimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Radial blurs an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="angle" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="channel" optional="true" byreference="false" type="int"/>
  </method>
  <method name="raiseimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Creates a simulated 3d button-like effect"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="x" optional="false" byreference="false" type="int"/>
    <parameter name="y" optional="false" byreference="false" type="int"/>
    <parameter name="raise" optional="false" byreference="false" type="object" class="bool"/>
  </method>
  <method name="read" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Reads image from filename"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="filename" optional="false" byreference="false" type="string"/>
  </method>
  <method name="readimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Reads image from filename"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="filename" optional="false" byreference="false" type="string"/>
  </method>
  <method name="readimageblob" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Reads image from a binary string"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="imageContents" optional="false" byreference="false" type="string"/>
    <parameter name="filename" optional="true" byreference="false" type="string"/>
  </method>
  <method name="readimagefile" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="The readimagefile purpose"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="fp" optional="false" byreference="false" type="object" class="resource"/>
    <parameter name="filename" optional="true" byreference="false" type="string"/>
  </method>
  <method name="reducenoiseimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Smooths the contours of an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="removeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Removes an image from the image list"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="removeimageprofile" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Removes the named image profile and returns it"/>
      <return type="string"/>
    </docblock>
    <parameter name="name" optional="false" byreference="false" type="string"/>
  </method>
  <method name="resampleimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Resample image to desired resolution"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="xResolution" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="yResolution" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="filter" optional="false" byreference="false" type="int"/>
    <parameter name="blur" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="resizeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Scales an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="filter" optional="false" byreference="false" type="int"/>
    <parameter name="blur" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="fit" optional="true" byreference="false" type="object" class="bool"/>
  </method>
  <method name="rollimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Offsets an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="int"/>
    <parameter name="y" optional="false" byreference="false" type="int"/>
  </method>
  <method name="rotateimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Rotates an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="color" optional="false" byreference="false" type="object" class="mixed"/>
    <parameter name="degrees" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="scaleimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Scales the size of an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="fit" optional="true" byreference="false" type="object" class="bool"/>
  </method>
  <method name="separateimagechannel" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Separates a channel from the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="channel" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setCompressionQuality" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the object's default compression quality"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="quality" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setfilename" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the filename before you read or write the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="filename" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setimagebackgroundcolor" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image background color"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="color" optional="false" byreference="false" type="object" class="GmagickPixel"/>
  </method>
  <method name="setimageblueprimary" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image chromaticity blue primary point"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setimagebordercolor" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image border color"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="color" optional="false" byreference="false" type="object" class="GmagickPixel"/>
  </method>
  <method name="setimagechanneldepth" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the depth of a particular image channel"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="channel" optional="false" byreference="false" type="int"/>
    <parameter name="depth" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagecolorspace" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image colorspace"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="colorspace" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagecompose" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image composite operator"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="composite" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagedelay" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image delay"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="delay" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagedepth" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image depth"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="depth" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagedispose" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image disposal method"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="disposeType" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagefilename" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the filename of a particular image in a sequence"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="filename" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setimageformat" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the format of a particular image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="imageFormat" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setimagegamma" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image gamma"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="gamma" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setimagegreenprimary" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image chromaticity green primary point"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setimageindex" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Set the iterator to the position in the image list specified with the index parameter"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="index" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimageinterlacescheme" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the interlace scheme of the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="interlace" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimageiterations" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image iterations"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="iterations" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimageprofile" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Adds a named profile to the Gmagick object"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="name" optional="false" byreference="false" type="string"/>
    <parameter name="profile" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setimageredprimary" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image chromaticity red primary point"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setimagerenderingintent" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image rendering intent"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="rendering_intent" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimageresolution" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image resolution"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="xResolution" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="yResolution" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setimagescene" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image scene"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="scene" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagetype" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image type"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="imgType" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimageunits" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image units of resolution"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="resolution" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setimagewhitepoint" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image chromaticity white point"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setsamplingfactors" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the image sampling factors"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="factors" optional="false" byreference="false" type="object" class="array"/>
  </method>
  <method name="setsize" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Sets the size of the Gmagick object"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="columns" optional="false" byreference="false" type="int"/>
    <parameter name="rows" optional="false" byreference="false" type="int"/>
  </method>
  <method name="shearimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Creating a parallelogram"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="color" optional="false" byreference="false" type="object" class="mixed"/>
    <parameter name="xShear" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="yShear" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="solarizeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Applies a solarizing effect to the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="threshold" optional="false" byreference="false" type="int"/>
  </method>
  <method name="spreadimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Randomly displaces each pixel in a block"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="radius" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="stripimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Strips an image of all profiles and comments"/>
      <return type="Gmagick"/>
    </docblock>
  </method>
  <method name="swirlimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Swirls the pixels about the center of the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="degrees" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="thumbnailimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Changes the size of an image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="width" optional="false" byreference="false" type="int"/>
    <parameter name="height" optional="false" byreference="false" type="int"/>
    <parameter name="fit" optional="true" byreference="false" type="object" class="bool"/>
  </method>
  <method name="trimimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Remove edges from the image"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="fuzz" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="writeimage" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Writes an image to the specified filename"/>
      <return type="Gmagick"/>
    </docblock>
    <parameter name="filename" optional="false" byreference="false" type="string"/>
    <parameter name="all_frames" optional="true" byreference="false" type="object" class="bool"/>
  </method>
</class>