summaryrefslogtreecommitdiff
path: root/www/api/pixel_cache.html
blob: bf7ce17e6e40ccab2c6621a0df6330f91a223d62 (plain)
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
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8">
    <meta content="en" name="language">
	<title>pixel_cache</title>
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
	<link media="screen" href="../docutils-api.css" type="text/css" rel="stylesheet">

</head>

<body>

<div class="banner">
<img src="../images/gm-107x76.png" alt="GraphicMagick logo" width="107" height="76" />
<span class="title">GraphicsMagick</span>
<form action="http://www.google.com/search">
  <input type="hidden" name="domains" value="www.graphicsmagick.org" />
  <input type="hidden" name="sitesearch" value="www.graphicsmagick.org" />
<span class="nowrap"><input type="text" name="q" size="25" maxlength="255" />&nbsp;<input type="submit" name="sa" value="Search" /></span>
</form>
</div>


<div class="navmenu">
<ul>
  <li><a href="../index.html">Home</a></li>
  <li><a href="../project.html">Project</a></li>
  <li><a href="../download.html">Download</a></li>
  <li><a href="../README.html">Install</a></li>
  <li><a href="../Hg.html">Source</a></li>
  <li><a href="../NEWS.html">News</a> </li>
  <li><a href="../utilities.html">Utilities</a></li>
  <li><a href="../programming.html">Programming</a></li>
  <li><a href="../reference.html">Reference</a></li>
</ul>
</div>

