File: magick-property.html

package info (click to toggle)
imagemagick 8%3A6.6.0.4-3%2Bsqueeze4
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 60,836 kB
  • ctags: 41,044
  • sloc: ansic: 273,304; cpp: 18,276; sh: 10,816; xml: 7,125; perl: 4,893; makefile: 2,346; tcl: 459; pascal: 125
file content (1643 lines) | stat: -rw-r--r-- 54,524 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <meta http-equiv="Content-Type" value="application/xhtml+xml" />
  <meta name="verify-v1" content="g222frIIxcQTrvDR3NBRUSKP3AnMNoqxOkIniCEkV7U=" />
  <link rel="meta" type="application/rdf+xml" title="ICI" href="http://imagemagick.org/ici.rdf" />
  <style type="text/css" media="screen,projection"><!--
    @import url("../../www/magick.css");
  --></style>
  <link rel="shortcut icon" href="../../images/wand.ico"  type="images/vnd.microsoft.icon"/>
  <title>ImageMagick: MagickWand, C API for ImageMagick: Property Methods</title>
  <meta http-equiv="Content-Language" content="en-US"/>
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  <meta http-equiv="Reply-to" content="magick-users@imagemagick.org"/>
  <meta name="Generator" content="PHP"/>
  <meta name="Keywords" content="magickwc, api, for, imagemagick:, property, methods, ImageMagick, ImageMagic, MagickCore, MagickWand, PerlMagick, Magick++, RMagick, PythonMagick, JMagick, TclMagick, Image, Magick, Magic, Wand, ImageMagickObject, Swiss, Army, Knife, Image, Processing"/>
  <meta name="Description" content="ImageMagick® is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (about 100) including GIF, JPEG, JPEG-2000, PNG, PDF, PhotoCD, TIFF, and DPX. Use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves.  ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you can freely use, copy, modify, and distribute. Its license is compatible with the GPL. It runs on all major operating systems.  The functionality of ImageMagick is typically utilized from the command line or you can use the features from programs written in your favorite programming language. Choose from these interfaces: MagickCore (C), MagickWand (C), ChMagick (Ch), Magick++ (C++), JMagick (Java), L-Magick (Lisp), PascalMagick (Pascal), PerlMagick (Perl), MagickWand for PHP (PHP), PythonMagick (Python), RMagick (Ruby), or TclMagick (Tcl/TK). With a language interface, use ImageMagick to modify or create images automagically and dynamically."/>
  <meta name="Rating" content="GENERAL"/>
  <meta name="Robots" content="INDEX, FOLLOW"/>
  <meta name="Generator" content="ImageMagick Studio LLC"/>
  <meta name="Author" content="ImageMagick Studio LLC"/>
  <meta name="Revisit-after" content="2 DAYS"/>
  <meta name="Resource-type" content="document"/>
  <meta name="Copyright" content="Copyright (c) 1999-2010 ImageMagick Studio LLC"/>
  <meta name="Distribution" content="Global"/>
</head>

<body id="www-imagemagick-org">
<div class="titlebar">
<a href="../../index.html">
  <img src="../../images/script.png" alt="[ImageMagick]"
  style="width: 350px; height: 60px; margin: 28px auto; float: left;" /></a>
<a href="http://www.networkredux.com">
  <img src="../../images/networkredux.png" alt="[sponsor]"
  style="margin: 45px auto; border: 0px; float: left;" /></a>
<a href="http://www.imagemagick.org/discourse-server/">
  <img src="../../images/logo.jpg" alt=""
  style="width: 114px; height: 118px; border: 0px; float: right;" /></a>
<a href="../../index.html">
  <img src="../../images/sprite.jpg" alt=""
  style="width: 114px; height: 118px; border: 0px; float: right;" /></a>
</div>

<div class="eastbar">

<div class="menu">
  <a href="../../index.html">About ImageMagick</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../../www/command-line-tools.html">Command-line Tools</a>
</div>
<div class="sub">
    <a href="../../www/command-line-processing.html">Processing</a>
</div>
<div class="sub">
    <a href="../../www/command-line-options.html">Options</a>
</div>
<div class="sub">
    <a href="http://www.imagemagick.org/Usage/">Usage</a>
</div>
<div class="menu">
  <a href="../../www/api.html">Program Interfaces</a>
</div>
<div class="sub">
    <a href="../../www/magick-wand.html">MagickWand</a>
</div>
<div class="sub">
    <a href="../../www/magick-core.html">MagickCore</a>
</div>
<div class="sub">
    <a href="../../www/perl-magick.html">PerlMagick</a>
</div>
<div class="sub">
    <a href="../../Magick++/">Magick++</a>
</div>
<div class="menu">
  <a href="../../www/architecture.html">Architecture</a>
</div>
<div class="sep"></div>
<div  class="menu">
   <a href="../../www/install-source.html">Install from Source</a>
</div>
<div class="sub">
    <a href="../../www/install-source.html#unix">Unix</a>
</div>
<div class="sub">
    <a href="../../www/install-source.html#windows">Windows</a>
 </div>
<div class="menu">
  <a href="../../www/binary-releases.html">Binary Releases</a>
</div>
<div class="sub">
    <a href="../../www/binary-releases.html#unix">Unix</a>
</div>
<div class="sub">
    <a href="../../www/binary-releases.html#macosx">Mac OS X</a>
</div>
<div class="sub">
    <a href="../../www/binary-releases.html#windows">Windows</a>
