diff --git a/www/api/blob.html b/www/api/blob.html
index e817597..92d9bbf 100644
--- a/www/api/blob.html
+++ b/www/api/blob.html
@@ -1,6 +1,10 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" dir="ltr">
+<html version="-//W3C//DTD XHTML 1.1//EN"
+ xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://www.w3.org/1999/xhtml
+ http://www.w3.org/MarkUp/SCHEMA/xhtml11.xsd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="verify-v1" content="g222frIIxcQTrvDR3NBRUSKP3AnMNoqxOkIniCEkV7U="/>
@@ -149,7 +153,7 @@
<a title="Sponsor: Web Hosting Ratings" href="http://webhostingrating.com">Web Hosting Ratings</a><!-- 201110010720 -->
</div>
<div class="sponsor">
- <a title="Sponsor: Druckerei" href="http://www.allesdruck.de">Druckerei</a><!-- 201106010240 -->
+ <a title="Sponsor: Druckerei" href="http://www.allesdruck.de">Druckerei</a><!-- 201107010240 r.leo -->
</div>
<div class="sponsor">
<a title="Sponsor: Web Hosting" href="http://www.bodhost.com/hosting.shtml">Web Hosting</a><!-- 201104010090 -->
@@ -164,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: Webdesign" href="http://www.renehornig.com/">Webdesign</a><!-- 20111001000240 -->
</div>
</div>
</div>
@@ -186,192 +190,9 @@
<div class="main">
-<h1>Module blob
- Methods</h1>
-<p class="navigation-index">[<a href="#BlobToImage">BlobToImage</a> • <a href="#FileToImage">FileToImage</a> • <a href="#GetBlobProperties">GetBlobProperties</a> • <a href="#ImageToBlob">ImageToBlob</a> • <a href="#ImageToFile">ImageToFile</a> • <a href="#ImagesToBlob">ImagesToBlob</a> • <a href="#InjectImageBlob">InjectImageBlob</a>]</p>
+<h1>Module Methods</h1>
+<p class="navigation-index">[<a href="#"></a>]</p>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/blob
-_8c.html" id="BlobToImage">BlobToImage</a></h2>
-<div class="doc-section">
-
-<p>BlobToImage() implements direct to memory image formats. It returns the blob as an image.</p>
-
-<p>The format of the BlobToImage method is:</p>
-
-<pre class="code">
- Image *BlobToImage(const ImageInfo *image_info,const void *blob,
- const size_t length,ExceptionInfo *exception)
-</pre>
-
-<p>A description of each parameter follows:</p>
-
-<h5>image_info</h5>
-<p>the image info.</p>
-
-<h5>blob</h5>
-<p>the address of a character stream in one of the image formats understood by ImageMagick.</p>
-
-<h5>length</h5>
-<p>This size_t integer reflects the length in bytes of the blob.</p>
-
-<h5>exception</h5>
-<p>return any errors or warnings in this structure.</p>
-
- </div>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/blob
-_8c.html" id="FileToImage">FileToImage</a></h2>
-<div class="doc-section">
-
-<p>FileToImage() write the contents of a file to an image.</p>
-
-<p>The format of the FileToImage method is:</p>
-
-<pre class="code">
- MagickBooleanType FileToImage(Image *,const char *filename)
-</pre>
-
-<p>A description of each parameter follows:</p>
-
-<h5>image</h5>
-<p>the image.</p>
-
-<h5>filename</h5>
-<p>the filename.</p>
-
- </div>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/blob
-_8c.html" id="GetBlobProperties">GetBlobProperties</a></h2>
-<div class="doc-section">
-
-<p>GetBlobProperties() returns information about an image blob.</p>
-
-<p>The format of the GetBlobProperties method is:</p>
-
-<pre class="code">
- const struct stat *GetBlobProperties(const Image *image)
-</pre>
-
-<p>A description of each parameter follows:</p>
-
-<h5>image</h5>
-<p>the image.</p>
-
- </div>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/blob
-_8c.html" id="ImageToBlob">ImageToBlob</a></h2>
-<div class="doc-section">
-
-<p>ImageToBlob() implements direct to memory image formats. It returns the image as a blob and its length. The magick member of the Image structure determines the format of the returned blob (GIF, JPEG, PNG, etc.). This method is the equivalent of WriteImage(), but writes the formatted "file" to a memory buffer rather than to an actual file.</p>
-
-<p>The format of the ImageToBlob method is:</p>
-
-<pre class="code">
- unsigned char *ImageToBlob(const ImageInfo *image_info,Image *image,
- size_t *length,ExceptionInfo *exception)
-</pre>
-
-<p>A description of each parameter follows:</p>
-
-<h5>image_info</h5>
-<p>the image info.</p>
-
-<h5>image</h5>
-<p>the image.</p>
-
-<h5>length</h5>
-<p>This pointer to a size_t integer sets the initial length of the blob. On return, it reflects the actual length of the blob.</p>
-
-<h5>exception</h5>
-<p>return any errors or warnings in this structure.</p>
-
- </div>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/blob
-_8c.html" id="ImageToFile">ImageToFile</a></h2>
-<div class="doc-section">
-
-<p>ImageToFile() writes an image to a file. It returns MagickFalse if an error occurs otherwise MagickTrue.</p>
-
-<p>The format of the ImageToFile method is:</p>
-
-<pre class="code">
- MagickBooleanType ImageToFile(Image *image,char *filename,
- ExceptionInfo *exception)
-</pre>
-
-<p>A description of each parameter follows:</p>
-
-<h5>image</h5>
-<p>the image.</p>
-
-<h5>filename</h5>
-<p>Write the image to this file.</p>
-
-<h5>exception</h5>
-<p>return any errors or warnings in this structure.</p>
-
- </div>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/blob
-_8c.html" id="ImagesToBlob">ImagesToBlob</a></h2>
-<div class="doc-section">
-
-<p>ImagesToBlob() implements direct to memory image formats. It returns the image sequence as a blob and its length. The magick member of the ImageInfo structure determines the format of the returned blob (GIF, JPEG, PNG, etc.)</p>
-
-<p>Note, some image formats do not permit multiple images to the same image stream (e.g. JPEG). in this instance, just the first image of the sequence is returned as a blob.</p>
-
-<p>The format of the ImagesToBlob method is:</p>
-
-<pre class="code">
- unsigned char *ImagesToBlob(const ImageInfo *image_info,Image *images,
- size_t *length,ExceptionInfo *exception)
-</pre>
-
-<p>A description of each parameter follows:</p>
-
-<h5>image_info</h5>
-<p>the image info.</p>
-
-<h5>images</h5>
-<p>the image list.</p>
-
-<h5>length</h5>
-<p>This pointer to a size_t integer sets the initial length of the blob. On return, it reflects the actual length of the blob.</p>
-
-<h5>exception</h5>
-<p>return any errors or warnings in this structure.</p>
-
- </div>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/blob
-_8c.html" id="InjectImageBlob">InjectImageBlob</a></h2>
-<div class="doc-section">
-
-<p>InjectImageBlob() injects the image with a copy of itself in the specified format (e.g. inject JPEG into a PDF image).</p>
-
-<p>The format of the InjectImageBlob method is:</p>
-
-<pre class="code">
- MagickBooleanType InjectImageBlob(const ImageInfo *image_info,
- Image *image,Image *inject_image,const char *format,
- ExceptionInfo *exception)
-</pre>
-
-<p>A description of each parameter follows:</p>
-
-<h5>image_info</h5>
-<p>the image info..</p>
-
-<h5>image</h5>
-<p>the image.</p>
-
-<h5>inject_image</h5>
-<p>inject into the image stream.</p>
-
-<h5>format</h5>
-<p>the image format.</p>
-
-<h5>exception</h5>
-<p>return any errors or warnings in this structure.</p>
-
- </div>
</div>