Clean up VectorEffects::init
[hiphop-php.git] / hphp / runtime / ext / ext_magick.cpp
blob7922f799a0092d409eed160b9c1fbdb65a502dc9
1 /*
2 +----------------------------------------------------------------------+
3 | HipHop for PHP |
4 +----------------------------------------------------------------------+
5 | Copyright (c) 2010-2013 Facebook, Inc. (http://www.facebook.com) |
6 | Copyright (c) 1997-2010 The PHP Group |
7 +----------------------------------------------------------------------+
8 | This source file is subject to version 3.01 of the PHP license, |
9 | that is bundled with this package in the file LICENSE, and is |
10 | available through the world-wide-web at the following url: |
11 | http://www.php.net/license/3_01.txt |
12 | If you did not receive a copy of the PHP license and are unable to |
13 | obtain it through the world-wide-web, please send a note to |
14 | license@php.net so we can mail you a copy immediately. |
15 +----------------------------------------------------------------------+
18 #include "hphp/runtime/ext/ext_magick.h"
20 namespace HPHP {
21 ///////////////////////////////////////////////////////////////////////////////
23 String f_magickgetcopyright() {
24 throw NotImplementedException(__func__);
27 String f_magickgethomeurl() {
28 throw NotImplementedException(__func__);
31 String f_magickgetpackagename() {
32 throw NotImplementedException(__func__);
35 double f_magickgetquantumdepth() {
36 throw NotImplementedException(__func__);
39 String f_magickgetreleasedate() {
40 throw NotImplementedException(__func__);
43 double f_magickgetresourcelimit(int resource_type) {
44 throw NotImplementedException(__func__);
47 Array f_magickgetversion() {
48 throw NotImplementedException(__func__);
51 int64_t f_magickgetversionnumber() {
52 throw NotImplementedException(__func__);
55 String f_magickgetversionstring() {
56 throw NotImplementedException(__func__);
59 String f_magickqueryconfigureoption(CStrRef option) {
60 throw NotImplementedException(__func__);
63 Array f_magickqueryconfigureoptions(CStrRef pattern) {
64 throw NotImplementedException(__func__);
67 Array f_magickqueryfonts(CStrRef pattern) {
68 throw NotImplementedException(__func__);
71 Array f_magickqueryformats(CStrRef pattern) {
72 throw NotImplementedException(__func__);
75 bool f_magicksetresourcelimit(int resource_type, double limit) {
76 throw NotImplementedException(__func__);
79 Resource f_newdrawingwand() {
80 throw NotImplementedException(__func__);
83 Resource f_newmagickwand() {
84 throw NotImplementedException(__func__);
87 Resource f_newpixeliterator(CResRef mgck_wnd) {
88 throw NotImplementedException(__func__);
91 Resource f_newpixelregioniterator(CResRef mgck_wnd, int x, int y, int columns,
92 int rows) {
93 throw NotImplementedException(__func__);
96 Resource f_newpixelwand(CStrRef imagemagick_col_str /* = null_string */) {
97 throw NotImplementedException(__func__);
100 Array f_newpixelwandarray(int num_pxl_wnds) {
101 throw NotImplementedException(__func__);
104 Array f_newpixelwands(int num_pxl_wnds) {
105 throw NotImplementedException(__func__);
108 void f_destroydrawingwand(CResRef drw_wnd) {
109 throw NotImplementedException(__func__);
112 void f_destroymagickwand(CResRef mgck_wnd) {
113 throw NotImplementedException(__func__);
116 void f_destroypixeliterator(CResRef pxl_iter) {
117 throw NotImplementedException(__func__);
120 void f_destroypixelwand(CResRef pxl_wnd) {
121 throw NotImplementedException(__func__);
124 void f_destroypixelwandarray(CArrRef pxl_wnd_array) {
125 throw NotImplementedException(__func__);
128 void f_destroypixelwands(CArrRef pxl_wnd_array) {
129 throw NotImplementedException(__func__);
132 bool f_isdrawingwand(CVarRef var) {
133 throw NotImplementedException(__func__);
136 bool f_ismagickwand(CVarRef var) {
137 throw NotImplementedException(__func__);
140 bool f_ispixeliterator(CVarRef var) {
141 throw NotImplementedException(__func__);
144 bool f_ispixelwand(CVarRef var) {
145 throw NotImplementedException(__func__);
148 void f_cleardrawingwand(CResRef drw_wnd) {
149 throw NotImplementedException(__func__);
152 void f_clearmagickwand(CResRef mgck_wnd) {
153 throw NotImplementedException(__func__);
156 void f_clearpixeliterator(CResRef pxl_iter) {
157 throw NotImplementedException(__func__);
160 void f_clearpixelwand(CResRef pxl_wnd) {
161 throw NotImplementedException(__func__);
164 Resource f_clonedrawingwand(CResRef drw_wnd) {
165 throw NotImplementedException(__func__);
168 Resource f_clonemagickwand(CResRef mgck_wnd) {
169 throw NotImplementedException(__func__);
172 Array f_wandgetexception(CResRef wnd) {
173 throw NotImplementedException(__func__);
176 String f_wandgetexceptionstring(CResRef wnd) {
177 throw NotImplementedException(__func__);
180 int64_t f_wandgetexceptiontype(CResRef wnd) {
181 throw NotImplementedException(__func__);
184 bool f_wandhasexception(CResRef wnd) {
185 throw NotImplementedException(__func__);
188 void f_drawaffine(CResRef drw_wnd, double sx, double sy, double rx, double ry,
189 double tx, double ty) {
190 throw NotImplementedException(__func__);
193 void f_drawannotation(CResRef drw_wnd, double x, double y, CStrRef text) {
194 throw NotImplementedException(__func__);
197 void f_drawarc(CResRef drw_wnd, double sx, double sy, double ex, double ey,
198 double sd, double ed) {
199 throw NotImplementedException(__func__);
202 void f_drawbezier(CResRef drw_wnd, CArrRef x_y_points_array) {
203 throw NotImplementedException(__func__);
206 void f_drawcircle(CResRef drw_wnd, double ox, double oy, double px, double py) {
207 throw NotImplementedException(__func__);
210 void f_drawcolor(CResRef drw_wnd, double x, double y, int paint_method) {
211 throw NotImplementedException(__func__);
214 void f_drawcomment(CResRef drw_wnd, CStrRef comment) {
215 throw NotImplementedException(__func__);
218 bool f_drawcomposite(CResRef drw_wnd, int composite_operator, double x,
219 double y, double width, double height, CResRef mgck_wnd) {
220 throw NotImplementedException(__func__);
223 void f_drawellipse(CResRef drw_wnd, double ox, double oy, double rx, double ry,
224 double start, double end) {
225 throw NotImplementedException(__func__);
228 String f_drawgetclippath(CResRef drw_wnd) {
229 throw NotImplementedException(__func__);
232 int64_t f_drawgetcliprule(CResRef drw_wnd) {
233 throw NotImplementedException(__func__);
236 int64_t f_drawgetclipunits(CResRef drw_wnd) {
237 throw NotImplementedException(__func__);
240 Array f_drawgetexception(CResRef drw_wnd) {
241 throw NotImplementedException(__func__);
244 String f_drawgetexceptionstring(CResRef drw_wnd) {
245 throw NotImplementedException(__func__);
248 int64_t f_drawgetexceptiontype(CResRef drw_wnd) {
249 throw NotImplementedException(__func__);
252 double f_drawgetfillalpha(CResRef drw_wnd) {
253 throw NotImplementedException(__func__);
256 Resource f_drawgetfillcolor(CResRef drw_wnd) {
257 throw NotImplementedException(__func__);
260 double f_drawgetfillopacity(CResRef drw_wnd) {
261 throw NotImplementedException(__func__);
264 int64_t f_drawgetfillrule(CResRef drw_wnd) {
265 throw NotImplementedException(__func__);
268 String f_drawgetfont(CResRef drw_wnd) {
269 throw NotImplementedException(__func__);
272 String f_drawgetfontfamily(CResRef drw_wnd) {
273 throw NotImplementedException(__func__);
276 double f_drawgetfontsize(CResRef drw_wnd) {
277 throw NotImplementedException(__func__);
280 int64_t f_drawgetfontstretch(CResRef drw_wnd) {
281 throw NotImplementedException(__func__);
284 int64_t f_drawgetfontstyle(CResRef drw_wnd) {
285 throw NotImplementedException(__func__);
288 double f_drawgetfontweight(CResRef drw_wnd) {
289 throw NotImplementedException(__func__);
292 int64_t f_drawgetgravity(CResRef drw_wnd) {
293 throw NotImplementedException(__func__);
296 double f_drawgetstrokealpha(CResRef drw_wnd) {
297 throw NotImplementedException(__func__);
300 bool f_drawgetstrokeantialias(CResRef drw_wnd) {
301 throw NotImplementedException(__func__);
304 Resource f_drawgetstrokecolor(CResRef drw_wnd) {
305 throw NotImplementedException(__func__);
308 Array f_drawgetstrokedasharray(CResRef drw_wnd) {
309 throw NotImplementedException(__func__);
312 double f_drawgetstrokedashoffset(CResRef drw_wnd) {
313 throw NotImplementedException(__func__);
316 int64_t f_drawgetstrokelinecap(CResRef drw_wnd) {
317 throw NotImplementedException(__func__);
320 int64_t f_drawgetstrokelinejoin(CResRef drw_wnd) {
321 throw NotImplementedException(__func__);
324 double f_drawgetstrokemiterlimit(CResRef drw_wnd) {
325 throw NotImplementedException(__func__);
328 double f_drawgetstrokeopacity(CResRef drw_wnd) {
329 throw NotImplementedException(__func__);
332 double f_drawgetstrokewidth(CResRef drw_wnd) {
333 throw NotImplementedException(__func__);
336 int64_t f_drawgettextalignment(CResRef drw_wnd) {
337 throw NotImplementedException(__func__);
340 bool f_drawgettextantialias(CResRef drw_wnd) {
341 throw NotImplementedException(__func__);
344 int64_t f_drawgettextdecoration(CResRef drw_wnd) {
345 throw NotImplementedException(__func__);
348 String f_drawgettextencoding(CResRef drw_wnd) {
349 throw NotImplementedException(__func__);
352 Resource f_drawgettextundercolor(CResRef drw_wnd) {
353 throw NotImplementedException(__func__);
356 String f_drawgetvectorgraphics(CResRef drw_wnd) {
357 throw NotImplementedException(__func__);
360 void f_drawline(CResRef drw_wnd, double sx, double sy, double ex, double ey) {
361 throw NotImplementedException(__func__);
364 void f_drawmatte(CResRef drw_wnd, double x, double y, int paint_method) {
365 throw NotImplementedException(__func__);
368 void f_drawpathclose(CResRef drw_wnd) {
369 throw NotImplementedException(__func__);
372 void f_drawpathcurvetoabsolute(CResRef drw_wnd, double x1, double y1, double x2,
373 double y2, double x, double y) {
374 throw NotImplementedException(__func__);
377 void f_drawpathcurvetoquadraticbezierabsolute(CResRef drw_wnd,
378 double x1,
379 double y1,
380 double x,
381 double y) {
382 throw NotImplementedException(__func__);
385 void f_drawpathcurvetoquadraticbezierrelative(CResRef drw_wnd,
386 double x1,
387 double y1,
388 double x,
389 double y) {
390 throw NotImplementedException(__func__);
393 void f_drawpathcurvetoquadraticbeziersmoothabsolute(CResRef drw_wnd,
394 double x,
395 double y) {
396 throw NotImplementedException(__func__);
399 void f_drawpathcurvetoquadraticbeziersmoothrelative(CResRef drw_wnd,
400 double x,
401 double y) {
402 throw NotImplementedException(__func__);
405 void f_drawpathcurvetorelative(CResRef drw_wnd, double x1, double y1, double x2,
406 double y2, double x, double y) {
407 throw NotImplementedException(__func__);
410 void f_drawpathcurvetosmoothabsolute(CResRef drw_wnd, double x2, double y2,
411 double x, double y) {
412 throw NotImplementedException(__func__);
415 void f_drawpathcurvetosmoothrelative(CResRef drw_wnd, double x2, double y2,
416 double x, double y) {
417 throw NotImplementedException(__func__);
420 void f_drawpathellipticarcabsolute(CResRef drw_wnd, double rx, double ry,
421 double x_axis_rotation, bool large_arc_flag,
422 bool sweep_flag, double x, double y) {
423 throw NotImplementedException(__func__);
426 void f_drawpathellipticarcrelative(CResRef drw_wnd, double rx, double ry,
427 double x_axis_rotation, bool large_arc_flag,
428 bool sweep_flag, double x, double y) {
429 throw NotImplementedException(__func__);
432 void f_drawpathfinish(CResRef drw_wnd) {
433 throw NotImplementedException(__func__);
436 void f_drawpathlinetoabsolute(CResRef drw_wnd, double x, double y) {
437 throw NotImplementedException(__func__);
440 void f_drawpathlinetohorizontalabsolute(CResRef drw_wnd, double x) {
441 throw NotImplementedException(__func__);
444 void f_drawpathlinetohorizontalrelative(CResRef drw_wnd, double x) {
445 throw NotImplementedException(__func__);
448 void f_drawpathlinetorelative(CResRef drw_wnd, double x, double y) {
449 throw NotImplementedException(__func__);
452 void f_drawpathlinetoverticalabsolute(CResRef drw_wnd, double y) {
453 throw NotImplementedException(__func__);
456 void f_drawpathlinetoverticalrelative(CResRef drw_wnd, double y) {
457 throw NotImplementedException(__func__);
460 void f_drawpathmovetoabsolute(CResRef drw_wnd, double x, double y) {
461 throw NotImplementedException(__func__);
464 void f_drawpathmovetorelative(CResRef drw_wnd, double x, double y) {
465 throw NotImplementedException(__func__);
468 void f_drawpathstart(CResRef drw_wnd) {
469 throw NotImplementedException(__func__);
472 void f_drawpoint(CResRef drw_wnd, double x, double y) {
473 throw NotImplementedException(__func__);
476 void f_drawpolygon(CResRef drw_wnd, CArrRef x_y_points_array) {
477 throw NotImplementedException(__func__);
480 void f_drawpolyline(CResRef drw_wnd, CArrRef x_y_points_array) {
481 throw NotImplementedException(__func__);
484 void f_drawrectangle(CResRef drw_wnd, double x1, double y1, double x2,
485 double y2) {
486 throw NotImplementedException(__func__);
489 bool f_drawrender(CResRef drw_wnd) {
490 throw NotImplementedException(__func__);
493 void f_drawrotate(CResRef drw_wnd, double degrees) {
494 throw NotImplementedException(__func__);
497 void f_drawroundrectangle(CResRef drw_wnd, double x1, double y1, double x2,
498 double y2, double rx, double ry) {
499 throw NotImplementedException(__func__);
502 void f_drawscale(CResRef drw_wnd, double x, double y) {
503 throw NotImplementedException(__func__);
506 bool f_drawsetclippath(CResRef drw_wnd, CStrRef clip_path) {
507 throw NotImplementedException(__func__);
510 void f_drawsetcliprule(CResRef drw_wnd, int fill_rule) {
511 throw NotImplementedException(__func__);
514 void f_drawsetclipunits(CResRef drw_wnd, int clip_path_units) {
515 throw NotImplementedException(__func__);
518 void f_drawsetfillalpha(CResRef drw_wnd, double fill_opacity) {
519 throw NotImplementedException(__func__);
522 void f_drawsetfillcolor(CResRef drw_wnd, CResRef fill_pxl_wnd) {
523 throw NotImplementedException(__func__);
526 void f_drawsetfillopacity(CResRef drw_wnd, double fill_opacity) {
527 throw NotImplementedException(__func__);
530 bool f_drawsetfillpatternurl(CResRef drw_wnd, CStrRef fill_url) {
531 throw NotImplementedException(__func__);
534 void f_drawsetfillrule(CResRef drw_wnd, int fill_rule) {
535 throw NotImplementedException(__func__);
538 bool f_drawsetfont(CResRef drw_wnd, CStrRef font_file) {
539 throw NotImplementedException(__func__);
542 bool f_drawsetfontfamily(CResRef drw_wnd, CStrRef font_family) {
543 throw NotImplementedException(__func__);
546 void f_drawsetfontsize(CResRef drw_wnd, double pointsize) {
547 throw NotImplementedException(__func__);
550 void f_drawsetfontstretch(CResRef drw_wnd, int stretch_type) {
551 throw NotImplementedException(__func__);
554 void f_drawsetfontstyle(CResRef drw_wnd, int style_type) {
555 throw NotImplementedException(__func__);
558 void f_drawsetfontweight(CResRef drw_wnd, double font_weight) {
559 throw NotImplementedException(__func__);
562 void f_drawsetgravity(CResRef drw_wnd, int gravity_type) {
563 throw NotImplementedException(__func__);
566 void f_drawsetstrokealpha(CResRef drw_wnd, double stroke_opacity) {
567 throw NotImplementedException(__func__);
570 void f_drawsetstrokeantialias(CResRef drw_wnd,
571 bool stroke_antialias /* = true */) {
572 throw NotImplementedException(__func__);
575 void f_drawsetstrokecolor(CResRef drw_wnd, CResRef strokecolor_pxl_wnd) {
576 throw NotImplementedException(__func__);
579 void f_drawsetstrokedasharray(CResRef drw_wnd,
580 CArrRef dash_array /* = null_array */) {
581 throw NotImplementedException(__func__);
584 void f_drawsetstrokedashoffset(CResRef drw_wnd, double dash_offset) {
585 throw NotImplementedException(__func__);
588 void f_drawsetstrokelinecap(CResRef drw_wnd, int line_cap) {
589 throw NotImplementedException(__func__);
592 void f_drawsetstrokelinejoin(CResRef drw_wnd, int line_join) {
593 throw NotImplementedException(__func__);
596 void f_drawsetstrokemiterlimit(CResRef drw_wnd, double miterlimit) {
597 throw NotImplementedException(__func__);
600 void f_drawsetstrokeopacity(CResRef drw_wnd, double stroke_opacity) {
601 throw NotImplementedException(__func__);
604 bool f_drawsetstrokepatternurl(CResRef drw_wnd, CStrRef stroke_url) {
605 throw NotImplementedException(__func__);
608 void f_drawsetstrokewidth(CResRef drw_wnd, double stroke_width) {
609 throw NotImplementedException(__func__);
612 void f_drawsettextalignment(CResRef drw_wnd, int align_type) {
613 throw NotImplementedException(__func__);
616 void f_drawsettextantialias(CResRef drw_wnd, bool text_antialias /* = true */) {
617 throw NotImplementedException(__func__);
620 void f_drawsettextdecoration(CResRef drw_wnd, int decoration_type) {
621 throw NotImplementedException(__func__);
624 void f_drawsettextencoding(CResRef drw_wnd, CStrRef encoding) {
625 throw NotImplementedException(__func__);
628 void f_drawsettextundercolor(CResRef drw_wnd, CResRef undercolor_pxl_wnd) {
629 throw NotImplementedException(__func__);
632 bool f_drawsetvectorgraphics(CResRef drw_wnd, CStrRef vector_graphics) {
633 throw NotImplementedException(__func__);
636 void f_drawsetviewbox(CResRef drw_wnd, double x1, double y1, double x2,
637 double y2) {
638 throw NotImplementedException(__func__);
641 void f_drawskewx(CResRef drw_wnd, double degrees) {
642 throw NotImplementedException(__func__);
645 void f_drawskewy(CResRef drw_wnd, double degrees) {
646 throw NotImplementedException(__func__);
649 void f_drawtranslate(CResRef drw_wnd, double x, double y) {
650 throw NotImplementedException(__func__);
653 void f_pushdrawingwand(CResRef drw_wnd) {
654 throw NotImplementedException(__func__);
657 void f_drawpushclippath(CResRef drw_wnd, CStrRef clip_path_id) {
658 throw NotImplementedException(__func__);
661 void f_drawpushdefs(CResRef drw_wnd) {
662 throw NotImplementedException(__func__);
665 void f_drawpushpattern(CResRef drw_wnd, CStrRef pattern_id, double x, double y,
666 double width, double height) {
667 throw NotImplementedException(__func__);
670 void f_popdrawingwand(CResRef drw_wnd) {
671 throw NotImplementedException(__func__);
674 void f_drawpopclippath(CResRef drw_wnd) {
675 throw NotImplementedException(__func__);
678 void f_drawpopdefs(CResRef drw_wnd) {
679 throw NotImplementedException(__func__);
682 void f_drawpoppattern(CResRef drw_wnd) {
683 throw NotImplementedException(__func__);
686 bool f_magickadaptivethresholdimage(CResRef mgck_wnd, double width,
687 double height, double offset) {
688 throw NotImplementedException(__func__);
691 bool f_magickaddimage(CResRef mgck_wnd, CResRef add_wand) {
692 throw NotImplementedException(__func__);
695 bool f_magickaddnoiseimage(CResRef mgck_wnd, int noise_type) {
696 throw NotImplementedException(__func__);
699 bool f_magickaffinetransformimage(CResRef mgck_wnd, CResRef drw_wnd) {
700 throw NotImplementedException(__func__);
703 bool f_magickannotateimage(CResRef mgck_wnd, CResRef drw_wnd, double x,
704 double y, double angle, CStrRef text) {
705 throw NotImplementedException(__func__);
708 Resource f_magickappendimages(CResRef mgck_wnd,
709 bool stack_vertical /* = false */) {
710 throw NotImplementedException(__func__);
713 Resource f_magickaverageimages(CResRef mgck_wnd) {
714 throw NotImplementedException(__func__);
717 bool f_magickblackthresholdimage(CResRef mgck_wnd, CResRef threshold_pxl_wnd) {
718 throw NotImplementedException(__func__);
721 bool f_magickblurimage(CResRef mgck_wnd, double radius, double sigma,
722 int channel_type /* = 0 */) {
723 throw NotImplementedException(__func__);
726 bool f_magickborderimage(CResRef mgck_wnd, CResRef bordercolor, double width,
727 double height) {
728 throw NotImplementedException(__func__);
731 bool f_magickcharcoalimage(CResRef mgck_wnd, double radius, double sigma) {
732 throw NotImplementedException(__func__);
735 bool f_magickchopimage(CResRef mgck_wnd, double width, double height, int x,
736 int y) {
737 throw NotImplementedException(__func__);
740 bool f_magickclipimage(CResRef mgck_wnd) {
741 throw NotImplementedException(__func__);
744 bool f_magickclippathimage(CResRef mgck_wnd, CStrRef pathname, bool inside) {
745 throw NotImplementedException(__func__);
748 Resource f_magickcoalesceimages(CResRef mgck_wnd) {
749 throw NotImplementedException(__func__);
752 bool f_magickcolorfloodfillimage(CResRef mgck_wnd, CResRef fillcolor_pxl_wnd,
753 double fuzz, CResRef bordercolor_pxl_wnd,
754 int x, int y) {
755 throw NotImplementedException(__func__);
758 bool f_magickcolorizeimage(CResRef mgck_wnd, CResRef colorize,
759 CResRef opacity_pxl_wnd) {
760 throw NotImplementedException(__func__);
763 Resource f_magickcombineimages(CResRef mgck_wnd, int channel_type) {
764 throw NotImplementedException(__func__);
767 bool f_magickcommentimage(CResRef mgck_wnd, CStrRef comment) {
768 throw NotImplementedException(__func__);
771 Array f_magickcompareimages(CResRef mgck_wnd, CResRef reference_wnd,
772 int metric_type, int channel_type /* = 0 */) {
773 throw NotImplementedException(__func__);
776 bool f_magickcompositeimage(CResRef mgck_wnd, CResRef composite_wnd,
777 int composite_operator, int x, int y) {
778 throw NotImplementedException(__func__);
781 bool f_magickconstituteimage(CResRef mgck_wnd, double columns, double rows,
782 CStrRef smap, int storage_type,
783 CArrRef pixel_array) {
784 throw NotImplementedException(__func__);
787 bool f_magickcontrastimage(CResRef mgck_wnd, bool sharpen) {
788 throw NotImplementedException(__func__);
791 bool f_magickconvolveimage(CResRef mgck_wnd, CArrRef kernel_array,
792 int channel_type /* = 0 */) {
793 throw NotImplementedException(__func__);
796 bool f_magickcropimage(CResRef mgck_wnd, double width, double height, int x,
797 int y) {
798 throw NotImplementedException(__func__);
801 bool f_magickcyclecolormapimage(CResRef mgck_wnd, int num_positions) {
802 throw NotImplementedException(__func__);
805 Resource f_magickdeconstructimages(CResRef mgck_wnd) {
806 throw NotImplementedException(__func__);
809 String f_magickdescribeimage(CResRef mgck_wnd) {
810 throw NotImplementedException(__func__);
813 bool f_magickdespeckleimage(CResRef mgck_wnd) {
814 throw NotImplementedException(__func__);
817 bool f_magickdrawimage(CResRef mgck_wnd, CResRef drw_wnd) {
818 throw NotImplementedException(__func__);
821 bool f_magickechoimageblob(CResRef mgck_wnd) {
822 throw NotImplementedException(__func__);
825 bool f_magickechoimagesblob(CResRef mgck_wnd) {
826 throw NotImplementedException(__func__);
829 bool f_magickedgeimage(CResRef mgck_wnd, double radius) {
830 throw NotImplementedException(__func__);
833 bool f_magickembossimage(CResRef mgck_wnd, double radius, double sigma) {
834 throw NotImplementedException(__func__);
837 bool f_magickenhanceimage(CResRef mgck_wnd) {
838 throw NotImplementedException(__func__);
841 bool f_magickequalizeimage(CResRef mgck_wnd) {
842 throw NotImplementedException(__func__);
845 bool f_magickevaluateimage(CResRef mgck_wnd, int evaluate_op, double constant,
846 int channel_type /* = 0 */) {
847 throw NotImplementedException(__func__);
850 Resource f_magickflattenimages(CResRef mgck_wnd) {
851 throw NotImplementedException(__func__);
854 bool f_magickflipimage(CResRef mgck_wnd) {
855 throw NotImplementedException(__func__);
858 bool f_magickflopimage(CResRef mgck_wnd) {
859 throw NotImplementedException(__func__);
862 bool f_magickframeimage(CResRef mgck_wnd, CResRef matte_color, double width,
863 double height, int inner_bevel, int outer_bevel) {
864 throw NotImplementedException(__func__);
867 Resource f_magickfximage(CResRef mgck_wnd, CStrRef expression,
868 int channel_type /* = 0 */) {
869 throw NotImplementedException(__func__);
872 bool f_magickgammaimage(CResRef mgck_wnd, double gamma,
873 int channel_type /* = 0 */) {
874 throw NotImplementedException(__func__);
877 bool f_magickgaussianblurimage(CResRef mgck_wnd, double radius, double sigma,
878 int channel_type /* = 0 */) {
879 throw NotImplementedException(__func__);
882 double f_magickgetcharheight(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt,
883 bool multiline /* = false */) {
884 throw NotImplementedException(__func__);
887 double f_magickgetcharwidth(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt,
888 bool multiline /* = false */) {
889 throw NotImplementedException(__func__);
892 Array f_magickgetexception(CResRef mgck_wnd) {
893 throw NotImplementedException(__func__);
896 String f_magickgetexceptionstring(CResRef mgck_wnd) {
897 throw NotImplementedException(__func__);
900 int64_t f_magickgetexceptiontype(CResRef mgck_wnd) {
901 throw NotImplementedException(__func__);
904 String f_magickgetfilename(CResRef mgck_wnd) {
905 throw NotImplementedException(__func__);
908 String f_magickgetformat(CResRef mgck_wnd) {
909 throw NotImplementedException(__func__);
912 Resource f_magickgetimage(CResRef mgck_wnd) {
913 throw NotImplementedException(__func__);
916 Resource f_magickgetimagebackgroundcolor(CResRef mgck_wnd) {
917 throw NotImplementedException(__func__);
920 String f_magickgetimageblob(CResRef mgck_wnd) {
921 throw NotImplementedException(__func__);
924 Array f_magickgetimageblueprimary(CResRef mgck_wnd) {
925 throw NotImplementedException(__func__);
928 Resource f_magickgetimagebordercolor(CResRef mgck_wnd) {
929 throw NotImplementedException(__func__);
932 Array f_magickgetimagechannelmean(CResRef mgck_wnd, int channel_type) {
933 throw NotImplementedException(__func__);
936 Resource f_magickgetimagecolormapcolor(CResRef mgck_wnd, double index) {
937 throw NotImplementedException(__func__);
940 double f_magickgetimagecolors(CResRef mgck_wnd) {
941 throw NotImplementedException(__func__);
944 int64_t f_magickgetimagecolorspace(CResRef mgck_wnd) {
945 throw NotImplementedException(__func__);
948 int64_t f_magickgetimagecompose(CResRef mgck_wnd) {
949 throw NotImplementedException(__func__);
952 int64_t f_magickgetimagecompression(CResRef mgck_wnd) {
953 throw NotImplementedException(__func__);
956 double f_magickgetimagecompressionquality(CResRef mgck_wnd) {
957 throw NotImplementedException(__func__);
960 double f_magickgetimagedelay(CResRef mgck_wnd) {
961 throw NotImplementedException(__func__);
964 double f_magickgetimagedepth(CResRef mgck_wnd, int channel_type /* = 0 */) {
965 throw NotImplementedException(__func__);
968 int64_t f_magickgetimagedispose(CResRef mgck_wnd) {
969 throw NotImplementedException(__func__);
972 Array f_magickgetimageextrema(CResRef mgck_wnd, int channel_type /* = 0 */) {
973 throw NotImplementedException(__func__);
976 String f_magickgetimagefilename(CResRef mgck_wnd) {
977 throw NotImplementedException(__func__);
980 String f_magickgetimageformat(CResRef mgck_wnd) {
981 throw NotImplementedException(__func__);
984 double f_magickgetimagegamma(CResRef mgck_wnd) {
985 throw NotImplementedException(__func__);
988 Array f_magickgetimagegreenprimary(CResRef mgck_wnd) {
989 throw NotImplementedException(__func__);
992 double f_magickgetimageheight(CResRef mgck_wnd) {
993 throw NotImplementedException(__func__);
996 Array f_magickgetimagehistogram(CResRef mgck_wnd) {
997 throw NotImplementedException(__func__);
1000 int64_t f_magickgetimageindex(CResRef mgck_wnd) {
1001 throw NotImplementedException(__func__);
1004 int64_t f_magickgetimageinterlacescheme(CResRef mgck_wnd) {
1005 throw NotImplementedException(__func__);
1008 double f_magickgetimageiterations(CResRef mgck_wnd) {
1009 throw NotImplementedException(__func__);
1012 Resource f_magickgetimagemattecolor(CResRef mgck_wnd) {
1013 throw NotImplementedException(__func__);
1016 String f_magickgetimagemimetype(CResRef mgck_wnd) {
1017 throw NotImplementedException(__func__);
1020 Array f_magickgetimagepixels(CResRef mgck_wnd, int x_offset, int y_offset,
1021 double columns, double rows, CStrRef smap,
1022 int storage_type) {
1023 throw NotImplementedException(__func__);
1026 String f_magickgetimageprofile(CResRef mgck_wnd, CStrRef name) {
1027 throw NotImplementedException(__func__);
1030 Array f_magickgetimageredprimary(CResRef mgck_wnd) {
1031 throw NotImplementedException(__func__);
1034 int64_t f_magickgetimagerenderingintent(CResRef mgck_wnd) {
1035 throw NotImplementedException(__func__);
1038 Array f_magickgetimageresolution(CResRef mgck_wnd) {
1039 throw NotImplementedException(__func__);
1042 double f_magickgetimagescene(CResRef mgck_wnd) {
1043 throw NotImplementedException(__func__);
1046 String f_magickgetimagesignature(CResRef mgck_wnd) {
1047 throw NotImplementedException(__func__);
1050 int64_t f_magickgetimagesize(CResRef mgck_wnd) {
1051 throw NotImplementedException(__func__);
1054 int64_t f_magickgetimagetype(CResRef mgck_wnd) {
1055 throw NotImplementedException(__func__);
1058 int64_t f_magickgetimageunits(CResRef mgck_wnd) {
1059 throw NotImplementedException(__func__);
1062 int64_t f_magickgetimagevirtualpixelmethod(CResRef mgck_wnd) {
1063 throw NotImplementedException(__func__);
1066 Array f_magickgetimagewhitepoint(CResRef mgck_wnd) {
1067 throw NotImplementedException(__func__);
1070 double f_magickgetimagewidth(CResRef mgck_wnd) {
1071 throw NotImplementedException(__func__);
1074 String f_magickgetimagesblob(CResRef mgck_wnd) {
1075 throw NotImplementedException(__func__);
1078 int64_t f_magickgetinterlacescheme(CResRef mgck_wnd) {
1079 throw NotImplementedException(__func__);
1082 double f_magickgetmaxtextadvance(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt,
1083 bool multiline /* = false */) {
1084 throw NotImplementedException(__func__);
1087 String f_magickgetmimetype(CResRef mgck_wnd) {
1088 throw NotImplementedException(__func__);
1091 double f_magickgetnumberimages(CResRef mgck_wnd) {
1092 throw NotImplementedException(__func__);
1095 Array f_magickgetsamplingfactors(CResRef mgck_wnd) {
1096 throw NotImplementedException(__func__);
1099 Array f_magickgetsize(CResRef mgck_wnd) {
1100 throw NotImplementedException(__func__);
1103 double f_magickgetstringheight(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt,
1104 bool multiline /* = false */) {
1105 throw NotImplementedException(__func__);
1108 double f_magickgetstringwidth(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt,
1109 bool multiline /* = false */) {
1110 throw NotImplementedException(__func__);
1113 double f_magickgettextascent(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt,
1114 bool multiline /* = false */) {
1115 throw NotImplementedException(__func__);
1118 double f_magickgettextdescent(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt,
1119 bool multiline /* = false */) {
1120 throw NotImplementedException(__func__);
1123 Array f_magickgetwandsize(CResRef mgck_wnd) {
1124 throw NotImplementedException(__func__);
1127 bool f_magickhasnextimage(CResRef mgck_wnd) {
1128 throw NotImplementedException(__func__);
1131 bool f_magickhaspreviousimage(CResRef mgck_wnd) {
1132 throw NotImplementedException(__func__);
1135 bool f_magickimplodeimage(CResRef mgck_wnd, double amount) {
1136 throw NotImplementedException(__func__);
1139 bool f_magicklabelimage(CResRef mgck_wnd, CStrRef label) {
1140 throw NotImplementedException(__func__);
1143 bool f_magicklevelimage(CResRef mgck_wnd, double black_point, double gamma,
1144 double white_point, int channel_type /* = 0 */) {
1145 throw NotImplementedException(__func__);
1148 bool f_magickmagnifyimage(CResRef mgck_wnd) {
1149 throw NotImplementedException(__func__);
1152 bool f_magickmapimage(CResRef mgck_wnd, CResRef map_wand, bool dither) {
1153 throw NotImplementedException(__func__);
1156 bool f_magickmattefloodfillimage(CResRef mgck_wnd, double opacity, double fuzz,
1157 CResRef bordercolor_pxl_wnd, int x, int y) {
1158 throw NotImplementedException(__func__);
1161 bool f_magickmedianfilterimage(CResRef mgck_wnd, double radius) {
1162 throw NotImplementedException(__func__);
1165 bool f_magickminifyimage(CResRef mgck_wnd) {
1166 throw NotImplementedException(__func__);
1169 bool f_magickmodulateimage(CResRef mgck_wnd, double brightness,
1170 double saturation, double hue) {
1171 throw NotImplementedException(__func__);
1174 Resource f_magickmontageimage(CResRef mgck_wnd,
1175 CResRef drw_wnd,
1176 CStrRef tile_geometry,
1177 CStrRef thumbnail_geometry,
1178 int montage_mode,
1179 CStrRef frame) {
1180 throw NotImplementedException(__func__);
1183 Resource f_magickmorphimages(CResRef mgck_wnd, double number_frames) {
1184 throw NotImplementedException(__func__);
1187 Resource f_magickmosaicimages(CResRef mgck_wnd) {
1188 throw NotImplementedException(__func__);
1191 bool f_magickmotionblurimage(CResRef mgck_wnd, double radius, double sigma,
1192 double angle) {
1193 throw NotImplementedException(__func__);
1196 bool f_magicknegateimage(CResRef mgck_wnd, bool only_the_gray /* = false */,
1197 int channel_type /* = 0 */) {
1198 throw NotImplementedException(__func__);
1201 bool f_magicknewimage(CResRef mgck_wnd, double width, double height,
1202 CStrRef imagemagick_col_str /* = null_string */) {
1203 throw NotImplementedException(__func__);
1206 bool f_magicknextimage(CResRef mgck_wnd) {
1207 throw NotImplementedException(__func__);
1210 bool f_magicknormalizeimage(CResRef mgck_wnd) {
1211 throw NotImplementedException(__func__);
1214 bool f_magickoilpaintimage(CResRef mgck_wnd, double radius) {
1215 throw NotImplementedException(__func__);
1218 bool f_magickpaintopaqueimage(CResRef mgck_wnd, CResRef target_pxl_wnd,
1219 CResRef fill_pxl_wnd, double fuzz /* = 0.0 */) {
1220 throw NotImplementedException(__func__);
1223 bool
1224 f_magickpainttransparentimage(CResRef mgck_wnd,
1225 CResRef target,
1226 double opacity /* = k_MW_TransparentOpacity */,
1227 double fuzz /* = 0.0 */) {
1228 throw NotImplementedException(__func__);
1231 bool f_magickpingimage(CResRef mgck_wnd, CStrRef filename) {
1232 throw NotImplementedException(__func__);
1235 bool f_magickposterizeimage(CResRef mgck_wnd, double levels, bool dither) {
1236 throw NotImplementedException(__func__);
1239 Resource f_magickpreviewimages(CResRef mgck_wnd, int preview) {
1240 throw NotImplementedException(__func__);
1243 bool f_magickpreviousimage(CResRef mgck_wnd) {
1244 throw NotImplementedException(__func__);
1247 bool f_magickprofileimage(CResRef mgck_wnd, CStrRef name, CStrRef profile /* = null_string */) {
1248 throw NotImplementedException(__func__);
1251 bool f_magickquantizeimage(CResRef mgck_wnd, double number_colors, int colorspace_type, double treedepth, bool dither, bool measure_error) {
1252 throw NotImplementedException(__func__);
1255 bool f_magickquantizeimages(CResRef mgck_wnd, double number_colors, int colorspace_type, double treedepth, bool dither, bool measure_error) {
1256 throw NotImplementedException(__func__);
1259 Array f_magickqueryfontmetrics(CResRef mgck_wnd, CResRef drw_wnd, CStrRef txt, bool multiline /* = false */) {
1260 throw NotImplementedException(__func__);
1263 bool f_magickradialblurimage(CResRef mgck_wnd, double angle) {
1264 throw NotImplementedException(__func__);
1267 bool f_magickraiseimage(CResRef mgck_wnd, double width, double height, int x, int y, bool raise) {
1268 throw NotImplementedException(__func__);
1271 bool f_magickreadimage(CResRef mgck_wnd, CStrRef filename) {
1272 throw NotImplementedException(__func__);
1275 bool f_magickreadimageblob(CResRef mgck_wnd, CStrRef blob) {
1276 throw NotImplementedException(__func__);
1279 bool f_magickreadimagefile(CResRef mgck_wnd, CResRef handle) {
1280 throw NotImplementedException(__func__);
1283 bool f_magickreadimages(CResRef mgck_wnd, CArrRef img_filenames_array) {
1284 throw NotImplementedException(__func__);
1287 bool f_magickreducenoiseimage(CResRef mgck_wnd, double radius) {
1288 throw NotImplementedException(__func__);
1291 bool f_magickremoveimage(CResRef mgck_wnd) {
1292 throw NotImplementedException(__func__);
1295 String f_magickremoveimageprofile(CResRef mgck_wnd, CStrRef name) {
1296 throw NotImplementedException(__func__);
1299 bool f_magickremoveimageprofiles(CResRef mgck_wnd) {
1300 throw NotImplementedException(__func__);
1303 bool f_magickresampleimage(CResRef mgck_wnd, double x_resolution, double y_resolution, int filter_type, double blur) {
1304 throw NotImplementedException(__func__);
1307 void f_magickresetiterator(CResRef mgck_wnd) {
1308 throw NotImplementedException(__func__);
1311 bool f_magickresizeimage(CResRef mgck_wnd, double columns, double rows, int filter_type, double blur) {
1312 throw NotImplementedException(__func__);
1315 bool f_magickrollimage(CResRef mgck_wnd, int x_offset, int y_offset) {
1316 throw NotImplementedException(__func__);
1319 bool f_magickrotateimage(CResRef mgck_wnd, CResRef background, double degrees) {
1320 throw NotImplementedException(__func__);
1323 bool f_magicksampleimage(CResRef mgck_wnd, double columns, double rows) {
1324 throw NotImplementedException(__func__);
1327 bool f_magickscaleimage(CResRef mgck_wnd, double columns, double rows) {
1328 throw NotImplementedException(__func__);
1331 bool f_magickseparateimagechannel(CResRef mgck_wnd, int channel_type) {
1332 throw NotImplementedException(__func__);
1335 bool f_magicksetcompressionquality(CResRef mgck_wnd, double quality) {
1336 throw NotImplementedException(__func__);
1339 bool f_magicksetfilename(CResRef mgck_wnd, CStrRef filename /* = null_string */) {
1340 throw NotImplementedException(__func__);
1343 void f_magicksetfirstiterator(CResRef mgck_wnd) {
1344 throw NotImplementedException(__func__);
1347 bool f_magicksetformat(CResRef mgck_wnd, CStrRef format) {
1348 throw NotImplementedException(__func__);
1351 bool f_magicksetimage(CResRef mgck_wnd, CResRef replace_wand) {
1352 throw NotImplementedException(__func__);
1355 bool f_magicksetimagebackgroundcolor(CResRef mgck_wnd, CResRef background_pxl_wnd) {
1356 throw NotImplementedException(__func__);
1359 bool f_magicksetimagebias(CResRef mgck_wnd, double bias) {
1360 throw NotImplementedException(__func__);
1363 bool f_magicksetimageblueprimary(CResRef mgck_wnd, double x, double y) {
1364 throw NotImplementedException(__func__);
1367 bool f_magicksetimagebordercolor(CResRef mgck_wnd, CResRef border_pxl_wnd) {
1368 throw NotImplementedException(__func__);
1371 bool f_magicksetimagecolormapcolor(CResRef mgck_wnd, double index, CResRef mapcolor_pxl_wnd) {
1372 throw NotImplementedException(__func__);
1375 bool f_magicksetimagecolorspace(CResRef mgck_wnd, int colorspace_type) {
1376 throw NotImplementedException(__func__);
1379 bool f_magicksetimagecompose(CResRef mgck_wnd, int composite_operator) {
1380 throw NotImplementedException(__func__);
1383 bool f_magicksetimagecompression(CResRef mgck_wnd, int compression_type) {
1384 throw NotImplementedException(__func__);
1387 bool f_magicksetimagecompressionquality(CResRef mgck_wnd, double quality) {
1388 throw NotImplementedException(__func__);
1391 bool f_magicksetimagedelay(CResRef mgck_wnd, double delay) {
1392 throw NotImplementedException(__func__);
1395 bool f_magicksetimagedepth(CResRef mgck_wnd, int depth, int channel_type /* = 0 */) {
1396 throw NotImplementedException(__func__);
1399 bool f_magicksetimagedispose(CResRef mgck_wnd, int dispose_type) {
1400 throw NotImplementedException(__func__);
1403 bool f_magicksetimagefilename(CResRef mgck_wnd, CStrRef filename /* = null_string */) {
1404 throw NotImplementedException(__func__);
1407 bool f_magicksetimageformat(CResRef mgck_wnd, CStrRef format) {
1408 throw NotImplementedException(__func__);
1411 bool f_magicksetimagegamma(CResRef mgck_wnd, double gamma) {
1412 throw NotImplementedException(__func__);
1415 bool f_magicksetimagegreenprimary(CResRef mgck_wnd, double x, double y) {
1416 throw NotImplementedException(__func__);
1419 bool f_magicksetimageindex(CResRef mgck_wnd, int index) {
1420 throw NotImplementedException(__func__);
1423 bool f_magicksetimageinterlacescheme(CResRef mgck_wnd, int interlace_type) {
1424 throw NotImplementedException(__func__);
1427 bool f_magicksetimageiterations(CResRef mgck_wnd, double iterations) {
1428 throw NotImplementedException(__func__);
1431 bool f_magicksetimagemattecolor(CResRef mgck_wnd, CResRef matte_pxl_wnd) {
1432 throw NotImplementedException(__func__);
1435 bool f_magicksetimageoption(CResRef mgck_wnd, CStrRef format, CStrRef key, CStrRef value) {
1436 throw NotImplementedException(__func__);
1439 bool f_magicksetimagepixels(CResRef mgck_wnd, int x_offset, int y_offset, double columns, double rows, CStrRef smap, int storage_type, CArrRef pixel_array) {
1440 throw NotImplementedException(__func__);
1443 bool f_magicksetimageprofile(CResRef mgck_wnd, CStrRef name, CStrRef profile) {
1444 throw NotImplementedException(__func__);
1447 bool f_magicksetimageredprimary(CResRef mgck_wnd, double x, double y) {
1448 throw NotImplementedException(__func__);
1451 bool f_magicksetimagerenderingintent(CResRef mgck_wnd, int rendering_intent) {
1452 throw NotImplementedException(__func__);
1455 bool f_magicksetimageresolution(CResRef mgck_wnd, double x_resolution, double y_resolution) {
1456 throw NotImplementedException(__func__);
1459 bool f_magicksetimagescene(CResRef mgck_wnd, double scene) {
1460 throw NotImplementedException(__func__);
1463 bool f_magicksetimagetype(CResRef mgck_wnd, int image_type) {
1464 throw NotImplementedException(__func__);
1467 bool f_magicksetimageunits(CResRef mgck_wnd, int resolution_type) {
1468 throw NotImplementedException(__func__);
1471 bool f_magicksetimagevirtualpixelmethod(CResRef mgck_wnd, int virtual_pixel_method) {
1472 throw NotImplementedException(__func__);
1475 bool f_magicksetimagewhitepoint(CResRef mgck_wnd, double x, double y) {
1476 throw NotImplementedException(__func__);
1479 bool f_magicksetinterlacescheme(CResRef mgck_wnd, int interlace_type) {
1480 throw NotImplementedException(__func__);
1483 void f_magicksetlastiterator(CResRef mgck_wnd) {
1484 throw NotImplementedException(__func__);
1487 bool f_magicksetpassphrase(CResRef mgck_wnd, CStrRef passphrase) {
1488 throw NotImplementedException(__func__);
1491 bool f_magicksetresolution(CResRef mgck_wnd, double x_resolution, double y_resolution) {
1492 throw NotImplementedException(__func__);
1495 bool f_magicksetsamplingfactors(CResRef mgck_wnd, double number_factors, CArrRef sampling_factors) {
1496 throw NotImplementedException(__func__);
1499 bool f_magicksetsize(CResRef mgck_wnd, int columns, int rows) {
1500 throw NotImplementedException(__func__);
1503 bool f_magicksetwandsize(CResRef mgck_wnd, int columns, int rows) {
1504 throw NotImplementedException(__func__);
1507 bool f_magicksharpenimage(CResRef mgck_wnd, double radius, double sigma, int channel_type /* = 0 */) {
1508 throw NotImplementedException(__func__);
1511 bool f_magickshaveimage(CResRef mgck_wnd, int columns, int rows) {
1512 throw NotImplementedException(__func__);
1515 bool f_magickshearimage(CResRef mgck_wnd, CResRef background, double x_shear, double y_shear) {
1516 throw NotImplementedException(__func__);
1519 bool f_magicksolarizeimage(CResRef mgck_wnd, double threshold) {
1520 throw NotImplementedException(__func__);
1523 bool f_magickspliceimage(CResRef mgck_wnd, double width, double height, int x, int y) {
1524 throw NotImplementedException(__func__);
1527 bool f_magickspreadimage(CResRef mgck_wnd, double radius) {
1528 throw NotImplementedException(__func__);
1531 Resource f_magicksteganoimage(CResRef mgck_wnd, CResRef watermark_wand, int offset) {
1532 throw NotImplementedException(__func__);
1535 bool f_magickstereoimage(CResRef mgck_wnd, CResRef offset_wand) {
1536 throw NotImplementedException(__func__);
1539 bool f_magickstripimage(CResRef mgck_wnd) {
1540 throw NotImplementedException(__func__);
1543 bool f_magickswirlimage(CResRef mgck_wnd, double degrees) {
1544 throw NotImplementedException(__func__);
1547 Resource f_magicktextureimage(CResRef mgck_wnd, CResRef texture_wand) {
1548 throw NotImplementedException(__func__);
1551 bool f_magickthresholdimage(CResRef mgck_wnd, double threshold, int channel_type /* = 0 */) {
1552 throw NotImplementedException(__func__);
1555 bool f_magicktintimage(CResRef mgck_wnd, int tint_pxl_wnd, CResRef opacity_pxl_wnd) {
1556 throw NotImplementedException(__func__);
1559 Resource f_magicktransformimage(CResRef mgck_wnd, CStrRef crop, CStrRef geometry) {
1560 throw NotImplementedException(__func__);
1563 bool f_magicktrimimage(CResRef mgck_wnd, double fuzz) {
1564 throw NotImplementedException(__func__);
1567 bool f_magickunsharpmaskimage(CResRef mgck_wnd, double radius, double sigma, double amount, double threshold, int channel_type /* = 0 */) {
1568 throw NotImplementedException(__func__);
1571 bool f_magickwaveimage(CResRef mgck_wnd, double amplitude, double wave_length) {
1572 throw NotImplementedException(__func__);
1575 bool f_magickwhitethresholdimage(CResRef mgck_wnd, CResRef threshold_pxl_wnd) {
1576 throw NotImplementedException(__func__);
1579 bool f_magickwriteimage(CResRef mgck_wnd, CStrRef filename) {
1580 throw NotImplementedException(__func__);
1583 bool f_magickwriteimagefile(CResRef mgck_wnd, CResRef handle) {
1584 throw NotImplementedException(__func__);
1587 bool f_magickwriteimages(CResRef mgck_wnd, CStrRef filename /* = "" */, bool join_images /* = false */) {
1588 throw NotImplementedException(__func__);
1591 bool f_magickwriteimagesfile(CResRef mgck_wnd, CResRef handle) {
1592 throw NotImplementedException(__func__);
1595 double f_pixelgetalpha(CResRef pxl_wnd) {
1596 throw NotImplementedException(__func__);
1599 double f_pixelgetalphaquantum(CResRef pxl_wnd) {
1600 throw NotImplementedException(__func__);
1603 double f_pixelgetblack(CResRef pxl_wnd) {
1604 throw NotImplementedException(__func__);
1607 double f_pixelgetblackquantum(CResRef pxl_wnd) {
1608 throw NotImplementedException(__func__);
1611 double f_pixelgetblue(CResRef pxl_wnd) {
1612 throw NotImplementedException(__func__);
1615 double f_pixelgetbluequantum(CResRef pxl_wnd) {
1616 throw NotImplementedException(__func__);
1619 String f_pixelgetcolorasstring(CResRef pxl_wnd) {
1620 throw NotImplementedException(__func__);
1623 double f_pixelgetcolorcount(CResRef pxl_wnd) {
1624 throw NotImplementedException(__func__);
1627 double f_pixelgetcyan(CResRef pxl_wnd) {
1628 throw NotImplementedException(__func__);
1631 double f_pixelgetcyanquantum(CResRef pxl_wnd) {
1632 throw NotImplementedException(__func__);
1635 Array f_pixelgetexception(CResRef pxl_wnd) {
1636 throw NotImplementedException(__func__);
1639 String f_pixelgetexceptionstring(CResRef pxl_wnd) {
1640 throw NotImplementedException(__func__);
1643 int64_t f_pixelgetexceptiontype(CResRef pxl_wnd) {
1644 throw NotImplementedException(__func__);
1647 double f_pixelgetgreen(CResRef pxl_wnd) {
1648 throw NotImplementedException(__func__);
1651 double f_pixelgetgreenquantum(CResRef pxl_wnd) {
1652 throw NotImplementedException(__func__);
1655 double f_pixelgetindex(CResRef pxl_wnd) {
1656 throw NotImplementedException(__func__);
1659 double f_pixelgetmagenta(CResRef pxl_wnd) {
1660 throw NotImplementedException(__func__);
1663 double f_pixelgetmagentaquantum(CResRef pxl_wnd) {
1664 throw NotImplementedException(__func__);
1667 double f_pixelgetopacity(CResRef pxl_wnd) {
1668 throw NotImplementedException(__func__);
1671 double f_pixelgetopacityquantum(CResRef pxl_wnd) {
1672 throw NotImplementedException(__func__);
1675 Array f_pixelgetquantumcolor(CResRef pxl_wnd) {
1676 throw NotImplementedException(__func__);
1679 double f_pixelgetred(CResRef pxl_wnd) {
1680 throw NotImplementedException(__func__);
1683 double f_pixelgetredquantum(CResRef pxl_wnd) {
1684 throw NotImplementedException(__func__);
1687 double f_pixelgetyellow(CResRef pxl_wnd) {
1688 throw NotImplementedException(__func__);
1691 double f_pixelgetyellowquantum(CResRef pxl_wnd) {
1692 throw NotImplementedException(__func__);
1695 void f_pixelsetalpha(CResRef pxl_wnd, double alpha) {
1696 throw NotImplementedException(__func__);
1699 void f_pixelsetalphaquantum(CResRef pxl_wnd, double alpha) {
1700 throw NotImplementedException(__func__);
1703 void f_pixelsetblack(CResRef pxl_wnd, double black) {
1704 throw NotImplementedException(__func__);
1707 void f_pixelsetblackquantum(CResRef pxl_wnd, double black) {
1708 throw NotImplementedException(__func__);
1711 void f_pixelsetblue(CResRef pxl_wnd, double blue) {
1712 throw NotImplementedException(__func__);
1715 void f_pixelsetbluequantum(CResRef pxl_wnd, double blue) {
1716 throw NotImplementedException(__func__);
1719 void f_pixelsetcolor(CResRef pxl_wnd, CStrRef imagemagick_col_str) {
1720 throw NotImplementedException(__func__);
1723 void f_pixelsetcolorcount(CResRef pxl_wnd, int count) {
1724 throw NotImplementedException(__func__);
1727 void f_pixelsetcyan(CResRef pxl_wnd, double cyan) {
1728 throw NotImplementedException(__func__);
1731 void f_pixelsetcyanquantum(CResRef pxl_wnd, double cyan) {
1732 throw NotImplementedException(__func__);
1735 void f_pixelsetgreen(CResRef pxl_wnd, double green) {
1736 throw NotImplementedException(__func__);
1739 void f_pixelsetgreenquantum(CResRef pxl_wnd, double green) {
1740 throw NotImplementedException(__func__);
1743 void f_pixelsetindex(CResRef pxl_wnd, double index) {
1744 throw NotImplementedException(__func__);
1747 void f_pixelsetmagenta(CResRef pxl_wnd, double magenta) {
1748 throw NotImplementedException(__func__);
1751 void f_pixelsetmagentaquantum(CResRef pxl_wnd, double magenta) {
1752 throw NotImplementedException(__func__);
1755 void f_pixelsetopacity(CResRef pxl_wnd, double opacity) {
1756 throw NotImplementedException(__func__);
1759 void f_pixelsetopacityquantum(CResRef pxl_wnd, double opacity) {
1760 throw NotImplementedException(__func__);
1763 void f_pixelsetquantumcolor(CResRef pxl_wnd, double red, double green, double blue, double opacity /* = 0.0 */) {
1764 throw NotImplementedException(__func__);
1767 void f_pixelsetred(CResRef pxl_wnd, double red) {
1768 throw NotImplementedException(__func__);
1771 void f_pixelsetredquantum(CResRef pxl_wnd, double red) {
1772 throw NotImplementedException(__func__);
1775 void f_pixelsetyellow(CResRef pxl_wnd, double yellow) {
1776 throw NotImplementedException(__func__);
1779 void f_pixelsetyellowquantum(CResRef pxl_wnd, double yellow) {
1780 throw NotImplementedException(__func__);
1783 Array f_pixelgetiteratorexception(CResRef pxl_iter) {
1784 throw NotImplementedException(__func__);
1787 String f_pixelgetiteratorexceptionstring(CResRef pxl_iter) {
1788 throw NotImplementedException(__func__);
1791 int64_t f_pixelgetiteratorexceptiontype(CResRef pxl_iter) {
1792 throw NotImplementedException(__func__);
1795 Array f_pixelgetnextiteratorrow(CResRef pxl_iter) {
1796 throw NotImplementedException(__func__);
1799 void f_pixelresetiterator(CResRef pxl_iter) {
1800 throw NotImplementedException(__func__);
1803 bool f_pixelsetiteratorrow(CResRef pxl_iter, int row) {
1804 throw NotImplementedException(__func__);
1807 bool f_pixelsynciterator(CResRef pxl_iter) {
1808 throw NotImplementedException(__func__);
1812 ///////////////////////////////////////////////////////////////////////////////