</div>
<div class="menu">
  <a href="../../www/resources.html">Resources</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../../www/download.html">Download</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../http://www.imagemagick.org/script/search.php">Search</a>
</div>
<div class="sep"></div>
<div class="menu">
  <a href="../../www/sitemap.html">Site Map</a>
</div>
<div  class="sub">
    <a href="../../www/links.html">Links</a>
</div>
<div class="sep"></div>
<div  class="menu">
  <a href="../../www/sponsors.html">Sponsors:</a>

<div class="sponsbox">
<div  class="sponsor">
   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
</div>
<div  class="sponsor">
  <a href="http://www.deko.net">Deko.net</a><!-- 201101010600 Peterssen-->
</div>
<div  class="sponsor">
  <a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div  class="sponsor">
  <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201007010120 Buchhorn -->
</div>
<div  class="sponsor">
  <a href="http://www.blumenversender.com">Blumenversand</a><!-- 201005010120 -->
</div>
<div  class="sponsor">
  <a href="http://www.print24.de/">Druckerei</a><!-- 201009010720 -->
</div>
<div  class="sponsor">
   <a href="http://www.goyax.de">Börse</a><!-- 201004010240 Gewiese digital-finance.de -->
</div>
<div  class="sponsor">
   <a href="http://www.allesdruck.de">Druckerei Online</a><!-- 201012011200 allesdruck.de-->
</div>
</div>
</div>


</div>

<div class="main">

<p class="navigation-index">[<a href="#MagickDeleteImageArtifact">MagickDeleteImageArtifact</a> &bull; <a href="#MagickDeleteImageProperty">MagickDeleteImageProperty</a> &bull; <a href="#MagickDeleteOption">MagickDeleteOption</a> &bull; <a href="#MagickGetAntialias">MagickGetAntialias</a> &bull; <a href="#MagickGetBackgroundColor">MagickGetBackgroundColor</a> &bull; <a href="#MagickGetColorspace">MagickGetColorspace</a> &bull; <a href="#MagickGetCompression">MagickGetCompression</a> &bull; <a href="#MagickGetCompressionQuality">MagickGetCompressionQuality</a> &bull; <a href="#MagickGetCopyright">MagickGetCopyright</a> &bull; <a href="#MagickGetFilename">MagickGetFilename</a> &bull; <a href="#MagickGetFont">MagickGetFont</a> &bull; <a href="#MagickGetFormat">MagickGetFormat</a> &bull; <a href="#MagickGetGravity">MagickGetGravity</a> &bull; <a href="#MagickGetHomeURL">MagickGetHomeURL</a> &bull; <a href="#MagickGetImageArtifact">MagickGetImageArtifact</a> &bull; <a href="#MagickGetImageArtifacts">MagickGetImageArtifacts</a> &bull; <a href="#MagickGetImageProfile">MagickGetImageProfile</a> &bull; <a href="#MagickGetImageProfiles">MagickGetImageProfiles</a> &bull; <a href="#MagickGetImageProperty">MagickGetImageProperty</a> &bull; <a href="#MagickGetImageProperties">MagickGetImageProperties</a> &bull; <a href="#MagickGetInterlaceScheme">MagickGetInterlaceScheme</a> &bull; <a href="#MagickGetInterpolateMethod">MagickGetInterpolateMethod</a> &bull; <a href="#MagickGetOption">MagickGetOption</a> &bull; <a href="#MagickGetOptions">MagickGetOptions</a> &bull; <a href="#MagickGetOrientation">MagickGetOrientation</a> &bull; <a href="#MagickGetPackageName">MagickGetPackageName</a> &bull; <a href="#MagickGetPage">MagickGetPage</a> &bull; <a href="#MagickGetPointsize">MagickGetPointsize</a> &bull; <a href="#MagickGetQuantumDepth">MagickGetQuantumDepth</a> &bull; <a href="#MagickGetQuantumRange">MagickGetQuantumRange</a> &bull; <a href="#MagickGetReleaseDate">MagickGetReleaseDate</a> &bull; <a href="#MagickGetResource">MagickGetResource</a> &bull; <a href="#MagickGetResourceLimit">MagickGetResourceLimit</a> &bull; <a href="#MagickGetSamplingFactors">MagickGetSamplingFactors</a> &bull; <a href="#MagickGetSize">MagickGetSize</a> &bull; <a href="#MagickGetSizeOffset">MagickGetSizeOffset</a> &bull; <a href="#MagickGetType">MagickGetType</a> &bull; <a href="#MagickGetVersion">MagickGetVersion</a> &bull; <a href="#MagickProfileImage">MagickProfileImage</a> &bull; <a href="#MagickRemoveImageProfile">MagickRemoveImageProfile</a> &bull; <a href="#MagickSetAntialias">MagickSetAntialias</a> &bull; <a href="#MagickSetBackgroundColor">MagickSetBackgroundColor</a> &bull; <a href="#MagickSetColorspace">MagickSetColorspace</a> &bull; <a href="#MagickSetCompression">MagickSetCompression</a> &bull; <a href="#MagickSetCompressionQuality">MagickSetCompressionQuality</a> &bull; <a href="#MagickSetDepth">MagickSetDepth</a> &bull; <a href="#MagickSetExtract">MagickSetExtract</a> &bull; <a href="#MagickSetFilename">MagickSetFilename</a> &bull; <a href="#MagickSetFont">MagickSetFont</a> &bull; <a href="#MagickSetFormat">MagickSetFormat</a> &bull; <a href="#MagickSetGravity">MagickSetGravity</a> &bull; <a href="#MagickSetImageArtifact">MagickSetImageArtifact</a> &bull; <a href="#MagickSetImageProfile">MagickSetImageProfile</a> &bull; <a href="#MagickSetImageProperty">MagickSetImageProperty</a> &bull; <a href="#MagickSetInterlaceScheme">MagickSetInterlaceScheme</a> &bull; <a href="#MagickSetInterpolateMethod">MagickSetInterpolateMethod</a> &bull; <a href="#MagickSetOption">MagickSetOption</a> &bull; <a href="#MagickSetOrientation">MagickSetOrientation</a> &bull; <a href="#MagickSetPage">MagickSetPage</a> &bull; <a href="#MagickSetPassphrase">MagickSetPassphrase</a> &bull; <a href="#MagickSetPointsize">MagickSetPointsize</a> &bull; <a href="#MagickSetProgressMonitor">MagickSetProgressMonitor</a> &bull; <a href="#MagickSetResourceLimit">MagickSetResourceLimit</a> &bull; <a href="#MagickSetResolution">MagickSetResolution</a> &bull; <a href="#MagickSetSamplingFactors">MagickSetSamplingFactors</a> &bull; <a href="#MagickSetSize">MagickSetSize</a> &bull; <a href="#MagickSetSizeOffset">MagickSetSizeOffset</a> &bull; <a href="#MagickSetType">MagickSetType</a>]</p>

