File: ImagickDraw.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 (911 lines) | stat: -rw-r--r-- 43,898 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
<?xml version="1.0" encoding="UTF-8" ?>
<class xmlns="http://xml.phpdox.net/src" full="ImagickDraw" namespace="" name="ImagickDraw">
  <method name="affine" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Adjusts the current affine transformation matrix"/>
      <return type="bool"/>
    </docblock>
    <parameter name="affine" optional="false" byreference="false" type="object" class="array"/>
  </method>
  <method name="annotation" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws text on the image"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="text" optional="false" byreference="false" type="string"/>
  </method>
  <method name="arc" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws an arc"/>
      <return type="bool"/>
    </docblock>
    <parameter name="sx" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="sy" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ex" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ey" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="sd" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ed" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="bezier" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a bezier curve"/>
      <return type="bool"/>
    </docblock>
    <parameter name="coordinates" optional="false" byreference="false" type="object" class="array"/>
  </method>
  <method name="circle" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a circle"/>
      <return type="bool"/>
    </docblock>
    <parameter name="ox" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="oy" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="px" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="py" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="clear" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Clears the ImagickDraw"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="clone" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Makes an exact copy of the specified ImagickDraw object"/>
      <return type="ImagickDraw"/>
    </docblock>
  </method>
  <method name="color" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws color on image"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="paintMethod" optional="false" byreference="false" type="int"/>
  </method>
  <method name="comment" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Adds a comment"/>
      <return type="bool"/>
    </docblock>
    <parameter name="comment" optional="false" byreference="false" type="string"/>
  </method>
  <method name="composite" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Composites an image onto the current image"/>
      <return type="bool"/>
    </docblock>
    <parameter name="compose" optional="false" byreference="false" type="int"/>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="width" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="height" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="compositeWand" optional="false" byreference="false" type="object" class="Imagick"/>
  </method>
  <constructor name="__construct" abstract="false" static="false" final="false">
    <docblock>
      <description compact="The ImagickDraw constructor"/>
      <return type="void"/>
    </docblock>
  </constructor>
  <method name="destroy" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Frees all associated resources"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="ellipse" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws an ellipse on the image"/>
      <return type="bool"/>
    </docblock>
    <parameter name="ox" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="oy" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="rx" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ry" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="start" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="end" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="getClipPath" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Obtains the current clipping path ID"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getClipRule" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the current polygon fill rule"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getClipUnits" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the interpretation of clip path units"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getFillColor" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the fill color"/>
      <return type="ImagickPixel"/>
    </docblock>
  </method>
  <method name="getFillOpacity" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the opacity used when drawing"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getFillRule" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the fill rule"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getFont" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the font"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getFontFamily" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the font family"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getFontSize" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the font pointsize"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getFontStretch" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getFontStyle" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the font style"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getFontWeight" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the font weight"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getGravity" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the text placement gravity"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getStrokeAntialias" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the current stroke antialias setting"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="getStrokeColor" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the color used for stroking object outlines"/>
      <return type="ImagickPixel"/>
    </docblock>
  </method>
  <method name="getStrokeDashArray" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns an array representing the pattern of dashes and gaps used to stroke paths"/>
      <return type="array"/>
    </docblock>
  </method>
  <method name="getStrokeDashOffset" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the offset into the dash pattern to start the dash"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getStrokeLineCap" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the shape to be used at the end of open subpaths when they are stroked"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getStrokeLineJoin" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the shape to be used at the corners of paths when they are stroked"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getStrokeMiterLimit" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the stroke miter limit"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getStrokeOpacity" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the opacity of stroked object outlines"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getStrokeWidth" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the width of the stroke used to draw object outlines"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getTextAlignment" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the text alignment"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getTextAntialias" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the current text antialias setting"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="getTextDecoration" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the text decoration"/>
      <return type="int"/>
    </docblock>
  </method>
  <method name="getTextEncoding" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the code set used for text annotations"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="getTextInterlineSpacing" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getTextInterwordSpacing" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getTextKerning" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="float"/>
    </docblock>
  </method>
  <method name="getTextUnderColor" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns the text under color"/>
      <return type="ImagickPixel"/>
    </docblock>
  </method>
  <method name="getVectorGraphics" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Returns a string containing vector graphics"/>
      <return type="string"/>
    </docblock>
  </method>
  <method name="line" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a line"/>
      <return type="bool"/>
    </docblock>
    <parameter name="sx" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="sy" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ex" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ey" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="matte" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Paints on the image's opacity channel"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="paintMethod" optional="false" byreference="false" type="int"/>
  </method>
  <method name="pathClose" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Adds a path element to the current path"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="pathCurveToAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a cubic Bezier curve"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="x2" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y2" optional="false" byreference="false" type="object" class="float"/>
    <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="pathCurveToQuadraticBezierAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a quadratic Bezier curve"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y1" optional="false" byreference="false" type="object" class="float"/>
    <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="pathCurveToQuadraticBezierRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a quadratic Bezier curve"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y1" optional="false" byreference="false" type="object" class="float"/>
    <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="pathCurveToQuadraticBezierSmoothAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a quadratic Bezier curve">Draws a quadratic Bezier curve (using absolute coordinates) from the current point to (x,y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a DrawPathCurveToQuadraticBezierAbsolute, DrawPathCurveToQuadraticBezierRelative, DrawPathCurveToQuadraticBezierSmoothAbsolut or DrawPathCurveToQuadraticBezierSmoothRelative, assume the control point is coincident with the current point.). At the end of the command, the new current point becomes the final (x,y) coordinate pair used in the polybezier.</description>
      <return type="bool"/>
    </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="pathCurveToQuadraticBezierSmoothRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a quadratic Bezier curve">Draws a quadratic Bezier curve (using relative coordinates) from the current point to (x, y). The control point is assumed to be the reflection of the control point on the previous command relative to the current point. (If there is no previous command or if the previous command was not a DrawPathCurveToQuadraticBezierAbsolute, DrawPathCurveToQuadraticBezierRelative, DrawPathCurveToQuadraticBezierSmoothAbsolut or DrawPathCurveToQuadraticBezierSmoothRelative, assume the control point is coincident with the current point). At the end of the command, the new current point becomes the final (x, y) coordinate pair used in the polybezier.</description>
      <return type="bool"/>
    </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="pathCurveToRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a cubic Bezier curve"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="x2" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y2" optional="false" byreference="false" type="object" class="float"/>
    <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="pathCurveToSmoothAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a cubic Bezier curve"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x2" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y2" optional="false" byreference="false" type="object" class="float"/>
    <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="pathCurveToSmoothRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a cubic Bezier curve"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x2" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y2" optional="false" byreference="false" type="object" class="float"/>
    <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="pathEllipticArcAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws an elliptical arc"/>
      <return type="bool"/>
    </docblock>
    <parameter name="rx" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ry" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="x_axis_rotation" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="large_arc_flag" optional="false" byreference="false" type="object" class="bool"/>
    <parameter name="sweep_flag" optional="false" byreference="false" type="object" class="bool"/>
    <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="pathEllipticArcRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws an elliptical arc"/>
      <return type="bool"/>
    </docblock>
    <parameter name="rx" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ry" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="x_axis_rotation" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="large_arc_flag" optional="false" byreference="false" type="object" class="bool"/>
    <parameter name="sweep_flag" optional="false" byreference="false" type="object" class="bool"/>
    <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="pathFinish" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Terminates the current path"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="pathLineToAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a line path"/>
      <return type="bool"/>
    </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="pathLineToHorizontalAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a horizontal line path"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="pathLineToHorizontalRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a horizontal line"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="pathLineToRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a line path"/>
      <return type="bool"/>
    </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="pathLineToVerticalAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a vertical line"/>
      <return type="bool"/>
    </docblock>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="pathLineToVerticalRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a vertical line path"/>
      <return type="bool"/>
    </docblock>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="pathMoveToAbsolute" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Starts a new sub-path"/>
      <return type="bool"/>
    </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="pathMoveToRelative" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Starts a new sub-path"/>
      <return type="bool"/>
    </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="pathStart" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Declares the start of a path drawing list"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="point" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a point"/>
      <return type="bool"/>
    </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="polygon" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a polygon"/>
      <return type="bool"/>
    </docblock>
    <parameter name="coordinates" optional="false" byreference="false" type="object" class="array"/>
  </method>
  <method name="polyline" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a polyline"/>
      <return type="bool"/>
    </docblock>
    <parameter name="coordinates" optional="false" byreference="false" type="object" class="array"/>
  </method>
  <method name="pop" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Destroys the current ImagickDraw in the stack, and returns to the previously pushed ImagickDraw"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="popClipPath" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Terminates a clip path definition"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="popDefs" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Terminates a definition list"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="popPattern" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Terminates a pattern definition"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="push" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Clones the current ImagickDraw and pushes it to the stack"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="pushClipPath" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Starts a clip path definition"/>
      <return type="bool"/>
    </docblock>
    <parameter name="clip_mask_id" optional="false" byreference="false" type="string"/>
  </method>
  <method name="pushDefs" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Indicates that following commands create named elements for early processing"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="pushPattern" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Indicates that subsequent commands up to a ImagickDraw::opPattern() command comprise the definition of a named pattern"/>
      <return type="bool"/>
    </docblock>
    <parameter name="pattern_id" optional="false" byreference="false" type="string"/>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="width" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="height" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="rectangle" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a rectangle"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="x2" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y2" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="render" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Renders all preceding drawing commands onto the image"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="resetVectorGraphics" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="bool"/>
    </docblock>
  </method>
  <method name="rotate" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Applies the specified rotation to the current coordinate space"/>
      <return type="bool"/>
    </docblock>
    <parameter name="degrees" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="roundRectangle" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Draws a rounded rectangle"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y1" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="x2" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y2" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="rx" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="ry" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="scale" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Adjusts the scaling factor"/>
      <return type="bool"/>
    </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="setClipPath" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Associates a named clipping path with the image"/>
      <return type="bool"/>
    </docblock>
    <parameter name="clip_mask" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setClipRule" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Set the polygon fill rule to be used by the clipping path"/>
      <return type="bool"/>
    </docblock>
    <parameter name="fill_rule" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setClipUnits" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the interpretation of clip path units"/>
      <return type="bool"/>
    </docblock>
    <parameter name="clip_units" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setFillAlpha" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the opacity to use when drawing using the fill color or fill texture"/>
      <return type="bool"/>
    </docblock>
    <parameter name="opacity" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setFillColor" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the fill color to be used for drawing filled objects"/>
      <return type="bool"/>
    </docblock>
    <parameter name="fill_pixel" optional="false" byreference="false" type="object" class="ImagickPixel"/>
  </method>
  <method name="setFillOpacity" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the opacity to use when drawing using the fill color or fill texture"/>
      <return type="bool"/>
    </docblock>
    <parameter name="fillOpacity" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setFillPatternURL" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the URL to use as a fill pattern for filling objects"/>
      <return type="bool"/>
    </docblock>
    <parameter name="fill_url" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setFillRule" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the fill rule to use while drawing polygons"/>
      <return type="bool"/>
    </docblock>
    <parameter name="fill_rule" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setFont" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the fully-specified font to use when annotating with text"/>
      <return type="bool"/>
    </docblock>
    <parameter name="font_name" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setFontFamily" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the font family to use when annotating with text"/>
      <return type="bool"/>
    </docblock>
    <parameter name="font_family" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setFontSize" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the font pointsize to use when annotating with text"/>
      <return type="bool"/>
    </docblock>
    <parameter name="pointsize" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setFontStretch" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the font stretch to use when annotating with text"/>
      <return type="bool"/>
    </docblock>
    <parameter name="fontStretch" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setFontStyle" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the font style to use when annotating with text"/>
      <return type="bool"/>
    </docblock>
    <parameter name="style" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setFontWeight" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the font weight"/>
      <return type="bool"/>
    </docblock>
    <parameter name="font_weight" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setGravity" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the text placement gravity"/>
      <return type="bool"/>
    </docblock>
    <parameter name="gravity" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setResolution" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x_resolution" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y_resolution" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setStrokeAlpha" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the opacity of stroked object outlines"/>
      <return type="bool"/>
    </docblock>
    <parameter name="opacity" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setStrokeAntialias" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Controls whether stroked outlines are antialiased"/>
      <return type="bool"/>
    </docblock>
    <parameter name="stroke_antialias" optional="false" byreference="false" type="object" class="bool"/>
  </method>
  <method name="setStrokeColor" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the color used for stroking object outlines"/>
      <return type="bool"/>
    </docblock>
    <parameter name="stroke_pixel" optional="false" byreference="false" type="object" class="ImagickPixel"/>
  </method>
  <method name="setStrokeDashArray" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the pattern of dashes and gaps used to stroke paths"/>
      <return type="bool"/>
    </docblock>
    <parameter name="dashArray" optional="false" byreference="false" type="object" class="array"/>
  </method>
  <method name="setStrokeDashOffset" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the offset into the dash pattern to start the dash"/>
      <return type="bool"/>
    </docblock>
    <parameter name="dash_offset" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setStrokeLineCap" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the shape to be used at the end of open subpaths when they are stroked"/>
      <return type="bool"/>
    </docblock>
    <parameter name="linecap" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setStrokeLineJoin" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the shape to be used at the corners of paths when they are stroked"/>
      <return type="bool"/>
    </docblock>
    <parameter name="linejoin" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setStrokeMiterLimit" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the miter limit"/>
      <return type="bool"/>
    </docblock>
    <parameter name="miterlimit" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setStrokeOpacity" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the opacity of stroked object outlines"/>
      <return type="bool"/>
    </docblock>
    <parameter name="stroke_opacity" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setStrokePatternURL" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the pattern used for stroking object outlines"/>
      <return type="bool"/>
    </docblock>
    <parameter name="stroke_url" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setStrokeWidth" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the width of the stroke used to draw object outlines"/>
      <return type="bool"/>
    </docblock>
    <parameter name="stroke_width" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setTextAlignment" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies a text alignment"/>
      <return type="bool"/>
    </docblock>
    <parameter name="alignment" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setTextAntialias" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Controls whether text is antialiased"/>
      <return type="bool"/>
    </docblock>
    <parameter name="antiAlias" optional="false" byreference="false" type="object" class="bool"/>
  </method>
  <method name="setTextDecoration" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies a decoration"/>
      <return type="bool"/>
    </docblock>
    <parameter name="decoration" optional="false" byreference="false" type="int"/>
  </method>
  <method name="setTextEncoding" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the text code set"/>
      <return type="bool"/>
    </docblock>
    <parameter name="encoding" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setTextInterlineSpacing" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="bool"/>
    </docblock>
    <parameter name="spacing" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setTextInterwordSpacing" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="bool"/>
    </docblock>
    <parameter name="spacing" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setTextKerning" abstract="false" static="false" visibility="public" final="false">
    <docblock>
      <description compact="Description"/>
      <return type="bool"/>
    </docblock>
    <parameter name="kerning" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="setTextUnderColor" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Specifies the color of a background rectangle"/>
      <return type="bool"/>
    </docblock>
    <parameter name="under_color" optional="false" byreference="false" type="object" class="ImagickPixel"/>
  </method>
  <method name="setVectorGraphics" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the vector graphics"/>
      <return type="bool"/>
    </docblock>
    <parameter name="xml" optional="false" byreference="false" type="string"/>
  </method>
  <method name="setViewbox" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Sets the overall canvas size"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x1" optional="false" byreference="false" type="int"/>
    <parameter name="y1" optional="false" byreference="false" type="int"/>
    <parameter name="x2" optional="false" byreference="false" type="int"/>
    <parameter name="y2" optional="false" byreference="false" type="int"/>
  </method>
  <method name="skewX" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Skews the current coordinate system in the horizontal direction"/>
      <return type="bool"/>
    </docblock>
    <parameter name="degrees" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="skewY" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Skews the current coordinate system in the vertical direction"/>
      <return type="bool"/>
    </docblock>
    <parameter name="degrees" optional="false" byreference="false" type="object" class="float"/>
  </method>
  <method name="translate" abstract="false" static="false" final="false">
    <docblock>
      <description compact="Applies a translation to the current coordinate system"/>
      <return type="bool"/>
    </docblock>
    <parameter name="x" optional="false" byreference="false" type="object" class="float"/>
    <parameter name="y" optional="false" byreference="false" type="object" class="float"/>
  </method>
</class>