<div class="document" id="pixel-cache">
<h1 class="title">pixel_cache</h1>
<p class="subtitle" id="image-pixel-cache-working-pixels">Image pixel cache (working pixels).</p>
<div class="contents topic" id="contents">
<p class="topic-title">Contents</p>
<ul class="simple">
<li><p><a class="reference internal" href="#accesscacheviewpixels" id="id63">AccessCacheViewPixels</a></p></li>
<li><p><a class="reference internal" href="#accessimmutableindexes" id="id64">AccessImmutableIndexes</a></p></li>
<li><p><a class="reference internal" href="#accessmutableindexes" id="id65">AccessMutableIndexes</a></p></li>
<li><p><a class="reference internal" href="#accessmutablepixels" id="id66">AccessMutablePixels</a></p></li>
<li><p><a class="reference internal" href="#acquirecacheviewpixels" id="id67">AcquireCacheViewPixels</a></p></li>
<li><p><a class="reference internal" href="#acquirecacheviewindexes" id="id68">AcquireCacheViewIndexes</a></p></li>
<li><p><a class="reference internal" href="#acquireimagepixels" id="id69">AcquireImagePixels</a></p></li>
<li><p><a class="reference internal" href="#acquireonecacheviewpixel" id="id70">AcquireOneCacheViewPixel</a></p></li>
<li><p><a class="reference internal" href="#acquireonepixel" id="id71">AcquireOnePixel</a></p></li>
<li><p><a class="reference internal" href="#acquireonepixelbyreference" id="id72">AcquireOnePixelByReference</a></p></li>
<li><p><a class="reference internal" href="#checkimagepixellimits" id="id73">CheckImagePixelLimits</a></p></li>
<li><p><a class="reference internal" href="#destroycacheinfo" id="id74">DestroyCacheInfo</a></p></li>
<li><p><a class="reference internal" href="#destroyimagepixels" id="id75">DestroyImagePixels</a></p></li>
<li><p><a class="reference internal" href="#getcacheviewpixels" id="id76">GetCacheViewPixels</a></p></li>
<li><p><a class="reference internal" href="#getcacheviewimage" id="id77">GetCacheViewImage</a></p></li>
<li><p><a class="reference internal" href="#getcacheviewindexes" id="id78">GetCacheViewIndexes</a></p></li>
<li><p><a class="reference internal" href="#getimagepixels" id="id79">GetImagePixels</a></p></li>
<li><p><a class="reference internal" href="#getimagepixelsex" id="id80">GetImagePixelsEx</a></p></li>
<li><p><a class="reference internal" href="#getimagevirtualpixelmethod" id="id81">GetImageVirtualPixelMethod</a></p></li>
<li><p><a class="reference internal" href="#getindexes" id="id82">GetIndexes</a></p></li>
<li><p><a class="reference internal" href="#getonepixel" id="id83">GetOnePixel</a></p></li>
<li><p><a class="reference internal" href="#getpixels" id="id84">GetPixels</a></p></li>
<li><p><a class="reference internal" href="#modifycache" id="id85">ModifyCache</a></p></li>
<li><p><a class="reference internal" href="#opencacheview" id="id86">OpenCacheView</a></p></li>
<li><p><a class="reference internal" href="#referencecache" id="id87">ReferenceCache</a></p></li>
<li><p><a class="reference internal" href="#setcacheviewpixels" id="id88">SetCacheViewPixels</a></p></li>
<li><p><a class="reference internal" href="#setimagepixels" id="id89">SetImagePixels</a></p></li>
<li><p><a class="reference internal" href="#setimagepixelsex" id="id90">SetImagePixelsEx</a></p></li>
<li><p><a class="reference internal" href="#setimagevirtualpixelmethod" id="id91">SetImageVirtualPixelMethod</a></p></li>
<li><p><a class="reference internal" href="#synccacheviewpixels" id="id92">SyncCacheViewPixels</a></p></li>
<li><p><a class="reference internal" href="#syncimagepixels" id="id93">SyncImagePixels</a></p></li>
<li><p><a class="reference internal" href="#syncimagepixelsex" id="id94">SyncImagePixelsEx</a></p></li>
</ul>
</div>
<div class="section" id="accesscacheviewpixels">
<h1><a class="toc-backref" href="#id63">AccessCacheViewPixels</a></h1>
<div class="section" id="synopsis">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AccessCacheViewPixels( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
</div>
<div class="section" id="description">
<h2>Description</h2>
<p>Method AccessCacheViewPixels returns writeable pixels associated with
the specified view.</p>
<p>The format of the AccessCacheViewPixels method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AccessCacheViewPixels( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>indexes:</dt>
<dd><p>Method AccessCacheViewPixels returns the pixels associated with
the specified view.</p>
</dd>
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="accessimmutableindexes">
<h1><a class="toc-backref" href="#id64">AccessImmutableIndexes</a></h1>
<div class="section" id="id1">
<h2>Synopsis</h2>
<pre class="literal-block">const IndexPacket *AccessImmutableIndexes( const <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
</div>
<div class="section" id="id2">
<h2>Description</h2>
<p>AccessImmutableIndexes() returns the colormap indexes associated with
the last call to AcquireImagePixels(). NULL is returned if colormap
indexes are not available.</p>
<p>The format of the AccessImmutableIndexes() method is:</p>
<pre class="literal-block">const IndexPacket *AccessImmutableIndexes( const <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>indexes:</dt>
<dd><p>The indexes associated with the last call to
AcquireImagePixels().</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="accessmutableindexes">
<h1><a class="toc-backref" href="#id65">AccessMutableIndexes</a></h1>
<div class="section" id="id3">
<h2>Synopsis</h2>
<pre class="literal-block">IndexPacket *AccessMutableIndexes( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
</div>
<div class="section" id="id4">
<h2>Description</h2>
<p>AccessMutableIndexes() returns the colormap indexes associated with
the last call to SetImagePixels() or GetImagePixels(). NULL is returned
if colormap indexes are not available.</p>
<p>The format of the AccessMutagleIndexes() method is:</p>
<pre class="literal-block">IndexPacket *AccessMutableIndexes( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>indexes:</dt>
<dd><p>The indexes associated with the last call to
AcquireImagePixels().</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="accessmutablepixels">
<h1><a class="toc-backref" href="#id66">AccessMutablePixels</a></h1>
<div class="section" id="id5">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AccessMutablePixels( <a class="reference external" href="../api/types.html#image">Image</a> image );</pre>
</div>
<div class="section" id="id6">
<h2>Description</h2>
<p>AccessMutablePixels() returns the pixels associated with the last call to
SetImagePixels() or GetImagePixels(). This is useful in order to access
an already selected region without passing the geometry of the region.</p>
<p>The format of the AccessMutablePixels() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AccessMutablePixels( <a class="reference external" href="../api/types.html#image">Image</a> image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>The pixels associated with the last call to SetImagePixels()
or GetImagePixels().</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="acquirecacheviewpixels">
<h1><a class="toc-backref" href="#id67">AcquireCacheViewPixels</a></h1>
<div class="section" id="id7">
<h2>Synopsis</h2>
<pre class="literal-block">const <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AcquireCacheViewPixels( <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, const long x, const long y,
                                           const unsigned long columns,
                                           const unsigned long rows,
                                           <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id8">
<h2>Description</h2>
<p>Method AcquireCacheViewPixels gets pixels from the in-memory or disk pixel
cache as defined by the geometry parameters for read-only access.   A
pointer to the pixels is returned if the pixels are transferred, otherwise
NULL is returned.</p>
<p>The format of the AcquireCacheViewPixels method is:</p>
<pre class="literal-block">const <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AcquireCacheViewPixels( <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, const long x, const long y,
                                           const unsigned long columns,
                                           const unsigned long rows,
                                           <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>Method AcquireCacheViewPixels returns a null pointer if an error
occurs, otherwise a pointer to the view pixels.</p>
</dd>
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
<dt>exception:</dt>
<dd><p>Return any errors or warnings in this structure.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="acquirecacheviewindexes">
<h1><a class="toc-backref" href="#id68">AcquireCacheViewIndexes</a></h1>
<div class="section" id="id9">
<h2>Synopsis</h2>
<pre class="literal-block">const IndexPacket *AcquireCacheViewIndexes( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
</div>
<div class="section" id="id10">
<h2>Description</h2>
<p>Method AcquireCacheViewIndexes returns read-only indexes associated with
the specified view.</p>
<p>The format of the AcquireCacheViewIndexes method is:</p>
<pre class="literal-block">const IndexPacket *AcquireCacheViewIndexes( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>indexes:</dt>
<dd><p>Method AcquireCacheViewIndexes returns the indexes
associated with the specified view.</p>
</dd>
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="acquireimagepixels">
<h1><a class="toc-backref" href="#id69">AcquireImagePixels</a></h1>
<div class="section" id="id11">
<h2>Synopsis</h2>
<pre class="literal-block">const <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AcquireImagePixels( const <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                                       const unsigned long columns, const unsigned long rows,
                                       <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id12">
<h2>Description</h2>
<p>AcquireImagePixels() obtains a pixel region for read-only access. If the
region is successfully accessed, a pointer to it is returned, otherwise
NULL is returned. The returned pointer may point to a temporary working
copy of the pixels or it may point to the original pixels in memory.
Performance is maximized if the selected area is part of one row, or one
or more full rows, since then there is opportunity to access the pixels
in-place (without a copy) if the image is in RAM, or in a memory-mapped
file. The returned pointer should <em>never</em> be deallocated by the user.</p>
<p>Pixels accessed via the returned pointer represent a simple array of type
PixelPacket. If the image storage class is PsudeoClass, call GetIndexes()
after invoking GetImagePixels() to obtain the colormap indexes (of type
IndexPacket) corresponding to the region.</p>
<p>If you plan to modify the pixels, use GetImagePixels() instead.</p>
<p>The format of the AcquireImagePixels() method is:</p>
<pre class="literal-block">const <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *AcquireImagePixels( const <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                                       const unsigned long columns, const unsigned long rows,
                                       <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>status:</dt>
<dd><p>AcquireImagePixels() returns a pointer to the pixels if they
are transferred, otherwise a NULL is returned.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
<dt>exception:</dt>
<dd><p>Return any errors or warnings in this structure.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="acquireonecacheviewpixel">
<h1><a class="toc-backref" href="#id70">AcquireOneCacheViewPixel</a></h1>
<div class="section" id="id13">
<h2>Synopsis</h2>
<pre class="literal-block">MagickPassFail AcquireOneCacheViewPixel( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *pixel,
                                         const long x, const long y,
                                         <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id14">
<h2>Description</h2>
<p>Method AcquireOneCacheViewPixel gets one pixel from the in-memory or disk
pixel cache as defined by the geometry parameters for read-only access.
The image background color is returned if there is an error retrieving
the pixel.</p>
<p>The format of the AcquireOneCacheViewPixel method is:</p>
<pre class="literal-block">MagickPassFail AcquireOneCacheViewPixel( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *pixel,
                                         const long x, const long y,
                                         <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
<dt>pixel:</dt>
<dd><p>Pointer to PixelPacket to update.</p>
</dd>
<dt>x,y:</dt>
<dd><p>Coordinate of pixel to retrieve</p>
</dd>
<dt>exception:</dt>
<dd><p>Return any errors or warnings in this structure.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="acquireonepixel">
<h1><a class="toc-backref" href="#id71">AcquireOnePixel</a></h1>
<div class="section" id="id15">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> AcquireOnePixel( const <a class="reference external" href="../api/types.html#image">Image</a> image, const long x, const long y,
                              <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> exception );</pre>
</div>
<div class="section" id="id16">
<h2>Description</h2>
<p>AcquireOnePixel() returns a single pixel at the specified (x,y) location.
The image background color is returned if an error occurs.  If errors
are to be returned to the image, use GetOnePixel() instead. This function
is convenient but performance will be poor if it is used too often.</p>
<p>The format of the AcquireOnePixel() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> AcquireOnePixel( const <a class="reference external" href="../api/types.html#image">Image</a> image, const long x, const long y,
                              <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> exception );</pre>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>AcquireOnePixel() returns a pixel at the specified (x,y)
location.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>x,y:</dt>
<dd><p>These values define the location of the pixel to return.</p>
</dd>
<dt>exception:</dt>
<dd><p>Return any errors or warnings in this structure.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="acquireonepixelbyreference">
<h1><a class="toc-backref" href="#id72">AcquireOnePixelByReference</a></h1>
<div class="section" id="id17">
<h2>Synopsis</h2>
<pre class="literal-block">MagickPassFail AcquireOnePixelByReference( const <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *pixel,
                                           const long x, const long y,
                                           <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id18">
<h2>Description</h2>
<p>AcquireOnePixelByReference() returns a single pixel at the specified (x,y)
location. The image background color is returned if an error occurs. This
function is convenient but performance will be poor if it is used too
often.</p>
<p>The format of the AcquireOnePixelByReference() method is:</p>
<pre class="literal-block">MagickPassFail AcquireOnePixelByReference( const <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *pixel,
                                           const long x, const long y,
                                           <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>AcquireOnePixel() returns a pixel at the specified (x,y)
location.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>pixel:</dt>
<dd><p>A reference to the pixel to update.</p>
</dd>
<dt>x,y:</dt>
<dd><p>These values define the location of the pixel to return.</p>
</dd>
<dt>exception:</dt>
<dd><p>Return any errors or warnings in this structure.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="checkimagepixellimits">
<h1><a class="toc-backref" href="#id73">CheckImagePixelLimits</a></h1>
<div class="section" id="id19">
<h2>Synopsis</h2>
<pre class="literal-block">MagickPassFail CheckImagePixelLimits( const <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id20">
<h2>Description</h2>
<p>CheckImagePixelLimits() verifies that image dimensions are within current
limits.  Returns MagickPass if image dimensions are within limits, or
MagickFail (and updates exception) if dimensions exceed a limit.</p>
<p>While this function is used within the pixel cache to prevent allocating
an image which exceeds the limits, it may also be used to validate image
dimensions obtained from file headers prior to allocating memory or doing
further processing of the image.  Such additional limits should be after
any 'ping' mode processing so that the image dimensions can still be
shown by 'identify'.</p>
<p>The format of the CheckImagePixelLimits() method is:</p>
<pre class="literal-block">MagickPassFail CheckImagePixelLimits( const <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>image:</dt>
<dd><p>Image to verify rows/columns.</p>
</dd>
<dt>exception:</dt>
<dd><p>Throw exception into this ExceptionInfo structure.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="destroycacheinfo">
<h1><a class="toc-backref" href="#id74">DestroyCacheInfo</a></h1>
<div class="section" id="id21">
<h2>Synopsis</h2>
<pre class="literal-block">void DestroyCacheInfo( <a class="reference external" href="../api/types.html#cache">Cache</a> cache );</pre>
</div>
<div class="section" id="id22">
<h2>Description</h2>
<p>DestroyCacheInfo() deallocates memory associated with the pixel cache.</p>
<p>The format of the DestroyCacheInfo() method is:</p>
<pre class="literal-block">void DestroyCacheInfo( <a class="reference external" href="../api/types.html#cache">Cache</a> cache );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>cache:</dt>
<dd><p>Specifies a pointer to a Cache structure.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="destroyimagepixels">
<h1><a class="toc-backref" href="#id75">DestroyImagePixels</a></h1>
<div class="section" id="id23">
<h2>Synopsis</h2>
<pre class="literal-block">void DestroyImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
</div>
<div class="section" id="id24">
<h2>Description</h2>
<p>DestroyImagePixels() deallocates memory associated with the pixel cache.</p>
<p>The format of the DestroyImagePixels() method is:</p>
<pre class="literal-block">void DestroyImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getcacheviewpixels">
<h1><a class="toc-backref" href="#id76">GetCacheViewPixels</a></h1>
<div class="section" id="id25">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetCacheViewPixels( <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, const long x, const long y,
                                 const unsigned long columns, const unsigned long rows,
                                 <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id26">
<h2>Description</h2>
<p>GetCacheViewPixels() gets writeable pixels from the in-memory or disk pixel
cache as defined by the geometry parameters.   A pointer to the pixels
is returned if the pixels are transferred, otherwise a NULL is returned.</p>
<p>The format of the GetCacheViewPixels method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetCacheViewPixels( <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, const long x, const long y,
                                 const unsigned long columns, const unsigned long rows,
                                 <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>Method GetCacheViewPixels returns a null pointer if an error
occurs, otherwise a pointer to the view pixels.</p>
</dd>
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
<dt>exception:</dt>
<dd><p>Any errors are reported here.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getcacheviewimage">
<h1><a class="toc-backref" href="#id77">GetCacheViewImage</a></h1>
<div class="section" id="id27">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#image">Image</a> *GetCacheViewImage( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
</div>
<div class="section" id="id28">
<h2>Description</h2>
<p>Method GetCacheViewImage returns the image which allocated the view.</p>
<p>The format of the GetCacheViewImage method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#image">Image</a> *GetCacheViewImage( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>image:</dt>
<dd><p>Method GetCacheViewImage returns the image which allocated
the view.</p>
</dd>
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getcacheviewindexes">
<h1><a class="toc-backref" href="#id78">GetCacheViewIndexes</a></h1>
<div class="section" id="id29">
<h2>Synopsis</h2>
<pre class="literal-block">IndexPacket *GetCacheViewIndexes( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
</div>
<div class="section" id="id30">
<h2>Description</h2>
<p>Method GetCacheViewIndexes returns writeable indexes associated with
the specified view.</p>
<p>The format of the GetCacheViewIndexes method is:</p>
<pre class="literal-block">IndexPacket *GetCacheViewIndexes( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>indexes:</dt>
<dd><p>Method GetCacheViewIndexes returns the indexes associated with
the specified view.</p>
</dd>
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getimagepixels">
<h1><a class="toc-backref" href="#id79">GetImagePixels</a></h1>
<div class="section" id="id31">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                             const unsigned long columns, const unsigned long rows );</pre>
</div>
<div class="section" id="id32">
<h2>Description</h2>
<p>GetImagePixels() obtains a pixel region for read/write access. If the
region is successfully accessed, a pointer to a PixelPacket array
representing the region is returned, otherwise NULL is returned.</p>
<p>The returned pointer may point to a temporary working copy of the pixels
or it may point to the original pixels in memory. Performance is maximized
if the selected area is part of one row, or one or more full rows, since
then there is opportunity to access the pixels in-place (without a copy)
if the image is in RAM, or in a memory-mapped file. The returned pointer
should <em>never</em> be deallocated by the user.</p>
<p>Pixels accessed via the returned pointer represent a simple array of type
PixelPacket. If the image storage class is PsudeoClass, call GetIndexes()
after invoking GetImagePixels() to obtain the colormap indexes (of type
IndexPacket) corresponding to the region.  Once the PixelPacket (and/or
IndexPacket) array has been updated, the changes must be saved back to
the underlying image using SyncImagePixels() or they may be lost.</p>
<p>The format of the GetImagePixels() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                             const unsigned long columns, const unsigned long rows );</pre>
<dl class="simple">
<dt>status:</dt>
<dd><p>GetImagePixels() returns a pointer to the pixels if they are
transferred, otherwise a NULL is returned.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getimagepixelsex">
<h1><a class="toc-backref" href="#id80">GetImagePixelsEx</a></h1>
<div class="section" id="id33">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetImagePixelsEx( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                               const unsigned long columns, const unsigned long rows,
                               <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id34">
<h2>Description</h2>
<p>GetImagePixelsEx() obtains a pixel region for read/write access.  It is
similar to GetImagePixels() except that it reports any error information
to a user provided exception structure.</p>
<p>The format of the GetImagePixelsEx() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetImagePixelsEx( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                               const unsigned long columns, const unsigned long rows,
                               <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>status:</dt>
<dd><p>GetImagePixelsEx() returns a pointer to the pixels if they are
transferred, otherwise a NULL is returned.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
<dt>exception:</dt>
<dd><p>Any error details are reported here.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getimagevirtualpixelmethod">
<h1><a class="toc-backref" href="#id81">GetImageVirtualPixelMethod</a></h1>
<div class="section" id="id35">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#virtualpixelmethod">VirtualPixelMethod</a> GetImageVirtualPixelMethod( const <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
</div>
<div class="section" id="id36">
<h2>Description</h2>
<p>GetImageVirtualPixelMethod() gets the &quot;virtual pixels&quot; method for the
image.  A virtual pixel is any pixel access that is outside the boundaries
of the image cache.</p>
<p>The format of the GetImageVirtualPixelMethod() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#virtualpixelmethod">VirtualPixelMethod</a> GetImageVirtualPixelMethod( const <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getindexes">
<h1><a class="toc-backref" href="#id82">GetIndexes</a></h1>
<div class="section" id="id37">
<h2>Synopsis</h2>
<pre class="literal-block">IndexPacket *GetIndexes( const <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
</div>
<div class="section" id="id38">
<h2>Description</h2>
<p>GetIndexes() returns the colormap indexes associated with the last call to
SetImagePixels() or GetImagePixels(). NULL is returned if colormap indexes
are not available.</p>
<p>The format of the GetIndexes() method is:</p>
<pre class="literal-block">IndexPacket *GetIndexes( const <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>indexes:</dt>
<dd><p>GetIndexes() returns the indexes associated with the last
call to SetImagePixels() or GetImagePixels().</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getonepixel">
<h1><a class="toc-backref" href="#id83">GetOnePixel</a></h1>
<div class="section" id="id39">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> GetOnePixel( const <a class="reference external" href="../api/types.html#image">Image</a> image, const long x, const long y );</pre>
</div>
<div class="section" id="id40">
<h2>Description</h2>
<p>GetOnePixel() returns a single pixel at the specified (x,y) location.
The image background color is returned if an error occurs.  This function
is convenient but performance will be poor if it is used too often.
GetOnePixel() is identical to AcquireOnePixel() except that exceptions
are implicitly delivered to the image.</p>
<p>The format of the GetOnePixel() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> GetOnePixel( const <a class="reference external" href="../api/types.html#image">Image</a> image, const long x, const long y );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>x,y:</dt>
<dd><p>These values define the location of the pixel to return.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="getpixels">
<h1><a class="toc-backref" href="#id84">GetPixels</a></h1>
<div class="section" id="id41">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetPixels( const <a class="reference external" href="../api/types.html#image">Image</a> image );</pre>
</div>
<div class="section" id="id42">
<h2>Description</h2>
<p>GetPixels() returns the pixels associated with the last call to
SetImagePixels() or GetImagePixels(). This is useful in order to access
an already selected region without passing the geometry of the region.</p>
<p>The format of the GetPixels() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *GetPixels( const <a class="reference external" href="../api/types.html#image">Image</a> image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>GetPixels() returns the pixels associated with the last call
to SetImagePixels() or GetImagePixels().</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="modifycache">
<h1><a class="toc-backref" href="#id85">ModifyCache</a></h1>
<div class="section" id="id43">
<h2>Synopsis</h2>
<pre class="literal-block">MagickPassFail ModifyCache( <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id44">
<h2>Description</h2>
<p>ModifyCache() ensures that there is only a single reference to the pixel
cache to be modified, updating the provided cache pointer to point to
a clone of the original pixel cache if necessary.  This is used to
implement copy on write.</p>
<p>The format of the ModifyCache method is:</p>
<pre class="literal-block">MagickPassFail ModifyCache( <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>exception:</dt>
<dd><p>Errors are reported here.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="opencacheview">
<h1><a class="toc-backref" href="#id86">OpenCacheView</a></h1>
<div class="section" id="id45">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *OpenCacheView( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
</div>
<div class="section" id="id46">
<h2>Description</h2>
<p>OpenCacheView() opens a view into the pixel cache.</p>
<p>The format of the OpenCacheView method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *OpenCacheView( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="referencecache">
<h1><a class="toc-backref" href="#id87">ReferenceCache</a></h1>
<div class="section" id="id47">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#cache">Cache</a> ReferenceCache( <a class="reference external" href="../api/types.html#cache">Cache</a> cache_info );</pre>
</div>
<div class="section" id="id48">
<h2>Description</h2>
<p>ReferenceCache() increments the reference count associated with the pixel
cache returning a pointer to the cache.</p>
<p>The format of the ReferenceCache method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#cache">Cache</a> ReferenceCache( <a class="reference external" href="../api/types.html#cache">Cache</a> cache_info );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>cache_info:</dt>
<dd><p>The cache_info.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="setcacheviewpixels">
<h1><a class="toc-backref" href="#id88">SetCacheViewPixels</a></h1>
<div class="section" id="id49">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *SetCacheViewPixels( <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, const long x, const long y,
                                 const unsigned long columns, const unsigned long rows );</pre>
</div>
<div class="section" id="id50">
<h2>Description</h2>
<p>SetCacheViewPixels() gets pixels from the in-memory or disk pixel cache as
defined by the geometry parameters.   A pointer to the pixels is returned
if the pixels are transferred, otherwise a NULL is returned.</p>
<p>The format of the SetCacheViewPixels method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *SetCacheViewPixels( <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, const long x, const long y,
                                 const unsigned long columns, const unsigned long rows );</pre>
<dl class="simple">
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
<dt>exception:</dt>
<dd><p>Any errors are reported here.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="setimagepixels">
<h1><a class="toc-backref" href="#id89">SetImagePixels</a></h1>
<div class="section" id="id51">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *SetImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                             const unsigned long columns, const unsigned long rows );</pre>
</div>
<div class="section" id="id52">
<h2>Description</h2>
<p>SetImagePixels() initializes a pixel region for write-only access.
If the region is successfully intialized a pointer to a PixelPacket
array representing the region is returned, otherwise NULL is returned.
The returned pointer may point to a temporary working buffer for the
pixels or it may point to the final location of the pixels in memory.</p>
<p>Write-only access means that any existing pixel values corresponding to
the region are ignored.  This is useful while the initial image is being
created from scratch, or if the existing pixel values are to be
completely replaced without need to refer to their pre-existing values.
The application is free to read and write the pixel buffer returned by
SetImagePixels() any way it pleases. SetImagePixels() does not initialize
the pixel array values. Initializing pixel array values is the
application's responsibility.</p>
<p>Performance is maximized if the selected area is part of one row, or
one or more full rows, since then there is opportunity to access the
pixels in-place (without a copy) if the image is in RAM, or in a
memory-mapped file. The returned pointer should <em>never</em> be deallocated
by the user.</p>
<p>Pixels accessed via the returned pointer represent a simple array of type
PixelPacket. If the image storage class is PsudeoClass, call GetIndexes()
after invoking GetImagePixels() to obtain the colormap indexes (of type
IndexPacket) corresponding to the region.  Once the PixelPacket (and/or
IndexPacket) array has been updated, the changes must be saved back to
the underlying image using SyncCacheNexus() or they may be lost.</p>
<p>The format of the SetImagePixels() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *SetImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                             const unsigned long columns, const unsigned long rows );</pre>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>SetImagePixels returns a pointer to the pixels if they are
transferred, otherwise a NULL is returned.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="setimagepixelsex">
<h1><a class="toc-backref" href="#id90">SetImagePixelsEx</a></h1>
<div class="section" id="id53">
<h2>Synopsis</h2>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *SetImagePixelsEx( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                               const unsigned long columns, const unsigned long rows,
                               <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id54">
<h2>Description</h2>
<p>SetImagePixelsEx() initializes a pixel region for write-only access.
It is similar to SetImagePixels() except that any exception information
is written to a user provided exception structure.</p>
<p>The format of the SetImagePixelsEx() method is:</p>
<pre class="literal-block"><a class="reference external" href="../api/types.html#pixelpacket">PixelPacket</a> *SetImagePixelsEx( <a class="reference external" href="../api/types.html#image">Image</a> *image, const long x, const long y,
                               const unsigned long columns, const unsigned long rows,
                               <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>pixels:</dt>
<dd><p>SetImagePixelsEx returns a pointer to the pixels if they are
transferred, otherwise a NULL is returned.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>x,y,columns,rows:</dt>
<dd><p>These values define the perimeter of a region of
pixels.</p>
</dd>
<dt>exception:</dt>
<dd><p>Any error details are reported here.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="setimagevirtualpixelmethod">
<h1><a class="toc-backref" href="#id91">SetImageVirtualPixelMethod</a></h1>
<div class="section" id="id55">
<h2>Synopsis</h2>
<pre class="literal-block">SetImageVirtualPixelMethod( const <a class="reference external" href="../api/types.html#image">Image</a> *image, const <a class="reference external" href="../api/types.html#virtualpixelmethod">VirtualPixelMethod</a> method );</pre>
</div>
<div class="section" id="id56">
<h2>Description</h2>
<p>SetImageVirtualPixelMethod() sets the &quot;virtual pixels&quot; method for the
image.  A virtual pixel is any pixel access that is outside the boundaries
of the image cache.</p>
<p>The format of the SetImageVirtualPixelMethod() method is:</p>
<pre class="literal-block">SetImageVirtualPixelMethod( const <a class="reference external" href="../api/types.html#image">Image</a> *image, const <a class="reference external" href="../api/types.html#virtualpixelmethod">VirtualPixelMethod</a> method );</pre>
<dl class="simple">
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>type:</dt>
<dd><p>choose from these access types:</p>
</dd>
</dl>
<p>EdgeVPType:  the edge pixels of the image extend infinitely.
Any pixel outside the image is assigned the same value as the
pixel at the edge closest to it.</p>
<p>TileVPType:  the image extends periodically or tiled.  The pixels
wrap around the edges of the image.</p>
<p>MirrorVPType:  mirror the image at the boundaries.</p>
<p>ConstantVPType:  every value outside the image is a constant as
defines by the pixel parameter.</p>
</div>
</div>
<div class="section" id="synccacheviewpixels">
<h1><a class="toc-backref" href="#id92">SyncCacheViewPixels</a></h1>
<div class="section" id="id57">
<h2>Synopsis</h2>
<pre class="literal-block">MagickPassFail SyncCacheViewPixels( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id58">
<h2>Description</h2>
<p>SyncCacheViewPixels() saves the view pixels to the in-memory or disk cache.
The method returns MagickPass if the pixel region is synced, otherwise
MagickFail.</p>
<p>The format of the SyncCacheViewPixels method is:</p>
<pre class="literal-block">MagickPassFail SyncCacheViewPixels( const <a class="reference external" href="../api/types.html#viewinfo">ViewInfo</a> *view, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<dl class="simple">
<dt>view:</dt>
<dd><p>The address of a structure of type ViewInfo.</p>
</dd>
<dt>exception:</dt>
<dd><p>Any errors are reported here.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="syncimagepixels">
<h1><a class="toc-backref" href="#id93">SyncImagePixels</a></h1>
<div class="section" id="id59">
<h2>Synopsis</h2>
<pre class="literal-block">MagickPassFail SyncImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
</div>
<div class="section" id="id60">
<h2>Description</h2>
<p>SyncImagePixels() saves the image pixels to the in-memory or disk cache.
The method returns MagickPass if the pixel region is synced, otherwise MagickFail.</p>
<p>The format of the SyncImagePixels() method is:</p>
<pre class="literal-block">MagickPassFail SyncImagePixels( <a class="reference external" href="../api/types.html#image">Image</a> *image );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>status:</dt>
<dd><p>SyncImagePixels() returns MagickPass if the image pixels are
transferred to the in-memory or disk cache otherwise MagickFail.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
</dl>
</div>
</div>
<div class="section" id="syncimagepixelsex">
<h1><a class="toc-backref" href="#id94">SyncImagePixelsEx</a></h1>
<div class="section" id="id61">
<h2>Synopsis</h2>
<pre class="literal-block">MagickPassFail SyncImagePixelsEx( <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
</div>
<div class="section" id="id62">
<h2>Description</h2>
<p>SyncImagePixelsEx() saves the image pixels to the in-memory or disk cache.
The method returns MagickPass if the pixel region is synced, otherwise
MagickFail.</p>
<p>The format of the SyncImagePixelsEx() method is:</p>
<pre class="literal-block">MagickPassFail SyncImagePixelsEx( <a class="reference external" href="../api/types.html#image">Image</a> *image, <a class="reference external" href="../api/types.html#exceptioninfo">ExceptionInfo</a> *exception );</pre>
<p>A description of each parameter follows:</p>
<dl class="simple">
<dt>status:</dt>
<dd><p>SyncImagePixelsEx() returns MagickPass if the image pixels are
transferred to the in-memory or disk cache otherwise MagickFail.</p>
</dd>
<dt>image:</dt>
<dd><p>The image.</p>
</dd>
<dt>exception:</dt>
<dd><p>Any error details are reported here.</p>
</dd>
</dl>
</div>
</div>
</div>


<hr class="docutils">
<div class="document">
    <p><a href="../Copyright.html">Copyright</a> © GraphicsMagick Group 2002 - 2023<!--SPONSOR_LOGO--></p>
</div>

</div>
</body>
</html>