<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickDeleteImageArtifact">MagickDeleteImageArtifact</a></h2>
<div class="doc-section">

<p>MagickDeleteImageArtifact() deletes a wand artifact.</p></ol>

<p>The format of the MagickDeleteImageArtifact method is:</p>

<pre class="code">
  MagickBooleanType MagickDeleteImageArtifact(MagickWand *wand,
    const char *artifact)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>image</h5>
<ol><p>the image.</p></ol>

<h5>artifact</h5>
<ol><p>the image artifact.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickDeleteImageProperty">MagickDeleteImageProperty</a></h2>
<div class="doc-section">

<p>MagickDeleteImageProperty() deletes a wand property.</p></ol>

<p>The format of the MagickDeleteImageProperty method is:</p>

<pre class="code">
  MagickBooleanType MagickDeleteImageProperty(MagickWand *wand,
    const char *property)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>image</h5>
<ol><p>the image.</p></ol>

<h5>property</h5>
<ol><p>the image property.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickDeleteOption">MagickDeleteOption</a></h2>
<div class="doc-section">

<p>MagickDeleteOption() deletes a wand option.</p></ol>

<p>The format of the MagickDeleteOption method is:</p>

<pre class="code">
  MagickBooleanType MagickDeleteOption(MagickWand *wand,
    const char *option)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>image</h5>
<ol><p>the image.</p></ol>

<h5>option</h5>
<ol><p>the image option.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetAntialias">MagickGetAntialias</a></h2>
<div class="doc-section">

<p>MagickGetAntialias() returns the antialias property associated with the wand.</p></ol>

<p>The format of the MagickGetAntialias method is:</p>

