diff --git a/www/api/image-view.html b/www/api/image-view.html
index ed29fef..5124e87 100644
--- a/www/api/image-view.html
+++ b/www/api/image-view.html
@@ -168,7 +168,7 @@
<a title="Sponsor: Druckerei" href="http://print24.com/de/">Druckerei</a><!-- 201110010720 -->
</div>
<div class="sponsor">
- <a title="Sponsor: Custom T-Shirts" href="http://www.ooshirts.com">Custom T-Shirts</a><!-- 2011050100030 ooshirts.com-->
+ <a title="Sponsor: alaTest.com" href="http://alatest.com">alaTest.com</a><!-- 20110801000300 -->
</div>
</div>
</div>
@@ -190,9 +190,491 @@
<div class="main">
-<h1>Module Methods</h1>
-<p class="navigation-index">[<a href="#"></a>]</p>
+<h1>Module image-view
+ Methods</h1>
+<p class="navigation-index">[<a href="#CloneImageView">CloneImageView</a> • <a href="#DestroyImageView">DestroyImageView</a> • <a href="#DuplexTransferImageViewIterator">DuplexTransferImageViewIterator</a> • <a href="#GetImageViewAuthenticIndexes">GetImageViewAuthenticIndexes</a> • <a href="#GetImageViewAuthenticPixels">GetImageViewAuthenticPixels</a> • <a href="#GetImageViewException">GetImageViewException</a> • <a href="#GetImageViewExtent">GetImageViewExtent</a> • <a href="#GetImageViewImage">GetImageViewImage</a> • <a href="#GetImageViewIterator">GetImageViewIterator</a> • <a href="#GetImageViewVirtualIndexes">GetImageViewVirtualIndexes</a> • <a href="#GetImageViewVirtualPixels">GetImageViewVirtualPixels</a> • <a href="#IsImageView">IsImageView</a> • <a href="#NewImageView">NewImageView</a> • <a href="#NewImageViewRegion">NewImageViewRegion</a> • <a href="#SetImageViewDescription">SetImageViewDescription</a> • <a href="#SetImageViewIterator">SetImageViewIterator</a> • <a href="#SetImageViewThreads">SetImageViewThreads</a> • <a href="#TransferImageViewIterator">TransferImageViewIterator</a> • <a href="#UpdateImageViewIterator">UpdateImageViewIterator</a>]</p>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="CloneImageView">CloneImageView</a></h2>
+<div class="doc-section">
+
+<p>CloneImageView() makes a copy of the specified image view.</p>
+
+<p>The format of the CloneImageView method is:</p>
+
+<pre class="code">
+ ImageView *CloneImageView(const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="DestroyImageView">DestroyImageView</a></h2>
+<div class="doc-section">
+
+<p>DestroyImageView() deallocates memory associated with a image view.</p>
+
+<p>The format of the DestroyImageView method is:</p>
+
+<pre class="code">
+ ImageView *DestroyImageView(ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="DuplexTransferImageViewIterator">DuplexTransferImageViewIterator</a></h2>
+<div class="doc-section">
+
+<p>DuplexTransferImageViewIterator() iterates over three image views in parallel and calls your transfer method for each scanline of the view. The source and duplex pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. However, the destination image view is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted.</p>
+
+<p>The callback signature is:</p>
+
+<pre class="text">
+ MagickBooleanType DuplexTransferImageViewMethod(const ImageView *source,
+ const ImageView *duplex,ImageView *destination,const ssize_t y,
+ const int thread_id,void *context)
+</pre>
+
+<p>Use this pragma if the view is not single threaded:</p>
+
+<pre class="text">
+ #pragma omp critical
+</pre>
+
+<p>to define a section of code in your callback transfer method that must be executed by a single thread at a time.</p>
+
+<p>The format of the DuplexTransferImageViewIterator method is:</p>
+
+<pre class="code">
+ MagickBooleanType DuplexTransferImageViewIterator(ImageView *source,
+ ImageView *duplex,ImageView *destination,
+ DuplexTransferImageViewMethod transfer,void *context)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>source</h5>
+<p>the source image view.</p>
+
+<h5>duplex</h5>
+<p>the duplex image view.</p>
+
+<h5>destination</h5>
+<p>the destination image view.</p>
+
+<h5>transfer</h5>
+<p>the transfer callback method.</p>
+
+<h5>context</h5>
+<p>the user defined context.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewAuthenticIndexes">GetImageViewAuthenticIndexes</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewAuthenticIndexes() returns the image view authentic indexes.</p>
+
+<p>The format of the GetImageViewAuthenticPixels method is:</p>
+
+<pre class="code">
+ IndexPacket *GetImageViewAuthenticIndexes(const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewAuthenticPixels">GetImageViewAuthenticPixels</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewAuthenticPixels() returns the image view authentic pixels.</p>
+
+<p>The format of the GetImageViewAuthenticPixels method is:</p>
+
+<pre class="code">
+ PixelPacket *GetImageViewAuthenticPixels(const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewException">GetImageViewException</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewException() returns the severity, reason, and description of any error that occurs when utilizing a image view.</p>
+
+<p>The format of the GetImageViewException method is:</p>
+
+<pre class="code">
+ char *GetImageViewException(const PixelImage *image_view,
+ ExceptionType *severity)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the pixel image_view.</p>
+
+<h5>severity</h5>
+<p>the severity of the error is returned here.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewExtent">GetImageViewExtent</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewExtent() returns the image view extent.</p>
+
+<p>The format of the GetImageViewExtent method is:</p>
+
+<pre class="code">
+ RectangleInfo GetImageViewExtent(const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewImage">GetImageViewImage</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewImage() returns the image associated with the image view.</p>
+
+<p>The format of the GetImageViewImage method is:</p>
+
+<pre class="code">
+ MagickCore *GetImageViewImage(const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewIterator">GetImageViewIterator</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewIterator() iterates over the image view in parallel and calls your get method for each scanline of the view. The pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. Any updates to the pixels in your callback are ignored.</p>
+
+<p>The callback signature is:</p>
+
+<pre class="text">
+ MagickBooleanType GetImageViewMethod(const ImageView *source,
+ const ssize_t y,const int thread_id,void *context)
+</pre>
+
+<p>Use this pragma if the view is not single threaded:</p>
+
+<pre class="text">
+ #pragma omp critical
+</pre>
+
+<p>to define a section of code in your callback get method that must be executed by a single thread at a time.</p>
+
+<p>The format of the GetImageViewIterator method is:</p>
+
+<pre class="code">
+ MagickBooleanType GetImageViewIterator(ImageView *source,
+ GetImageViewMethod get,void *context)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>source</h5>
+<p>the source image view.</p>
+
+<h5>get</h5>
+<p>the get callback method.</p>
+
+<h5>context</h5>
+<p>the user defined context.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewVirtualIndexes">GetImageViewVirtualIndexes</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewVirtualIndexes() returns the image view virtual indexes.</p>
+
+<p>The format of the GetImageViewVirtualIndexes method is:</p>
+
+<pre class="code">
+ const IndexPacket *GetImageViewVirtualIndexes(
+ const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="GetImageViewVirtualPixels">GetImageViewVirtualPixels</a></h2>
+<div class="doc-section">
+
+<p>GetImageViewVirtualPixels() returns the image view virtual pixels.</p>
+
+<p>The format of the GetImageViewVirtualPixels method is:</p>
+
+<pre class="code">
+ const PixelPacket *GetImageViewVirtualPixels(const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="IsImageView">IsImageView</a></h2>
+<div class="doc-section">
+
+<p>IsImageView() returns MagickTrue if the the parameter is verified as a image view object.</p>
+
+<p>The format of the IsImageView method is:</p>
+
+<pre class="code">
+ MagickBooleanType IsImageView(const ImageView *image_view)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="NewImageView">NewImageView</a></h2>
+<div class="doc-section">
+
+<p>NewImageView() returns a image view required for all other methods in the Image View API.</p>
+
+<p>The format of the NewImageView method is:</p>
+
+<pre class="code">
+ ImageView *NewImageView(MagickCore *wand)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>wand</h5>
+<p>the wand.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="NewImageViewRegion">NewImageViewRegion</a></h2>
+<div class="doc-section">
+
+<p>NewImageViewRegion() returns a image view required for all other methods in the Image View API.</p>
+
+<p>The format of the NewImageViewRegion method is:</p>
+
+<pre class="code">
+ ImageView *NewImageViewRegion(MagickCore *wand,const ssize_t x,
+ const ssize_t y,const size_t width,const size_t height)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>wand</h5>
+<p>the magick wand.</p>
+
+<h5>x,y,columns,rows</h5>
+<p>These values define the perimeter of a extent of pixel_wands view.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="SetImageViewDescription">SetImageViewDescription</a></h2>
+<div class="doc-section">
+
+<p>SetImageViewDescription() associates a description with an image view.</p>
+
+<p>The format of the SetImageViewDescription method is:</p>
+
+<pre class="code">
+ void SetImageViewDescription(ImageView *image_view,
+ const char *description)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+<h5>description</h5>
+<p>the image view description.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="SetImageViewIterator">SetImageViewIterator</a></h2>
+<div class="doc-section">
+
+<p>SetImageViewIterator() iterates over the image view in parallel and calls your set method for each scanline of the view. The pixel extent is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension. The pixels are initiallly undefined and any settings you make in the callback method are automagically synced back to your image.</p>
+
+<p>The callback signature is:</p>
+
+<pre class="text">
+ MagickBooleanType SetImageViewMethod(ImageView *destination,
+ const ssize_t y,const int thread_id,void *context)
+</pre>
+
+<p>Use this pragma if the view is not single threaded:</p>
+
+<pre class="text">
+ #pragma omp critical
+</pre>
+
+<p>to define a section of code in your callback set method that must be executed by a single thread at a time.</p>
+
+<p>The format of the SetImageViewIterator method is:</p>
+
+<pre class="code">
+ MagickBooleanType SetImageViewIterator(ImageView *destination,
+ SetImageViewMethod set,void *context)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>destination</h5>
+<p>the image view.</p>
+
+<h5>set</h5>
+<p>the set callback method.</p>
+
+<h5>context</h5>
+<p>the user defined context.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="SetImageViewThreads">SetImageViewThreads</a></h2>
+<div class="doc-section">
+
+<p>SetImageViewThreads() sets the number of threads in a thread team.</p>
+
+<p>The format of the SetImageViewDescription method is:</p>
+
+<pre class="code">
+ void SetImageViewThreads(ImageView *image_view,
+ const size_t number_threads)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>image_view</h5>
+<p>the image view.</p>
+
+<h5>number_threads</h5>
+<p>the number of threads in a thread team.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="TransferImageViewIterator">TransferImageViewIterator</a></h2>
+<div class="doc-section">
+
+<p>TransferImageViewIterator() iterates over two image views in parallel and calls your transfer method for each scanline of the view. The source pixel extent is not confined to the image canvas-- that is you can include negative offsets or widths or heights that exceed the image dimension. However, the destination image view is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted.</p>
+
+<p>The callback signature is:</p>
+
+<pre class="text">
+ MagickBooleanType TransferImageViewMethod(const ImageView *source,
+ ImageView *destination,const ssize_t y,const int thread_id,
+ void *context)
+</pre>
+
+<p>Use this pragma if the view is not single threaded:</p>
+
+<pre class="text">
+ #pragma omp critical
+</pre>
+
+<p>to define a section of code in your callback transfer method that must be executed by a single thread at a time.</p>
+
+<p>The format of the TransferImageViewIterator method is:</p>
+
+<pre class="code">
+ MagickBooleanType TransferImageViewIterator(ImageView *source,
+ ImageView *destination,TransferImageViewMethod transfer,void *context)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>source</h5>
+<p>the source image view.</p>
+
+<h5>destination</h5>
+<p>the destination image view.</p>
+
+<h5>transfer</h5>
+<p>the transfer callback method.</p>
+
+<h5>context</h5>
+<p>the user defined context.</p>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/image-view
+_8c.html" id="UpdateImageViewIterator">UpdateImageViewIterator</a></h2>
+<div class="doc-section">
+
+<p>UpdateImageViewIterator() iterates over the image view in parallel and calls your update method for each scanline of the view. The pixel extent is confined to the image canvas-- that is no negative offsets or widths or heights that exceed the image dimension are permitted. Updates to pixels in your callback are automagically synced back to the image.</p>
+
+<p>The callback signature is:</p>
+
+<pre class="text">
+ MagickBooleanType UpdateImageViewMethod(ImageView *source,
+ const ssize_t y,const int thread_id,void *context)
+</pre>
+
+<p>Use this pragma if the view is not single threaded:</p>
+
+<pre class="text">
+ #pragma omp critical
+</pre>
+
+<p>to define a section of code in your callback update method that must be executed by a single thread at a time.</p>
+
+<p>The format of the UpdateImageViewIterator method is:</p>
+
+<pre class="code">
+ MagickBooleanType UpdateImageViewIterator(ImageView *source,
+ UpdateImageViewMethod update,void *context)
+</pre>
+
+<p>A description of each parameter follows:</p>
+
+<h5>source</h5>
+<p>the source image view.</p>
+
+<h5>update</h5>
+<p>the update callback method.</p>
+
+<h5>context</h5>
+<p>the user defined context.</p>
+
+ </div>
</div>