<pre class="code">
  MagickBooleanType MagickGetAntialias(const MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetBackgroundColor">MagickGetBackgroundColor</a></h2>
<div class="doc-section">

<p>MagickGetBackgroundColor() returns the wand background color.</p></ol>

<p>The format of the MagickGetBackgroundColor method is:</p>

<pre class="code">
  PixelWand *MagickGetBackgroundColor(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetColorspace">MagickGetColorspace</a></h2>
<div class="doc-section">

<p>MagickGetColorspace() gets the wand colorspace type.</p></ol>

<p>The format of the MagickGetColorspace method is:</p>

<pre class="code">
  ColorspaceType MagickGetColorspace(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetCompression">MagickGetCompression</a></h2>
<div class="doc-section">

<p>MagickGetCompression() gets the wand compression type.</p></ol>

<p>The format of the MagickGetCompression method is:</p>

<pre class="code">
  CompressionType MagickGetCompression(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetCompressionQuality">MagickGetCompressionQuality</a></h2>
<div class="doc-section">

<p>MagickGetCompressionQuality() gets the wand compression quality.</p></ol>

<p>The format of the MagickGetCompressionQuality method is:</p>

<pre class="code">
  unsigned long MagickGetCompressionQuality(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetCopyright">MagickGetCopyright</a></h2>
<div class="doc-section">

<p>MagickGetCopyright() returns the ImageMagick API copyright as a string constant.</p></ol>

<p>The format of the MagickGetCopyright method is:</p>

<pre class="code">
  const char *MagickGetCopyright(void)
</pre>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetFilename">MagickGetFilename</a></h2>
<div class="doc-section">

<p>MagickGetFilename() returns the filename associated with an image sequence.</p></ol>

<p>The format of the MagickGetFilename method is:</p>

<pre class="code">
  const char *MagickGetFilename(const MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetFont">MagickGetFont</a></h2>
<div class="doc-section">

<p>MagickGetFont() returns the font associated with the MagickWand.</p></ol>

<p>The format of the MagickGetFont method is:</p>

<pre class="code">
  char *MagickGetFont(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetFormat">MagickGetFormat</a></h2>
<div class="doc-section">

<p>MagickGetFormat() returns the format of the magick wand.</p></ol>

<p>The format of the MagickGetFormat method is:</p>

<pre class="code">
  const char MagickGetFormat(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetGravity">MagickGetGravity</a></h2>
<div class="doc-section">

<p>MagickGetGravity() gets the wand gravity.</p></ol>

<p>The format of the MagickGetGravity method is:</p>

<pre class="code">
  GravityType MagickGetGravity(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetHomeURL">MagickGetHomeURL</a></h2>
<div class="doc-section">

<p>MagickGetHomeURL() returns the ImageMagick home URL.</p></ol>

<p>The format of the MagickGetHomeURL method is:</p>

<pre class="code">
  char *MagickGetHomeURL(void)
</pre>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetImageArtifact">MagickGetImageArtifact</a></h2>
<div class="doc-section">

<p>MagickGetImageArtifact() returns a value associated with the specified artifact.  Use MagickRelinquishMemory() to free the value when you are finished with it.</p></ol>

<p>The format of the MagickGetImageArtifact method is:</p>

<pre class="code">
  char *MagickGetImageArtifact(MagickWand *wand,const char *artifact)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>artifact</h5>
<ol><p>the artifact.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetImageArtifacts">MagickGetImageArtifacts</a></h2>
<div class="doc-section">

<p>MagickGetImageArtifacts() returns all the artifact names that match the specified pattern associated with a wand.  Use MagickGetImageProperty() to return the value of a particular artifact.  Use MagickRelinquishMemory() to free the value when you are finished with it.</p></ol>

<p>The format of the MagickGetImageArtifacts method is:</p>

<pre class="code">
  char *MagickGetImageArtifacts(MagickWand *wand,
    const char *pattern,unsigned long *number_artifacts)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>pattern</h5>
<ol><p>Specifies a pointer to a text string containing a pattern.</p></ol>

<h5>number_artifacts</h5>
<ol><p>the number artifacts associated with this wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetImageProfile">MagickGetImageProfile</a></h2>
<div class="doc-section">

<p>MagickGetImageProfile() returns the named image profile.</p></ol>

<p>The format of the MagickGetImageProfile method is:</p>

<pre class="code">
  unsigned char *MagickGetImageProfile(MagickWand *wand,const char *name,
    size_t *length)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>name</h5>
<ol><p>Name of profile to return: ICC, IPTC, or generic profile.</p></ol>

<h5>length</h5>
<ol><p>the length of the profile.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetImageProfiles">MagickGetImageProfiles</a></h2>
<div class="doc-section">

<p>MagickGetImageProfiles() returns all the profile names that match the specified pattern associated with a wand.  Use MagickGetImageProfile() to return the value of a particular property.  Use MagickRelinquishMemory() to free the value when you are finished with it.</p></ol>

<p>The format of the MagickGetImageProfiles method is:</p>

<pre class="code">
  char *MagickGetImageProfiles(MagickWand *wand,
    unsigned long *number_profiles)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>pattern</h5>
<ol><p>Specifies a pointer to a text string containing a pattern.</p></ol>

<h5>number_profiles</h5>
<ol><p>the number profiles associated with this wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetImageProperty">MagickGetImageProperty</a></h2>
<div class="doc-section">

<p>MagickGetImageProperty() returns a value associated with the specified property.  Use MagickRelinquishMemory() to free the value when you are finished with it.</p></ol>

<p>The format of the MagickGetImageProperty method is:</p>

<pre class="code">
  char *MagickGetImageProperty(MagickWand *wand,const char *property)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>property</h5>
<ol><p>the property.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetImageProperties">MagickGetImageProperties</a></h2>
<div class="doc-section">

<p>MagickGetImageProperties() returns all the property names that match the specified pattern associated with a wand.  Use MagickGetImageProperty() to return the value of a particular property.  Use MagickRelinquishMemory() to free the value when you are finished with it.</p></ol>

<p>The format of the MagickGetImageProperties method is:</p>

<pre class="code">
  char *MagickGetImageProperties(MagickWand *wand,
    const char *pattern,unsigned long *number_properties)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>pattern</h5>
<ol><p>Specifies a pointer to a text string containing a pattern.</p></ol>

<h5>number_properties</h5>
<ol><p>the number properties associated with this wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetInterlaceScheme">MagickGetInterlaceScheme</a></h2>
<div class="doc-section">

<p>MagickGetInterlaceScheme() gets the wand interlace scheme.</p></ol>

<p>The format of the MagickGetInterlaceScheme method is:</p>

<pre class="code">
  InterlaceType MagickGetInterlaceScheme(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetInterpolateMethod">MagickGetInterpolateMethod</a></h2>
<div class="doc-section">

<p>MagickGetInterpolateMethod() gets the wand compression.</p></ol>

<p>The format of the MagickGetInterpolateMethod method is:</p>

<pre class="code">
  InterpolatePixelMethod MagickGetInterpolateMethod(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetOption">MagickGetOption</a></h2>
<div class="doc-section">

<p>MagickGetOption() returns a value associated with a wand and the specified key.  Use MagickRelinquishMemory() to free the value when you are finished with it.</p></ol>

<p>The format of the MagickGetOption method is:</p>

<pre class="code">
  char *MagickGetOption(MagickWand *wand,const char *key)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>key</h5>
<ol><p>the key.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetOptions">MagickGetOptions</a></h2>
<div class="doc-section">

<p>MagickGetOptions() returns all the option names that match the specified pattern associated with a wand.  Use MagickGetOption() to return the value of a particular option.  Use MagickRelinquishMemory() to free the value when you are finished with it.</p></ol>

<p>The format of the MagickGetOptions method is:</p>

<pre class="code">
  char *MagickGetOptions(MagickWand *wand,unsigned long *number_options)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>pattern</h5>
<ol><p>Specifies a pointer to a text string containing a pattern.</p></ol>

<h5>number_options</h5>
<ol><p>the number options associated with this wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetOrientation">MagickGetOrientation</a></h2>
<div class="doc-section">

<p>MagickGetOrientation() gets the wand orientation type.</p></ol>

<p>The format of the MagickGetOrientation method is:</p>

<pre class="code">
  OrientationType MagickGetOrientation(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetPackageName">MagickGetPackageName</a></h2>
<div class="doc-section">

<p>MagickGetPackageName() returns the ImageMagick package name as a string constant.</p></ol>

<p>The format of the MagickGetPackageName method is:</p>

<pre class="code">
  const char *MagickGetPackageName(void)
</pre>


 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetPage">MagickGetPage</a></h2>
<div class="doc-section">

<p>MagickGetPage() returns the page geometry associated with the magick wand.</p></ol>

<p>The format of the MagickGetPage method is:</p>

<pre class="code">
  MagickBooleanType MagickGetPage(const MagickWand *wand,
    unsigned long *width,unsigned long *height,long *x,long *y)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>width</h5>
<ol><p>the page width.</p></ol>

<h5>height</h5>
<ol><p>page height.</p></ol>

<h5>x</h5>
<ol><p>the page x-offset.</p></ol>

<h5>y</h5>
<ol><p>the page y-offset.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetPointsize">MagickGetPointsize</a></h2>
<div class="doc-section">

<p>MagickGetPointsize() returns the font pointsize associated with the MagickWand.</p></ol>

<p>The format of the MagickGetPointsize method is:</p>

<pre class="code">
  double MagickGetPointsize(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetQuantumDepth">MagickGetQuantumDepth</a></h2>
<div class="doc-section">

<p>MagickGetQuantumDepth() returns the ImageMagick quantum depth as a string constant.</p></ol>

<p>The format of the MagickGetQuantumDepth method is:</p>

<pre class="code">
  const char *MagickGetQuantumDepth(unsigned long *depth)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>depth</h5>
<ol><p>the quantum depth is returned as a number.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetQuantumRange">MagickGetQuantumRange</a></h2>
<div class="doc-section">

<p>MagickGetQuantumRange() returns the ImageMagick quantum range as a string constant.</p></ol>

<p>The format of the MagickGetQuantumRange method is:</p>

<pre class="code">
  const char *MagickGetQuantumRange(unsigned long *range)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>range</h5>
<ol><p>the quantum range is returned as a number.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetReleaseDate">MagickGetReleaseDate</a></h2>
<div class="doc-section">

<p>MagickGetReleaseDate() returns the ImageMagick release date as a string constant.</p></ol>

<p>The format of the MagickGetReleaseDate method is:</p>

<pre class="code">
  const char *MagickGetReleaseDate(void)
</pre>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetResource">MagickGetResource</a></h2>
<div class="doc-section">

<p>MagickGetResource() returns the specified resource in megabytes.</p></ol>

<p>The format of the MagickGetResource method is:</p>

<pre class="code">
  MagickSizeType MagickGetResource(const ResourceType type)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetResourceLimit">MagickGetResourceLimit</a></h2>
<div class="doc-section">

<p>MagickGetResourceLimit() returns the specified resource limit in megabytes.</p></ol>

<p>The format of the MagickGetResourceLimit method is:</p>

<pre class="code">
  MagickSizeType MagickGetResourceLimit(const ResourceType type)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetSamplingFactors">MagickGetSamplingFactors</a></h2>
<div class="doc-section">

<p>MagickGetSamplingFactors() gets the horizontal and vertical sampling factor.</p></ol>

<p>The format of the MagickGetSamplingFactors method is:</p>

<pre class="code">
  double *MagickGetSamplingFactor(MagickWand *wand,
    unsigned long *number_factors)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>number_factors</h5>
<ol><p>the number of factors in the returned array.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetSize">MagickGetSize</a></h2>
<div class="doc-section">

<p>MagickGetSize() returns the size associated with the magick wand.</p></ol>

<p>The format of the MagickGetSize method is:</p>

<pre class="code">
  MagickBooleanType MagickGetSize(const MagickWand *wand,
    unsigned long *columns,unsigned long *rows)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>columns</h5>
<ol><p>the width in pixels.</p></ol>

<h5>height</h5>
<ol><p>the height in pixels.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetSizeOffset">MagickGetSizeOffset</a></h2>
<div class="doc-section">

<p>MagickGetSizeOffset() returns the size offset associated with the magick wand.</p></ol>

<p>The format of the MagickGetSizeOffset method is:</p>

<pre class="code">
  MagickBooleanType MagickGetSizeOffset(const MagickWand *wand,
    long *offset)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>offset</h5>
<ol><p>the image offset.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetType">MagickGetType</a></h2>
<div class="doc-section">

<p>MagickGetType() returns the wand type.</p></ol>

<p>The format of the MagickGetType method is:</p>

<pre class="code">
  ImageType MagickGetType(MagickWand *wand)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickGetVersion">MagickGetVersion</a></h2>
<div class="doc-section">

<p>MagickGetVersion() returns the ImageMagick API version as a string constant and as a number.</p></ol>

<p>The format of the MagickGetVersion method is:</p>

<pre class="code">
  const char *MagickGetVersion(unsigned long *version)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>version</h5>
<ol><p>the ImageMagick version is returned as a number.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickProfileImage">MagickProfileImage</a></h2>
<div class="doc-section">

<p>MagickProfileImage() adds or removes a ICC, IPTC, or generic profile from an image.  If the profile is NULL, it is removed from the image otherwise added.  Use a name of '*' and a profile of NULL to remove all profiles from the image.</p></ol>

<p>The format of the MagickProfileImage method is:</p>

<pre class="code">
  MagickBooleanType MagickProfileImage(MagickWand *wand,const char *name,
    const void *profile,const size_t length)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>name</h5>
<ol><p>Name of profile to add or remove: ICC, IPTC, or generic profile.</p></ol>

<h5>profile</h5>
<ol><p>the profile.</p></ol>

<h5>length</h5>
<ol><p>the length of the profile.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickRemoveImageProfile">MagickRemoveImageProfile</a></h2>
<div class="doc-section">

<p>MagickRemoveImageProfile() removes the named image profile and returns it.</p></ol>

<p>The format of the MagickRemoveImageProfile method is:</p>

<pre class="code">
  unsigned char *MagickRemoveImageProfile(MagickWand *wand,
    const char *name,size_t *length)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>name</h5>
<ol><p>Name of profile to return: ICC, IPTC, or generic profile.</p></ol>

<h5>length</h5>
<ol><p>the length of the profile.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetAntialias">MagickSetAntialias</a></h2>
<div class="doc-section">

<p>MagickSetAntialias() sets the antialias propery of the wand.</p></ol>

<p>The format of the MagickSetAntialias method is:</p>

<pre class="code">
  MagickBooleanType MagickSetAntialias(MagickWand *wand,
    const MagickBooleanType antialias)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>antialias</h5>
<ol><p>the antialias property.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetBackgroundColor">MagickSetBackgroundColor</a></h2>
<div class="doc-section">

<p>MagickSetBackgroundColor() sets the wand background color.</p></ol>

<p>The format of the MagickSetBackgroundColor method is:</p>

<pre class="code">
  MagickBooleanType MagickSetBackgroundColor(MagickWand *wand,
    const PixelWand *background)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>background</h5>
<ol><p>the background pixel wand.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetColorspace">MagickSetColorspace</a></h2>
<div class="doc-section">

<p>MagickSetColorspace() sets the wand colorspace type.</p></ol>

<p>The format of the MagickSetColorspace method is:</p>

<pre class="code">
  MagickBooleanType MagickSetColorspace(MagickWand *wand,
    const ColorspaceType colorspace)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>colorspace</h5>
<ol><p>the wand colorspace.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetCompression">MagickSetCompression</a></h2>
<div class="doc-section">

<p>MagickSetCompression() sets the wand compression type.</p></ol>

<p>The format of the MagickSetCompression method is:</p>

<pre class="code">
  MagickBooleanType MagickSetCompression(MagickWand *wand,
    const CompressionType compression)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>compression</h5>
<ol><p>the wand compression.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetCompressionQuality">MagickSetCompressionQuality</a></h2>
<div class="doc-section">

<p>MagickSetCompressionQuality() sets the wand compression quality.</p></ol>

<p>The format of the MagickSetCompressionQuality method is:</p>

<pre class="code">
  MagickBooleanType MagickSetCompressionQuality(MagickWand *wand,
    const unsigned long quality)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>quality</h5>
<ol><p>the wand compression quality.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetDepth">MagickSetDepth</a></h2>
<div class="doc-section">

<p>MagickSetDepth() sets the wand pixel depth.</p></ol>

<p>The format of the MagickSetDepth method is:</p>

<pre class="code">
  MagickBooleanType MagickSetDepth(MagickWand *wand,
    const unsigned long depth)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>depth</h5>
<ol><p>the wand pixel depth.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetExtract">MagickSetExtract</a></h2>
<div class="doc-section">

<p>MagickSetExtract() sets the extract geometry before you read or write an image file.  Use it for inline cropping (e.g. 200x200+0+0) or resizing (e.g.200x200).</p></ol>

<p>The format of the MagickSetExtract method is:</p>

<pre class="code">
  MagickBooleanType MagickSetExtract(MagickWand *wand,
    const char *geometry)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>geometry</h5>
<ol><p>the extract geometry.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetFilename">MagickSetFilename</a></h2>
<div class="doc-section">

<p>MagickSetFilename() sets the filename before you read or write an image file.</p></ol>

<p>The format of the MagickSetFilename method is:</p>

<pre class="code">
  MagickBooleanType MagickSetFilename(MagickWand *wand,
    const char *filename)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>filename</h5>
<ol><p>the image filename.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetFont">MagickSetFont</a></h2>
<div class="doc-section">

<p>MagickSetFont() sets the font associated with the MagickWand.</p></ol>

<p>The format of the MagickSetFont method is:</p>

<pre class="code">
  MagickBooleanType MagickSetFont(MagickWand *wand, const char *font)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>font</h5>
<ol><p>the font</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetFormat">MagickSetFormat</a></h2>
<div class="doc-section">

<p>MagickSetFormat() sets the format of the magick wand.</p></ol>

<p>The format of the MagickSetFormat method is:</p>

<pre class="code">
  MagickBooleanType MagickSetFormat(MagickWand *wand,const char *format)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>format</h5>
<ol><p>the image format.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetGravity">MagickSetGravity</a></h2>
<div class="doc-section">

<p>MagickSetGravity() sets the gravity type.</p></ol>

<p>The format of the MagickSetGravity type is:</p>

<pre class="text">
  MagickBooleanType MagickSetGravity(MagickWand *wand,
    const GravityType type)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>type</h5>
<ol><p>the gravity type.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetImageArtifact">MagickSetImageArtifact</a></h2>
<div class="doc-section">

<p>MagickSetImageArtifact() associates a artifact with an image.</p></ol>

<p>The format of the MagickSetImageArtifact method is:</p>

<pre class="code">
  MagickBooleanType MagickSetImageArtifact(MagickWand *wand,
    const char *artifact,const char *value)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>artifact</h5>
<ol><p>the artifact.</p></ol>

<h5>value</h5>
<ol><p>the value.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetImageProfile">MagickSetImageProfile</a></h2>
<div class="doc-section">

<p>MagickSetImageProfile() adds a named profile to the magick wand.  If a profile with the same name already exists, it is replaced.  This method differs from the MagickProfileImage() method in that it does not apply any CMS color profiles.</p></ol>

<p>The format of the MagickSetImageProfile method is:</p>

<pre class="code">
  MagickBooleanType MagickSetImageProfile(MagickWand *wand,
    const char *name,const void *profile,const size_t length)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>name</h5>
<ol><p>Name of profile to add or remove: ICC, IPTC, or generic profile.</p></ol>

<h5>profile</h5>
<ol><p>the profile.</p></ol>

<h5>length</h5>
<ol><p>the length of the profile.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetImageProperty">MagickSetImageProperty</a></h2>
<div class="doc-section">

<p>MagickSetImageProperty() associates a property with an image.</p></ol>

<p>The format of the MagickSetImageProperty method is:</p>

<pre class="code">
  MagickBooleanType MagickSetImageProperty(MagickWand *wand,
    const char *property,const char *value)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>property</h5>
<ol><p>the property.</p></ol>

<h5>value</h5>
<ol><p>the value.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetInterlaceScheme">MagickSetInterlaceScheme</a></h2>
<div class="doc-section">

<p>MagickSetInterlaceScheme() sets the image compression.</p></ol>

<p>The format of the MagickSetInterlaceScheme method is:</p>

<pre class="code">
  MagickBooleanType MagickSetInterlaceScheme(MagickWand *wand,
    const InterlaceType interlace_scheme)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>interlace_scheme</h5>
<ol><p>the image interlace scheme: NoInterlace, LineInterlace, PlaneInterlace, PartitionInterlace.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetInterpolateMethod">MagickSetInterpolateMethod</a></h2>
<div class="doc-section">

<p>MagickSetInterpolateMethod() sets the interpolate pixel method.</p></ol>

<p>The format of the MagickSetInterpolateMethod method is:</p>

<pre class="code">
  MagickBooleanType MagickSetInterpolateMethod(MagickWand *wand,
    const InterpolateMethodPixel method)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>method</h5>
<ol><p>the interpolate pixel method.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetOption">MagickSetOption</a></h2>
<div class="doc-section">

<p>MagickSetOption() associates one or options with the wand (.e.g MagickSetOption(wand,"jpeg:perserve","yes")).</p></ol>

<p>The format of the MagickSetOption method is:</p>

<pre class="code">
  MagickBooleanType MagickSetOption(MagickWand *wand,const char *key,
    const char *value)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>key</h5>
<ol><p>The key.</p></ol>

<h5>value</h5>
<ol><p>The value.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetOrientation">MagickSetOrientation</a></h2>
<div class="doc-section">

<p>MagickSetOrientation() sets the wand orientation type.</p></ol>

<p>The format of the MagickSetOrientation method is:</p>

<pre class="code">
  MagickBooleanType MagickSetOrientation(MagickWand *wand,
    const OrientationType orientation)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>orientation</h5>
<ol><p>the wand orientation.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetPage">MagickSetPage</a></h2>
<div class="doc-section">

<p>MagickSetPage() sets the page geometry of the magick wand.</p></ol>

<p>The format of the MagickSetPage method is:</p>

<pre class="code">
  MagickBooleanType MagickSetPage(MagickWand *wand,
    const unsigned long width,const unsigned long height,const long x,
    const long y)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>width</h5>
<ol><p>the page width.</p></ol>

<h5>height</h5>
<ol><p>the page height.</p></ol>

<h5>x</h5>
<ol><p>the page x-offset.</p></ol>

<h5>y</h5>
<ol><p>the page y-offset.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetPassphrase">MagickSetPassphrase</a></h2>
<div class="doc-section">

<p>MagickSetPassphrase() sets the passphrase.</p></ol>

<p>The format of the MagickSetPassphrase method is:</p>

<pre class="code">
  MagickBooleanType MagickSetPassphrase(MagickWand *wand,
    const char *passphrase)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>passphrase</h5>
<ol><p>the passphrase.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetPointsize">MagickSetPointsize</a></h2>
<div class="doc-section">

<p>MagickSetPointsize() sets the font pointsize associated with the MagickWand.</p></ol>

<p>The format of the MagickSetPointsize method is:</p>

<pre class="code">
  MagickBooleanType MagickSetPointsize(MagickWand *wand,
    const double pointsize)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>pointsize</h5>
<ol><p>the size of the font</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetProgressMonitor">MagickSetProgressMonitor</a></h2>
<div class="doc-section">

<p>MagickSetProgressMonitor() sets the wand progress monitor to the specified method and returns the previous progress monitor if any.  The progress monitor method looks like this:</p>

<pre class="text">
      MagickBooleanType MagickProgressMonitor(const char *text,
  const MagickOffsetType offset,const MagickSizeType span,
  void *client_data)
</pre>

<p>If the progress monitor returns MagickFalse, the current operation is interrupted.</p></ol>

<p>The format of the MagickSetProgressMonitor method is:</p>

<pre class="code">
  MagickProgressMonitor MagickSetProgressMonitor(MagickWand *wand
    const MagickProgressMonitor progress_monitor,void *client_data)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>progress_monitor</h5>
<ol><p>Specifies a pointer to a method to monitor progress of an image operation.</p></ol>

<h5>client_data</h5>
<ol><p>Specifies a pointer to any client data.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetResourceLimit">MagickSetResourceLimit</a></h2>
<div class="doc-section">

<p>MagickSetResourceLimit() sets the limit for a particular resource in megabytes.</p></ol>

<p>The format of the MagickSetResourceLimit method is:</p>

<pre class="code">
  MagickBooleanType MagickSetResourceLimit(const ResourceType type,
    const MagickSizeType limit)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>type</h5>
<ol><p>the type of resource: AreaResource, MemoryResource, MapResource, DiskResource, FileResource.</p></ol>

<p>o The maximum limit for the resource.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetResolution">MagickSetResolution</a></h2>
<div class="doc-section">

<p>MagickSetResolution() sets the image resolution.</p></ol>

<p>The format of the MagickSetResolution method is:</p>

<pre class="code">
  MagickBooleanType MagickSetResolution(MagickWand *wand,
    const double x_resolution,const doubtl y_resolution)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>x_resolution</h5>
<ol><p>the image x resolution.</p></ol>

<h5>y_resolution</h5>
<ol><p>the image y resolution.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetSamplingFactors">MagickSetSamplingFactors</a></h2>
<div class="doc-section">

<p>MagickSetSamplingFactors() sets the image sampling factors.</p></ol>

<p>The format of the MagickSetSamplingFactors method is:</p>

<pre class="code">
  MagickBooleanType MagickSetSamplingFactors(MagickWand *wand,
    const unsigned long number_factors,const double *sampling_factors)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>number_factoes</h5>
<ol><p>the number of factors.</p></ol>

<h5>sampling_factors</h5>
<ol><p>An array of doubles representing the sampling factor for each color component (in RGB order).</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetSize">MagickSetSize</a></h2>
<div class="doc-section">

<p>MagickSetSize() sets the size of the magick wand.  Set it before you read a raw image format such as RGB, GRAY, or CMYK.</p></ol>

<p>The format of the MagickSetSize method is:</p>

<pre class="code">
  MagickBooleanType MagickSetSize(MagickWand *wand,
    const unsigned long columns,const unsigned long rows)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>columns</h5>
<ol><p>the width in pixels.</p></ol>

<h5>rows</h5>
<ol><p>the rows in pixels.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetSizeOffset">MagickSetSizeOffset</a></h2>
<div class="doc-section">

<p>MagickSetSizeOffset() sets the size and offset of the magick wand.  Set it before you read a raw image format such as RGB, GRAY, or CMYK.</p></ol>

<p>The format of the MagickSetSizeOffset method is:</p>

<pre class="code">
  MagickBooleanType MagickSetSizeOffset(MagickWand *wand,
    const unsigned long columns,const unsigned long rows,
    const long offset)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>columns</h5>
<ol><p>the image width in pixels.</p></ol>

<h5>rows</h5>
<ol><p>the image rows in pixels.</p></ol>

<h5>offset</h5>
<ol><p>the image offset.</p></ol>

 </div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-property
_8c.html" target="source" name="MagickSetType">MagickSetType</a></h2>
<div class="doc-section">

<p>MagickSetType() sets the image type attribute.</p></ol>

<p>The format of the MagickSetType method is:</p>

<pre class="code">
  MagickBooleanType MagickSetType(MagickWand *wand,
    const ImageType image_type)
</pre>

<p>A description of each parameter follows:</p></ol>

<h5>wand</h5>
<ol><p>the magick wand.</p></ol>

<h5>image_type</h5>
<ol><p>the image type:   UndefinedType, BilevelType, GrayscaleType, GrayscaleMatteType, PaletteType, PaletteMatteType, TrueColorType, TrueColorMatteType, ColorSeparationType, ColorSeparationMatteType, or OptimizeType.</p></ol>

 </div>

</div>

<div id="linkbar">
 <!--    <span id="linkbar-west">&nbsp;</span>  -->
    <span id="linkbar-center">
      <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;
    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
    </span>
    <span id="linkbar-east">&nbsp;</span>
  </div>
  <div class="footer">
    <span id="footer-west">&copy; 1999-2010 ImageMagick Studio LLC</span>
    <span id="footer-east"> <a href="../http://www.imagemagick.org/script/contact.php">Contact the Wizards</a></span>
  </div>
  <div style="clear: both; margin: 0; width: 100%; "></div>
</body>
</html>