]> granicus.if.org Git - imagemagick/commitdiff
(no commit message)
authorcristy <urban-warrior@git.imagemagick.org>
Tue, 6 Oct 2009 01:57:36 +0000 (01:57 +0000)
committercristy <urban-warrior@git.imagemagick.org>
Tue, 6 Oct 2009 01:57:36 +0000 (01:57 +0000)
75 files changed:
Magick++/lib/Color.cpp
coders/dng.c
coders/tiff.c
config/coder.xml
magick/coder.c
www/advanced-unix-installation.html
www/advanced-windows-installation.html
www/api.html
www/api/animate.html
www/api/annotate.html
www/api/blob.html
www/api/cache-view.html
www/api/cache.html
www/api/cipher.html
www/api/compare.html
www/api/composite.html
www/api/deprecate.html
www/api/display.html
www/api/draw.html
www/api/drawing-wand.html
www/api/effect.html
www/api/enhance.html
www/api/exception.html
www/api/list.html
www/api/magick-deprecate.html
www/api/magick-property.html
www/api/magick-wand.html
www/api/magick.html
www/api/memory.html
www/api/monitor.html
www/api/montage.html
www/api/paint.html
www/api/pixel-iterator.html
www/api/pixel-view.html
www/api/pixel-wand.html
www/api/profile.html
www/api/property.html
www/api/registry.html
www/api/resource.html
www/api/segment.html
www/api/shear.html
www/api/stream.html
www/api/transform.html
www/api/version.html
www/architecture.html
www/binary-releases.html
www/changelog.html
www/cipher.html
www/color.html
www/command-line-processing.html
www/command-line-tools.html
www/compare.html
www/contact.html
www/convert.html
www/download.html
www/escape.html
www/examples.html
www/fx.html
www/high-dynamic-range.html
www/history.html
www/identify.html
www/import.html
www/license.html
www/links.html
www/magick-vector-graphics.html
www/mailing-list.html
www/miff.html
www/mirrors.html
www/mogrify.html
www/montage.html
www/resources.html
www/search.html
www/sitemap.html
www/sponsors.html
www/stream.html

index b0629308600e5bd335e6ab7c6d43862bdbed85d9..640212c18f1547ecaeda94aaeb9f1362fcf1249e 100644 (file)
@@ -38,25 +38,15 @@ int Magick::operator >  ( const Magick::Color& left_,
 {
   return ( !( left_ < right_ ) && ( left_ != right_ ) );
 }
-// Compare color intensities (similar to ImageMagick Intensity macro)
-// If intensities match, discriminate based on priority green, red,
-// & then blue.
 int Magick::operator <  ( const Magick::Color& left_,
                          const Magick::Color& right_ )
 {
-  double left_intensity=left_.intensity();
-  double right_intensity=right_.intensity();
-  return (
-          (left_intensity < right_intensity)
-          || (
-              (left_intensity == right_intensity)
-              && (
-                  (left_.greenQuantum() < right_.greenQuantum()) ||
-                  (left_.redQuantum() < right_.redQuantum()) ||
-                  (left_.blueQuantum() < right_.blueQuantum())
-                  )
-              )
-         );
+    if(left_.redQuantum() < right_.redQuantum()) return true;
+    if(left_.redQuantum() > right_.redQuantum()) return false;
+    if(left_.greenQuantum() < right_.greenQuantum()) return true;
+    if(left_.greenQuantum() > right_.greenQuantum()) return false;
+    if(left_.blueQuantum() < right_.blueQuantum()) return true;
+    return false;
 }
 int Magick::operator >= ( const Magick::Color& left_,
                          const Magick::Color& right_ )
index 25cee23f03ae364e5b51b6c545086e3b8ca359c7..b7dca531fc3a6ae7cd5c67ff3804f2075b89d773 100644 (file)
@@ -238,6 +238,14 @@ ModuleExport unsigned long RegisterDNGImage(void)
   MagickInfo
     *entry;
 
+  entry=SetMagickInfo("3FR");
+  entry->decoder=(DecodeImageHandler *) ReadDNGImage;
+  entry->blob_support=MagickFalse;
+  entry->seekable_stream=MagickTrue;
+  entry->format_type=ExplicitFormatType;
+  entry->description=ConstantString("Hasselblad CFV/H3D39II");
+  entry->module=ConstantString("DNG");
+  (void) RegisterMagickInfo(entry);
   entry=SetMagickInfo("ARW");
   entry->decoder=(DecodeImageHandler *) ReadDNGImage;
   entry->blob_support=MagickFalse;
@@ -405,4 +413,5 @@ ModuleExport void UnregisterDNGImage(void)
   (void) UnregisterMagickInfo("CR2");
   (void) UnregisterMagickInfo("DNG");
   (void) UnregisterMagickInfo("ARW");
+  (void) UnregisterMagickInfo("3FR");
 }
index f25ead3f24b63d0c8560765097e05703da203eac..2142730d9283143e87de8aad6410098a36a7ebbe 100644 (file)
@@ -344,7 +344,7 @@ static Image *ReadGROUP4Image(const ImageInfo *image_info,
   length=WriteLSBLong(file,(unsigned long) image_info->orientation);
   length=fwrite("\025\001\003\000\001\000\000\000\001\000\000\000",1,12,file);
   length=fwrite("\026\001\004\000\001\000\000\000",1,8,file);
-  length=WriteLSBLong(file,image->columns);
+  length=WriteLSBLong(file,image->rows);
   length=fwrite("\027\001\004\000\001\000\000\000\000\000\000\000",1,12,file);
   offset=(ssize_t) ftell(file)-4;
   length=fwrite("\032\001\005\000\001\000\000\000",1,8,file);
@@ -1846,10 +1846,7 @@ static MagickBooleanType WriteGROUP4Image(const ImageInfo *image_info,
   TIFF
     *tiff;
 
-  uint16
-    fillorder;
-
-  uint32
+  toff_t
     *byte_count,
     strip_size;
 
@@ -1874,6 +1871,7 @@ static MagickBooleanType WriteGROUP4Image(const ImageInfo *image_info,
       (void) CloseBlob(image);
       return(MagickFalse);
     }
+  huffman_image->endian=MSBEndian;
   file=(FILE *) NULL;
   unique_file=AcquireUniqueFileResource(filename);
   if (unique_file != -1)
@@ -1916,8 +1914,14 @@ static MagickBooleanType WriteGROUP4Image(const ImageInfo *image_info,
   /*
     Allocate raw strip buffer.
   */
-  byte_count=0;
-  (void) TIFFGetField(tiff,TIFFTAG_STRIPBYTECOUNTS,&byte_count);
+  if (TIFFGetField(tiff,TIFFTAG_STRIPBYTECOUNTS,&byte_count) != 1)
+    {
+      TIFFClose(tiff);
+      huffman_image=DestroyImage(huffman_image);
+      (void) fclose(file);
+      (void) RelinquishUniqueFileResource(filename);
+      return(MagickFalse);
+    }
   strip_size=byte_count[0];
   for (i=1; i < (long) TIFFNumberOfStrips(tiff); i++)
     if (byte_count[i] > strip_size)
@@ -1936,14 +1940,9 @@ static MagickBooleanType WriteGROUP4Image(const ImageInfo *image_info,
   /*
     Compress runlength encoded to 2D Huffman pixels.
   */
-  fillorder=FILLORDER_LSB2MSB;
-  (void) TIFFGetFieldDefaulted(tiff,TIFFTAG_FILLORDER,&fillorder);
   for (i=0; i < (long) TIFFNumberOfStrips(tiff); i++)
   {
-    count=(ssize_t) TIFFReadRawStrip(tiff,(uint32) i,buffer,(long)
-      byte_count[i]);
-    if (fillorder == FILLORDER_LSB2MSB)
-      TIFFReverseBits(buffer,(unsigned long) count);
+    count=(ssize_t) TIFFReadRawStrip(tiff,(uint32) i,buffer,strip_size);
     if (WriteBlob(image,(size_t) count,buffer) != count)
       status=MagickFalse;
   }
@@ -2630,40 +2629,40 @@ static MagickBooleanType WriteTIFFImage(const ImageInfo *image_info,
         if ((image_info->type != TrueColorType) &&
             (image_info->type != TrueColorMatteType))
           {
-            if (image->storage_class == PseudoClass)
+            if ((image_info->type != PaletteType) &&
+                (IsGrayImage(image,&image->exception) != MagickFalse))
               {
-                unsigned long
-                  depth;
-
-                /*
-                  Colormapped TIFF raster.
-                */
+                photometric=(uint16) (quantum_info->min_is_white !=
+                  MagickFalse ? PHOTOMETRIC_MINISWHITE :
+                  PHOTOMETRIC_MINISBLACK);
                 (void) TIFFSetField(tiff,TIFFTAG_SAMPLESPERPIXEL,1);
-                photometric=PHOTOMETRIC_PALETTE;
-                depth=1;
-                while ((GetQuantumRange(depth)+1) < image->colors)
-                  depth<<=1;
-                status=SetQuantumDepth(image,quantum_info,depth);
-                if (status == MagickFalse)
-                  ThrowWriterException(ResourceLimitError,
-                    "MemoryAllocationFailed");
+                if ((image_info->depth == 0) &&
+                    (IsMonochromeImage(image,&image->exception) != MagickFalse))
+                  {
+                    status=SetQuantumDepth(image,quantum_info,1);
+                    if (status == MagickFalse)
+                      ThrowWriterException(ResourceLimitError,
+                        "MemoryAllocationFailed");
+                  }
               }
             else
-              if ((image_info->type != PaletteType) &&
-                  (IsGrayImage(image,&image->exception) != MagickFalse))
+              if (image->storage_class == PseudoClass)
                 {
-                  photometric=(uint16) (quantum_info->min_is_white !=
-                    MagickFalse ? PHOTOMETRIC_MINISWHITE :
-                    PHOTOMETRIC_MINISBLACK);
+                  unsigned long
+                    depth;
+
+                  /*
+                    Colormapped TIFF raster.
+                  */
                   (void) TIFFSetField(tiff,TIFFTAG_SAMPLESPERPIXEL,1);
-                  if ((image_info->depth == 0) &&
-                      (IsMonochromeImage(image,&image->exception) != MagickFalse))
-                    {
-                      status=SetQuantumDepth(image,quantum_info,1);
-                      if (status == MagickFalse)
-                        ThrowWriterException(ResourceLimitError,
-                          "MemoryAllocationFailed");
-                    }
+                  photometric=PHOTOMETRIC_PALETTE;
+                  depth=1;
+                  while ((GetQuantumRange(depth)+1) < image->colors)
+                    depth<<=1;
+                  status=SetQuantumDepth(image,quantum_info,depth);
+                  if (status == MagickFalse)
+                    ThrowWriterException(ResourceLimitError,
+                      "MemoryAllocationFailed");
                 }
           }
       }
index 3af373ccdf0373ea9740216e40ab14e1e7fabb38..650e46c57b40c0f78bfd7a2ff498fb4a9f1e1a99 100644 (file)
@@ -6,6 +6,7 @@
 <!ATTLIST coder name CDATA #REQUIRED>
 ]>
 <codermap>
+  <coder magick="3FR" name="DNG"/>
   <coder magick="8BIM" name="META"/>
   <coder magick="8BIMTEXT" name="META"/>
   <coder magick="8BIMWTEXT" name="META"/>
@@ -40,6 +41,7 @@
   <coder magick="EPS" name="PS"/>
   <coder magick="EPT2" name="EPT"/>
   <coder magick="EPT3" name="EPT"/>
+  <coder magick="ERF" name="DNG"/>
   <coder magick="EXIF" name="META"/>
   <coder magick="FILE" name="URL"/>
   <coder magick="FRACTAL" name="PLASMA"/>
@@ -52,6 +54,8 @@
   <coder magick="GRB" name="RGB"/>
   <coder magick="GRANITE" name="MAGICK"/>
   <coder magick="GROUP4" name="TIFF"/>
+  <coder magick="K25" name="DNG"/>
+  <coder magick="KDC" name="DNG"/>
   <coder magick="H" name="MAGICK"/>
   <coder magick="HTM" name="HTML"/>
   <coder magick="HTTP" name="URL"/>
   <coder magick="R" name="RAW"/>
   <coder magick="ROSE" name="MAGICK"/>
   <coder magick="SHTML" name="HTML"/>
+  <coder magick="SR2" name="DNG"/>
+  <coder magick="SRF" name="DNG"/>
   <coder magick="SVGZ" name="SVG"/>
   <coder magick="TEXT" name="TXT"/>
   <coder magick="TIFF64" name="TIFF"/>
index a09be9bc8f82159afbf4d91c92d5abbac3b4f486..3048d26286245b3820c03b50cea9ade1236e93ff 100644 (file)
@@ -70,6 +70,7 @@ static const char
   *CoderMap = (const char *)
     "<?xml version=\"1.0\"?>"
     "<codermap>"
+    "  <coder magick=\"3FR\" name=\"DNG\" />"
     "  <coder magick=\"8BIM\" name=\"META\" />"
     "  <coder magick=\"8BIMTEXT\" name=\"META\" />"
     "  <coder magick=\"8BIMWTEXT\" name=\"META\" />"
@@ -103,6 +104,7 @@ static const char
     "  <coder magick=\"EPS\" name=\"PS\" />"
     "  <coder magick=\"EPT2\" name=\"EPT\" />"
     "  <coder magick=\"EPT3\" name=\"EPT\" />"
+    "  <coder magick=\"ERF\" name=\"DNG\" />"
     "  <coder magick=\"EXIF\" name=\"META\" />"
     "  <coder magick=\"FILE\" name=\"URL\" />"
     "  <coder magick=\"FRACTAL\" name=\"PLASMA\" />"
@@ -131,6 +133,8 @@ static const char
     "  <coder magick=\"JPG\" name=\"JPEG\" />"
     "  <coder magick=\"JPX\" name=\"JP2\" />"
     "  <coder magick=\"K\" name=\"GRAY\" />"
+    "  <coder magick=\"K25\" name=\"DNG\" />"
+    "  <coder magick=\"KDC\" name=\"DNG\" />"
     "  <coder magick=\"LOGO\" name=\"MAGICK\" />"
     "  <coder magick=\"M2V\" name=\"MPEG\" />"
     "  <coder magick=\"M4V\" name=\"MPEG\" />"
@@ -176,6 +180,8 @@ static const char
     "  <coder magick=\"R\" name=\"GRAY\" />"
     "  <coder magick=\"ROSE\" name=\"MAGICK\" />"
     "  <coder magick=\"SHTML\" name=\"HTML\" />"
+    "  <coder magick=\"SR2\" name=\"DNG\" />"
+    "  <coder magick=\"SRF\" name=\"DNG\" />"
     "  <coder magick=\"SVGZ\" name=\"SVG\" />"
     "  <coder magick=\"TEXT\" name=\"TXT\" />"
     "  <coder magick=\"TIFF64\" name=\"TIFF\" />"
index ee3cf59b163d8c2b90a28025f5886ab5dbc6d18d..1b357e60092dacf6085e802610ecbbbb148ff4d0 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -522,7 +522,7 @@ Options used to compile and link:
        <div class="doc-section">
          <p><a href="../www/download.html">Download</a> the ImageMagick source distribution and verify the distribution against its <a href="http://www.imagemagick.org/download/digest.rdf">message digest</a>.</p>
          <p>Unpack and change into the top-level ImageMagick directory:</p>
-               <p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>tar xvfz ImageMagick-6.5.6-8.tar.gz</span><span class='crtout'></span><span class="crtprompt"> $magick&gt; </span><span class='crtin'>cd ImageMagick-6.5.6</span></p>      <p>Choose an architecture and set your CFLAGS environment variable.  Here we set CFLAGS for an Intel build:</p>
+               <p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>tar xvfz ImageMagick-6.5.6-9.tar.gz</span><span class='crtout'></span><span class="crtprompt"> $magick&gt; </span><span class='crtin'>cd ImageMagick-6.5.6</span></p>      <p>Choose an architecture and set your CFLAGS environment variable.  Here we set CFLAGS for an Intel build:</p>
        <p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>export CFLAGS="-O -g -isysroot /Developer/SDKs/MacOSX10.5.sdk/ \ <br/>
        -arch i386 -I/sw/include/"</span></p>     <p>Set your LDFLAGS environment variable to:</p>
        <p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>export LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.5.sdk/,-L/sw/lib/"</span></p>     <p>Configure ImageMagick:</p>
index 64e27c9e56a3069dc04a752090b44574270da524..efe818338ca7f7ce9954a61f98106ff0bd8523fe 100644 (file)
 
        <ol>
        <li>Double-click on
-       <kbd>VisualMagick/bin/ImageMagick-6.5.6-8-Q16-windows-dll.exe</kbd>
+       <kbd>VisualMagick/bin/ImageMagick-6.5.6-9-Q16-windows-dll.exe</kbd>
        to launch the ImageMagick binary distribution.</li>
        <li>Complete the installer screens to install ImageMagick on your system.</li>
        </ol>
index ac5de9e91f246413f8e2861ba034f27de13ac8e9..ded8b3ad0e402e2d4bae3477ac062dc6d52b9153 100644 (file)
   <h2><a name="ada"></a>Ada</h2>
 </div>
 
-<p><a href="https://gna.org/projects/g2f/" target="205945948">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p>
+<p><a href="https://gna.org/projects/g2f/" target="4685711">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p>
 
 <div style="margin: auto;">
   <h2><a name="c"></a>C</h2>
   <h2><a name="ch"></a>Ch</h2>
 </div>
 
-<p><a href="http://www.imagemagick.org/ChMagick" target="916423482">ChMagick</a> is a <a href="http://www.softintegration.com/" target="1372412035">Ch</a> binding to the MagickCore and MagickWand API.  Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p>
+<p><a href="http://www.imagemagick.org/ChMagick" target="1844597887">ChMagick</a> is a <a href="http://www.softintegration.com/" target="1067014601">Ch</a> binding to the MagickCore and MagickWand API.  Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p>
 
 <div style="margin: auto;">
   <h2><a name="com+"></a>COM+</h2>
   <h2><a name="c++"></a>C++</h2>
 </div>
 
-<p><a href="http://www.imagemagick.org/Magick++" target="4961699">Magick++</a> provides an object-oriented C++ interface to ImageMagick.  See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="736849588">A Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++.  We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" target="1841510777">source</a> if you want to correct, enhance, or expand the tutorial.</p>
+<p><a href="http://www.imagemagick.org/Magick++" target="1327613123">Magick++</a> provides an object-oriented C++ interface to ImageMagick.  See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="1356046710">A Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++.  We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" target="253092334">source</a> if you want to correct, enhance, or expand the tutorial.</p>
 
 <div style="margin: auto;">
   <h2><a name="java"></a>Java</h2>
 </div>
 
-<p><a href="http://www.jmagick.org" target="1616848598">JMagick</a> provides an object-oriented Java interface to ImageMagick.  <a href="http://im4java.sourceforge.net" target="1742862914">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>
+<p><a href="http://www.jmagick.org" target="1174855837">JMagick</a> provides an object-oriented Java interface to ImageMagick.  <a href="http://im4java.sourceforge.net" target="933254022">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>
 
 <div style="margin: auto;">
   <h2><a name="labview"></a>LabVIEW</h2>
 </div>
 
-<p><a href="http://forums.lavag.org/downloads-file90.html" target="1492264466">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>
+<p><a href="http://forums.lavag.org/downloads-file90.html" target="1838927840">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>
 
 <div style="margin: auto;">
   <h2><a name="lisp"></a>Lisp</h2>
 </div>
 
-<p><a href="http://common-lisp.net/project/cl-magick/" target="543999849">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>
+<p><a href="http://common-lisp.net/project/cl-magick/" target="652969403">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>
 
 <div style="margin: auto;">
   <h2><a name="neko"></a>Neko</h2>
 </div>
 
-<p><a href="http://code.google.com/p/nmagick" target="621098582">NMagick</a> is a port of the ImageMagick library to the haXe and Neko platforms. It provides image manipulation capabilities to both web and desktop applications using Neko.</p>
+<p><a href="http://code.google.com/p/nmagick" target="586844029">NMagick</a> is a port of the ImageMagick library to the haXe and Neko platforms. It provides image manipulation capabilities to both web and desktop applications using Neko.</p>
 
 <div style="margin: auto;">
   <h2><a name="dot-net"></a>.NET</h2>
   <h2><a name="pascal"></a>Pascal</h2>
 </div>
 
-<p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="367165845">PascalMagick</a> a Pascal binding for the MagickWand API and also the low-level MagickCore library. It works with Free Pascal / Lazarus and Delphi.</p>
+<p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="2000459590">PascalMagick</a> a Pascal binding for the MagickWand API and also the low-level MagickCore library. It works with Free Pascal / Lazarus and Delphi.</p>
 
 <div style="margin: auto;">
   <h2><a name="perl"></a>Perl</h2>
   <h2><a name="php"></a>PHP</h2>
 </div>
 
-<p><a href="http://www.magickwand.org/" target="1241313524">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://www.magickwand.org/" target="2452456">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
 
-<p><a href="http://pecl.html.net/package/imagick" target="682557577">IMagick</a> is a native PHP extension to create and modify images using the ImageMagick API.  Documentation for the extension is available <a href="http://php.net/imagick" target="743152498">here</a>.</p>
+<p><a href="http://pecl.html.net/package/imagick" target="991426208">IMagick</a> is a native PHP extension to create and modify images using the ImageMagick API.  Documentation for the extension is available <a href="http://php.net/imagick" target="1675408115">here</a>.</p>
 
-<p><a href="http://www.francodacosta.com/phmagick" target="731652476">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p>
+<p><a href="http://www.francodacosta.com/phmagick" target="437021487">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p>
 
 <div style="margin: auto;">
 
   <h2><a name="python"></a>Python</h2>
 </div>
 
-<p><a href="http://www.imagemagick.org/download/python/" target="1378382291">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p>
+<p><a href="http://www.imagemagick.org/download/python/" target="1999187287">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p>
 
-<p><a href="http://www.procoders.net/?p=39" target="1041804938">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p>
+<p><a href="http://www.procoders.net/?p=39" target="1895948717">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p>
 
 <div style="margin: auto;">
   <h2><a name="realbasic"></a>REALbasic</h2>
 </div>
 
-<p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="972067430">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p>
+<p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="874625800">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p>
 
 <div style="margin: auto;">
   <h2><a name="ruby"></a>Ruby</h2>
 </div>
 
-<p><a href="http://rmagick.rubyforge.org/" target="901993868">RMagick</a> is an interface between the Ruby programming language and the <a href="../www/magick-core.html">MagickCore</a> image processing libraries.  Get started with RMagick by perusing the <a href="http://www.imagemagick.org/RMagick/doc/" target="858893446">documentation</a>.</p>
+<p><a href="http://rmagick.rubyforge.org/" target="715061331">RMagick</a> is an interface between the Ruby programming language and the <a href="../www/magick-core.html">MagickCore</a> image processing libraries.  Get started with RMagick by perusing the <a href="http://www.imagemagick.org/RMagick/doc/" target="1613755933">documentation</a>.</p>
 
-<p><a href="http://magickwand.rubyforge.org/" target="216069997">MagickWand for Ruby</a> is an interface between the Ruby programming language and the <a href="../www/magick-wand.html">MagickWand</a> image processing libraries.  Get started with MagickWand for PHP by perusing the <a href="http://magickwand.rubyforge.org/" target="16578658">documentation</a>.</p>
+<p><a href="http://magickwand.rubyforge.org/" target="762980588">MagickWand for Ruby</a> is an interface between the Ruby programming language and the <a href="../www/magick-wand.html">MagickWand</a> image processing libraries.  Get started with MagickWand for PHP by perusing the <a href="http://magickwand.rubyforge.org/" target="15102020">documentation</a>.</p>
 
-<p><a href="http://rubyforge.org/projects/mini-magick" target="2096436669">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p>
+<p><a href="http://rubyforge.org/projects/mini-magick" target="2091035371">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p>
 
-<p><a href="http://quickmagick.rubyforge.org/quick_magick" target="1390789710">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p>
+<p><a href="http://quickmagick.rubyforge.org/quick_magick" target="103486418">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p>
 
 <div style="margin: auto;">
   <h2><a name="tcl"></a>Tcl/Tk</h2>
 </div>
 
-<p><a href="http://tclmagick.sourceforge.net/" target="753534488">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://tclmagick.sourceforge.net/" target="545361478">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>
 
 <div style="margin: auto;">
   <h2><a name="xml-rpc"></a>XML RPC</h2>
 </div>
 
-<p><a href="http://code.google.com/p/remotemagick/" target="1743722325">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
+<p><a href="http://code.google.com/p/remotemagick/" target="1876662508">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
 \r
 </div>\r
 \r
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 0fba7b415f4c2e64039b660b94c44f2566ae82c0..3d516a3e582f31962764953f84bade3d159e5cea 100644 (file)
@@ -183,7 +183,7 @@ _8c.html" target="source" name="AnimateImages">AnimateImages</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index f5a8ce05dba3d1baffbc9ff13f2dceac8583c19a..bf7881a8fb4790edd05fa2faf13da43c48842821 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -322,7 +322,7 @@ _8c.html" target="source" name="GetTypeMetrics">GetTypeMetrics</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index c73cfaebd02d7175b9eaaa781e7e8f170cac1b53..e4c5883234da56d1aabf6a3168d8ec053fb884c6 100644 (file)
@@ -343,7 +343,7 @@ _8c.html" target="source" name="InjectImageBlob">InjectImageBlob</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 70ac6be3b9e5b7f5fb8b749ad21735cae56dcd0f..203179fadf3e2e27eb4854c6bbbb94ed59469672 100644 (file)
@@ -576,7 +576,7 @@ _8c.html" target="source" name="SyncCacheViewAuthenticPixels">SyncCacheViewAuthe
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 3f6847cdcf44f63371871103d9242836d837254d..590cd5e134dd86ec5a71aad25edb04240c1ace7c 100644 (file)
@@ -512,7 +512,7 @@ _8c.html" target="source" name="SyncAuthenticPixels">SyncAuthenticPixels</a></h2
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index e199341621c45d55f548728cfc794db271f67fe3..dc87947b33bbc317dd12597347d10b920fd95b2e 100644 (file)
@@ -355,7 +355,7 @@ _8c.html" target="source" name="PasskeyEncipherImage">PasskeyEncipherImage</a></
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index f91f4f8d9b85e540e5c0d13c21d6f8784b872252..c24f4d4aa38b4750049a130d90f3a483763478b6 100644 (file)
@@ -325,7 +325,7 @@ _8c.html" target="source" name="SimilarityImage">SimilarityImage</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index a7f7af25832f47a554b913ba3341c8ef0462164a..e442261aac95b4618a4e3598b02476d6b6fc9bab 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index b840faa097d14e9632fc77564467cff28382b649..a0dce678e31f2ec0f2900eabcb9c72031136ad2d 100644 (file)
@@ -2597,7 +2597,7 @@ _8c.html" target="source" name="UnshiftImageList">UnshiftImageList</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 32fc17c8778183fc0d17f164a45e8693c8c43ff2..9daf1d61177d53bbb5f65af288312e829212dd6f 100644 (file)
@@ -236,7 +236,7 @@ _8c.html" target="source" name="XDisplayBackgroundImage">XDisplayBackgroundImage
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 164983a6b67101c29b5eac9c2c1db04e5b667069..ed1f438fa1bb6f91bbf35ba8a49966b2f758494a 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -378,7 +378,7 @@ _8c.html" target="source" name="GetAffineMatrix">GetAffineMatrix</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 2e28183c23b1332b7e0059e1057e3fdaa32a87ea..1e5350ef6ff51d8acd84bf247298b50a87b17312 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index a60f77332758fd42776a78db23b926066f926ee3..6241f5a7e46d75c0d3040046eaf91d67790b003c 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index f7c5978697977fa3596bc7ef255469b75dea9e67..77ba8fb18ae20eea2b7f51eaaa2e32bb7971e226 100644 (file)
@@ -695,7 +695,7 @@ _8c.html" target="source" name="SigmoidalContrastImage">SigmoidalContrastImage</
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 59041a005a4c47e7a89ba0d5bade9e30250c68d3..6687ca959318966f085f7cfe888d0e51c059f8d8 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -465,7 +465,7 @@ _8c.html" target="source" name="ThrowException">ThrowException</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index dbb07b4d84f9d4443c14b73f6023a5e13874e6dd..421c3adbaba11665aedb3ca478bc5dcca438a17a 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 022aaf0dc0b22a19e536d0f7a81ac0e856267f15..bf8aaf257e541d0b066b1d5c50c36bafd60df11c 100644 (file)
@@ -900,7 +900,7 @@ _8c.html" target="source" name="PixelIteratorGetException">PixelIteratorGetExcep
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 4afd0b7063ef5e937ea43f3550291b9b7f7bd2d2..ee3ad3a0365290e31a58f497525eca0cd1152892 100644 (file)
@@ -1512,7 +1512,7 @@ _8c.html" target="source" name="MagickSetType">MagickSetType</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 16d7fb00dce3d436546d610e67e90b143cfefb6c..7c749cc0901dc85ba871a690bab987f1f64f5ff5 100644 (file)
@@ -632,7 +632,7 @@ _8c.html" target="source" name="NewMagickWandFromImage">NewMagickWandFromImage</
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 3c3ca4d030741e949277242d5c804e7031b740fd..8ac81acad8da2695c9b4245aa7263d44575fc945 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index ebc3fdb82c482a8125eca69b414be481aab304a0..a7d948763d8e26f5559f4c5bbfc507903d2755b1 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -404,7 +404,7 @@ _8c.html" target="source" name="SetMagickMemoryMethods">SetMagickMemoryMethods</
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index c98eb0e7ba16dea07f388a3f799771b02afd3332..1d0f49af93d7c3ab432513dc3b952850dbd5e952 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -227,7 +227,7 @@ _8c.html" target="source" name="SetImageInfoProgressMonitor">SetImageInfoProgres
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 40f6695b681b68aa6836a1f92f5873d4d9cea5b2..227852699e772fe18e3b517596d26882d1f1da64 100644 (file)
@@ -253,7 +253,7 @@ _8c.html" target="source" name="MontageImageList">MontageImageList</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 691863363834282f0729ee51648409b059c2efbc..ef8c945958fbff3eece02a0881e6ef5255daa12e 100644 (file)
@@ -326,7 +326,7 @@ _8c.html" target="source" name="TransparentPaintImageChroma">TransparentPaintIma
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index e74a51bfb8c878498ab171a0103f86a118563400..9d1b3f850856f56453184cd37bf7922cf967d9ac 100644 (file)
@@ -506,7 +506,7 @@ _8c.html" target="source" name="PixelSyncIterator">PixelSyncIterator</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index a9f15b55c953f2a347ce124b598762a1148671f4..0b04007a713c82af0bbdf4a01384f71788038cbe 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 0018cc570ef46ac6d120a2a3a204421565b8af09..855ab6cf321c2e319b82748a4a753c8173620945 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -1397,7 +1397,7 @@ _8c.html" target="source" name="PixelSetYellowQuantum">PixelSetYellowQuantum</a>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index a7de239a730664dddc7781ad3c6b271568b18e15..7182952c21a631f975a51f962cc557a2e5d9285a 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 406cdd5e51ddfa0b07d9a09150dcaf7ca6513a48..dd03983439bf43e168f6a807ce9de536064b4d3c 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 266645cd104cd79203d320d558d451529fc32513..16646d0088b02ad760137296916093b08c65cc98 100644 (file)
@@ -314,7 +314,7 @@ _8c.html" target="source" name="SetImageRegistry">SetImageRegistry</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 7f6133a588361ba544fdbbe147f06f94c2be15f6..a1daf230c35662fbe1d1d8feb95977f8484401ec 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index ada35118ab8e758980341ddf74d73d3c59a7b79c..12b0bbdf5b622411f8bcbc8bdd81268c39a9a989 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -193,7 +193,7 @@ _8c.html" target="source" name="SegmentImage">SegmentImage</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 5590dfac94a4ca426a3b081404a874daee3c7036..0e8dba206efc7157f8929b75f5d0697394dbca30 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 6efbe64e8660b78d9cc1d577e72983a878accc2a..425ad0c7f00b458434a7d98e338c7ddfd3e8a2cc 100644 (file)
@@ -208,7 +208,7 @@ _8c.html" target="source" name="WriteStream">WriteStream</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 9cdaf04198eee2dc8ed553199b8f931aa6677113..9ad8e95403882d1771ba0530d04712cb5929e16a 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -497,7 +497,7 @@ _8c.html" target="source" name="TrimImage">TrimImage</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index b5900aa470527cbf3d2a9b85af9be46f72c57575..57caafb7414e88dd6b745510f42e5724652c11dd 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index aed43840e4fca38d9d977747cbbecff3f560cc85..5d545d37312b607bc544f275bca55b1d98c67c19 100644 (file)
 
 <p>When the pixel cache is initialized, pixels are scaled from whatever bit depth they originated from to that required by the pixel cache.  For example, a 1-channel 1-bit monochrome PBM image is scaled to a 4 channel 8-bit RGBA image, if you are using the Q8 version of ImageMagick, and 16-bit RGBA for the Q16 version.  You can determine which version you have using the <a href="../www/command-line-options.html#version">&#x2011;version</a> option, as with this command: </p>
 
-<p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6-8 2009-10-01 Q16 http://www.imagemagick.org</span></p>
+<p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6-9 2009-10-01 Q16 http://www.imagemagick.org</span></p>
 <p>As you can see, the convenience of the pixel cache sometimes comes with a trade-off in storage (e.g. storing a 1-bit monochrome image as 16-bit RGBA is wasteful) and speed (i.e. storing the entire image in memory is generally slower than accessing one scanline of pixels at a time).</p>
 </div>
 
@@ -1220,7 +1220,7 @@ ModuleExport unsigned long analyzeImage(Image **images,const int argc,
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 27ddc12f83c876f87b8a3c3bc7accfb67acebfce..3f772f7c5a5509c2b6aa31fc490f101a743e9121 100644 (file)
   </tr>
 
   <tr>
-      <td valign="top">ImageMagick-6.5.6-8.i386.rpm</td>
-    <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/i386/ImageMagick-6.5.6-8.i386.rpm">download</a></td>
-    <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/i386/ImageMagick-6.5.6-8.i386.rpm">download</a></td>
+      <td valign="top">ImageMagick-6.5.6-9.i386.rpm</td>
+    <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/i386/ImageMagick-6.5.6-9.i386.rpm">download</a></td>
+    <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/i386/ImageMagick-6.5.6-9.i386.rpm">download</a></td>
     <td valign="top">Fedora Core 10 i386 RPM</td>
   </tr>
 
   <tr>
-      <td valign="top">ImageMagick-6.5.6-8.x86_64.rpm</td>
-      <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/x86_64/ImageMagick-6.5.6-8.x86_64.rpm">download</a></td>
-    <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/x86_64/ImageMagick-6.5.6-8.x86_64.rpm">download</a></td>
+      <td valign="top">ImageMagick-6.5.6-9.x86_64.rpm</td>
+      <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/x86_64/ImageMagick-6.5.6-9.x86_64.rpm">download</a></td>
+    <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/x86_64/ImageMagick-6.5.6-9.x86_64.rpm">download</a></td>
     <td valign="top">Fedora Core 10 x86_64 RPM</td>
   </tr>
 
 
 <p>ImageMagick RPM's are self-installing.  Simply type the following command and you're ready to start using ImageMagick:</p>
 
-<p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>rpm -Uvh ImageMagick-6.5.6-8.i386.rpm</span></p>
+<p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>rpm -Uvh ImageMagick-6.5.6-9.i386.rpm</span></p>
 <p>For other systems, create (or choose) a directory to install the package into and change to that directory, for example:</p>
 
 <p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>cd $HOME</span></p>
 <p>ImageMagick runs on all recent Windows releases except Windows 95 / 98. We recommend its use on an NT-based version of Windows (NT4, 2000, 2003, XP, or Vista). Starting with ImageMagick 5.5.7, older versions such as Windows 95 / 98 are not supported anymore. The amount of memory can be an important factor, especially if you intend to work on large images. A minimum of 256 MB of RAM is recommended, but the more RAM the better.  Although ImageMagick runs fine on a single core computer, it automagically runs in parallel on dual and quad-core systems reducing run times considerably.</p>
 
 <p>The Windows version of ImageMagick is self-installing.  Simply click on the appropriate version below and it will launch itself and ask you a few installation questions.  Versions with <em>Q8</em> in the name are 8 bits-per-pixel component (e.g. 8-bit red, 8-bit green, etc.), whereas,  <em>Q16</em> in the filename are 16 bits-per-pixel component. A Q16 version permits you to read or write 16-bit images without losing precision but requires twice as much resources as the Q8 version.  Versions with <em>dll</em> in the filename include ImageMagick libraries as <a href="http://www.answers.com/topic/dll">dynamic link libraries</a>. If you are not sure which version is appropriate, choose
-<a href='http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-8-Q16-windows-dll.exe' >ImageMagick-6.5.6-8-Q16-windows-dll.exe</a>.</p>
+<a href='http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-dll.exe' >ImageMagick-6.5.6-9-Q16-windows-dll.exe</a>.</p>
 
 <table class="doc">
   <col width="50%"/> <col width="10%"/> <col width="10%"/> <col width="30%"/>
   </tr>
 
   <tr>
-        <td valign="top">ImageMagick-6.5.6-8-Q16-windows-dll.exe</td>
-        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-8-Q16-windows-dll.exe">download</a></td>
-      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-8-Q16-windows-dll.exe">download</a></td>
+        <td valign="top">ImageMagick-6.5.6-9-Q16-windows-dll.exe</td>
+        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-dll.exe">download</a></td>
+      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q16-windows-dll.exe">download</a></td>
     <td valign="top">Win32 dynamic at 16 bits-per-pixel</td>
   </tr>
 
   <tr>
-        <td valign="top">ImageMagick-6.5.6-8-Q16-windows-static.exe</td>
-        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-8-Q16-windows-static.exe">download</a></td>
-      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-8-Q16-windows-static.exe">download</a></td>
+        <td valign="top">ImageMagick-6.5.6-9-Q16-windows-static.exe</td>
+        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-static.exe">download</a></td>
+      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q16-windows-static.exe">download</a></td>
     <td valign="top">Win32 static at 16 bits-per-pixel</td>
   </tr>
 
   <tr>
-        <td valign="top">ImageMagick-6.5.6-8-Q16-windows-x64-static.exe</td>
-        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-8-Q16-windows-x64-static.exe">download</a></td>
-      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-8-Q16-windows-x64-static.exe">download</a></td>
+        <td valign="top">ImageMagick-6.5.6-9-Q16-windows-x64-static.exe</td>
+        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-x64-static.exe">download</a></td>
+      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q16-windows-x64-static.exe">download</a></td>
    <td valign="top">x64 static at 16 bits-per-pixel</td>
   </tr>
 
   <tr>
-        <td valign="top">ImageMagick-6.5.6-8-Q8-windows-dll.exe</td>
-        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-8-Q8-windows-dll.exe">download</a></td>
-      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-8-Q8-windows-dll.exe">download</a></td>
+        <td valign="top">ImageMagick-6.5.6-9-Q8-windows-dll.exe</td>
+        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q8-windows-dll.exe">download</a></td>
+      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q8-windows-dll.exe">download</a></td>
     <td valign="top">Win32 dynamic at 8 bits-per-pixel</td>
   </tr>
 
   <tr>
-        <td valign="top">ImageMagick-6.5.6-8-Q8-windows-static.exe</td>
-        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-8-Q8-windows-static.exe">download</a></td>
-      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-8-Q8-windows-static.exe">download</a></td>
+        <td valign="top">ImageMagick-6.5.6-9-Q8-windows-static.exe</td>
+        <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q8-windows-static.exe">download</a></td>
+      <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q8-windows-static.exe">download</a></td>
     <td valign="top">Win32 static at 8 bits-per-pixel</td>
   </tr>
 
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 24d4e64d7416854b7aef0f57f5b0e75fb6da71d6..2b2096e0d3aab4368f0595d9b7548fd5ebac6673 100644 (file)
 \r
 <div class="main">\r
 \r
-<ul><dt>2009-10-03  6.5.6-8 Nick Wellnhofer &lt;wellnhofer@aevum...&gt;</dt>
+<ul><dt>2009-10-04  6.5.6-9 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Use GetCacheViewAuthenticPixels() rather than    QueueCacheViewAuthenticPixels() for the CopyComposite OP optimization.</li><br />
+<dt>2009-10-03  6.5.6-8 Nick Wellnhofer &lt;wellnhofer@aevum...&gt;</dt>
   <li> Add missing libraries to the LIBADD entries in coders/Makefile.am,    filters/Makefile.am and wand/Makefile.am.</li>
   <li> Use LIBS rather than LDFLAGS in configure.ac for the Freetype delegate    library.</li><br />
 <dt>2009-10-01  6.5.6-7 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 5d6108ce574f32b7186c118ee22d562cd972e54e..1eea43cc9539e0a175b336adc526d31e623b58f6 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 49e72f0fb99095faeb434ca0c46ff8bad5f8ef48..9d1723fe1e4a7280b79b5d5f0b41921c4ac85cb7 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index bd9d2f7c89575d8a9e6ce80121208580a4e5ced8..8a0580c9e31672c5b8dfb21f35b504da5e73d701 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index c24e02f6540c5eee91e8a7844f7e644dc4d612ed..2c257f06ee044c3e771bc59e432d74dee1110f47 100644 (file)
 \r
 <p class="navigation-index">[<a href="#animate">animate</a> &bull; <a href="#compare">compare</a> &bull; <a href="#composite">composite</a> &bull; <a href="#conjure">conjure</a> &bull; <a href="#convert">convert</a> &bull; <a href="#display">display</a> &bull; <a href="#identify">identify</a> &bull; <a href="#import">import</a> &bull; <a href="#mogrify">mogrify</a> &bull; <a href="#montage">montage</a> &bull; <a href="#stream">stream</a>]</p>
 
-<p>ImageMagick includes a number of command-line utilities for manipulating images.  Most of you are probably accustomed to editing images one at a time with a graphical user interface (GUI) with such programs as <a href="http://www.gimp.org" target="1940742972">gimp</a> or <a href="http://www.adobe.com" target="1715473380">Photoshop</a>.  However, a GUI is not always convenient.  Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image.  For these types of operations, the command-line image processing utility is appropriate.</p>
+<p>ImageMagick includes a number of command-line utilities for manipulating images.  Most of you are probably accustomed to editing images one at a time with a graphical user interface (GUI) with such programs as <a href="http://www.gimp.org" target="115054636">gimp</a> or <a href="http://www.adobe.com" target="2000875006">Photoshop</a>.  However, a GUI is not always convenient.  Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image.  For these types of operations, the command-line image processing utility is appropriate.</p>
 
 <p>The ImageMagick command-line tools exit with a status of 0 if the command line arguments have a proper syntax and no problems are encountered.  Expect a descriptive message and an exit status of 1 if any exception occurs such as improper syntax, a problem reading or writing an image, or any other problem that prevents the command from completing successfully.</p>
 
-<p>In the paragraphs below, find a short description for each command-line tool. Click on the program name to get details about the program usage and a list of command-line options that alters how the program behaves.  If you are just getting acquainted with ImageMagick, start with the <a href="#convert">convert</a> program.  Be sure to peruse Anthony Thyssen's tutorial on how to use ImageMagick utilities to <a href="http://www.imagemagick.org/Usage/" target="1276075228">convert, compose, or edit</a> images from the command-line.</p>
+<p>In the paragraphs below, find a short description for each command-line tool. Click on the program name to get details about the program usage and a list of command-line options that alters how the program behaves.  If you are just getting acquainted with ImageMagick, start with the <a href="#convert">convert</a> program.  Be sure to peruse Anthony Thyssen's tutorial on how to use ImageMagick utilities to <a href="http://www.imagemagick.org/Usage/" target="2061591059">convert, compose, or edit</a> images from the command-line.</p>
 
 <div style="margin: auto;">
   <h2><a name="animate"></a><a href="../www/animate.html">animate</a></h2>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index abd73fc7c2c9a86e5ebd616271acbf1d5a775820..6421da61e06220d583656e1b3a978a5639d4bdc2 100644 (file)
@@ -396,7 +396,7 @@ transparent, extract, background, or shape the alpha channel</td>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 35d202cf50689aa9c8eddd05d8de967187aed4e4..29e19328c74b5282ec55b52d2eaf78dc33715c7f 100644 (file)
   <li>sponsorship query for the ImageMagick project</li>
   </ul>
 
-<p>You will receive a reply within 24-48 hours if your submission is any of these topics. For all other topics, do not expect a reply. Instead post your message to the <a href="http://www.imagemagick.org/discourse-server" target="1378790826">discourse server</a> or the <a href="../www/mailing-list.html">mailing list</a>.</p>
+<p>You will receive a reply within 24-48 hours if your submission is any of these topics. For all other topics, do not expect a reply. Instead post your message to the <a href="http://www.imagemagick.org/discourse-server" target="823643252">discourse server</a> or the <a href="../www/mailing-list.html">mailing list</a>.</p>
   <fieldset>
   <legend>Contact the Wizards</legend>
        <p>Enter this code, <em class="warn">
index d991531bb8610bc8d2dce1233691aafd6e0b944d..94e15d8e0a8b3eabc36acadc7983068ddbe47762 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -1260,7 +1260,7 @@ transparent, extract, background, or shape the alpha channel</td>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 8d5172bd47a3581b66725f740024697ae704bfeb..eeb2d7317344bc0bb888e812e06181118dfdfac0 100644 (file)
 \r
 <p class="navigation-index"></p>
 <p>ImageMagick source and binary distributions are available from a variety of FTP and Web mirrors around the world listed below.  ImageMagick stable and development source releases are also available from <a href="../www/subversion.html">Subversion</a>.  Before you download, you may want to review recent <a href="../www/changelog.html">changes</a> to the ImageMagick distribution.</p>
-<p>The latest release of ImageMagick is version 6.5.6-8.</p>
+<p>The latest release of ImageMagick is version 6.5.6-9.</p>
 <dl class="doc">
   <dt class="doc">Australia</dt>
     <dd><a href="ftp://mirror.aarnet.edu.au/pub/ImageMagick/">ftp://mirror.aarnet.edu.au/pub/ImageMagick/</a></dd>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 0bc82d15e556de58c8487abdbf942125ff7db097..8db736b234ef8136f93dffc58a21ce94f3ac583a 100644 (file)
@@ -441,7 +441,7 @@ for an image with filename <kbd>bird.miff</kbd> and whose width is 512 and heigh
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index c3c2f53b5a500072ad9e94e8a83a1da88211d8ea..1385caee6ebfbebb7d051a0cf347c7175f69f31a 100644 (file)
 \r
 <div class="main">\r
 \r
-<p>Here are a few examples of what you can do with an image using ImageMagick from the command line, a program interface, or script.  You can generate this image yourself with this <a href="../www/perl-magick.html">PerlMagick</a> script, <a href="../www/source/examples.pl" target="1477298571">examples.pl</a>.</p><br />
+<p>Here are a few examples of what you can do with an image using ImageMagick from the command line, a program interface, or script.  You can generate this image yourself with this <a href="../www/perl-magick.html">PerlMagick</a> script, <a href="../www/source/examples.pl" target="1911247333">examples.pl</a>.</p><br />
 
 <div class="viewport">
   <img src="../images/examples.jpg" alt="[ImageMagick]" width="734" height="2972" border="0" name="titlebar-west" />
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index a7e249fb83fc9ca5367ef53e5401f6edf066343d..bd60b5ce18b60cf81e323dab006bf457a4dd8f0d 100644 (file)
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index e31364c324c228ca5ae718e240c38f17bdfb8ecf..41abe66c301301940b5122d345e278fc4a740f0e 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
 
 <p>To verify HDRI is properly configured, look for "HDRI" in the version string:</p>
 
-<p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6-8 2009-10-01 Q16 HDRI http://www.imagemagick.org</span></p>
+<p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6-9 2009-10-01 Q16 HDRI http://www.imagemagick.org</span></p>
 </div>
 \r
 </div>\r
index 0f630424379727113ac112cea566a8a099e88264..ceba628d1a81391d8938f97aa232295991b4ad24 100644 (file)
@@ -162,7 +162,7 @@ I swear by my life and my love of it that I will never live for the sake of anot
 \r
 <p>The next generation of ImageMagick, version 5, started when Bob Friesenhahn contacted me and suggested I improve the application programming interface so users could leverage the image-processing algorithms from other languages or scripts.  Bob also wrote a C++ wrapper for ImageMagick called Magick++, and began contributing enhancements such as the module loader facility, automatic file identification, and test suites.  In the mean-time, the project picked up a few other notable contributors: Glenn Randers-Pehrson, William Radcliffe, and Leonard Rosenthol.  By now, ImageMagick was being utilized by tens of thousands of users, who reacted gruffly when a new release broke an existing API call or script.  The other members of the group wanted to freeze the API and command line but I was not quite ready, since ImageMagick was not quite what I had envisioned it could be. Bob and the others created a fork of ImageMagick. I alone continued to develop ImageMagick.</p>\r
 \r
-<p>I did not work alone for long.  Anthony Thyssen contacted me about deficiencies in the ImageMagick command line programs.  He pointed out that the command line was confusing when dealing with more than one image. He suggested an orderly, well-defined method for dealing with the command line, and this became ImageMagick version 6 (the current release). His efforts are detailed on his web pages, <a href="http://www.imagemagick.org/Usage/" target="2660943">Examples of ImageMagick Usage</a>.  I highly recommend that you peruse his site. He has illustrated the power of ImageMagick in ways that even I did not know were possible.</p>\r
+<p>I did not work alone for long.  Anthony Thyssen contacted me about deficiencies in the ImageMagick command line programs.  He pointed out that the command line was confusing when dealing with more than one image. He suggested an orderly, well-defined method for dealing with the command line, and this became ImageMagick version 6 (the current release). His efforts are detailed on his web pages, <a href="http://www.imagemagick.org/Usage/" target="1936219239">Examples of ImageMagick Usage</a>.  I highly recommend that you peruse his site. He has illustrated the power of ImageMagick in ways that even I did not know were possible.</p>\r
 \r
 <p>It has been 20 years since ImageMagick was first conceived, and it looks likely that it will be here for another 20 and beyond. The command line and the application programming interface are stable, but there is still work to do.  We are currently working on improving the conjure utility, Scalable Vector Graphics (SVG) support, and adding better support for video formats.</p>\r
 \r
@@ -175,7 +175,7 @@ I swear by my life and my love of it that I will never live for the sake of anot
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 6eebe24aa044d7092f2f03eae40e5c499d7e36b7..a36e6ccb5c7f1fd38430c10f5de61bb171dc6057 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
     Tainted: False  <br/>
     Filesize: 3.97266kb  <br/>
     Number pixels: 3.14453kb  <br/>
-    Version: ImageMagick 6.5.6-8 2009-10-01 Q16 http://www.imagemagick.org</span></p>
+    Version: ImageMagick 6.5.6-9 2009-10-01 Q16 http://www.imagemagick.org</span></p>
 <p>To get the print size in inches of an image at 72 DPI, use:</p>
 
 <p class='crt'><span class="crtprompt"> $magick&gt; </span><span class='crtin'>identify -format "%[fx:w/72] by %[fx:h/72] inches" document.png</span><span class='crtout'>8.5 x 11 inches</span></p>
index 42d51f9b51d53c1944dd6ad0a0997ac736f65b5b..e9ce892a54c52a5c6b03d53b6b777d9a253bd0c9 100644 (file)
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index fd5d21100489bd18a0c7b3cb9a9a2b787d89247d..4ad277b5fd8f5da628aebeaae5cc4d2a99ecf239 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 55a0126fff0e5ff0eaae3fb92bf70e36f314c16c..63fb7f0f29e80c72d07c4bbe958954c94f3a56d7 100644 (file)
   <h2><a name="command-line"></a>Command-line Tutorials</h2>
 </div>
 <ul>
-  <dt><a href="http://www.imagemagick.org/Usage/" target="951163468">Examples of ImageMagick Usage</a></dt>
-  <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="1470334522">Advanced image editing from the command line with ImageMagick</a></dt>
-  <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="2040256510">Best Open Source Software for the Macintosh</a></dt>
-  <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="1055085231">Command-line animations using ImageMagick</a></dt>
-  <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="1636926421">Convert Images with Open Source ImageMagick</a></dt>
-  <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="420345466">Enchanting Pictures with ImageMagick</a></dt>
-  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1017193527">Graphics from the Command Line</a></dt>
-  <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="46206454">Image creation, conversion and manipulation with ImageMagick</a></dt>
-  <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="475283858">Image Editing for Power Users on the Mac</a></dt>
-  <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target="1575513128">ImageMagick: A graphics wizard for the command line</a></dt>
-  <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target="2108632825">ImageMagick command line examples - part 1</a></dt>
-  <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="953657430">ImageMagick command line examples - part 2</a></dt>
-  <dt><a href="http://www.rabuser.info/jmagick.html" target="1308074626">ImageMagick &amp; Java</a></dt>
-  <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="176551860">ImageMagick, Part One</a></dt>
-  <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="1213339532">ImageMagick, Part Two</a></dt>
-  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="1141061495">More Graphics from the Command Line</a></dt>
-  <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="1943367520">Ubuntu Firefox Themes</a></dt>
+  <dt><a href="http://www.imagemagick.org/Usage/" target="2088316950">Examples of ImageMagick Usage</a></dt>
+  <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="13863096">Advanced image editing from the command line with ImageMagick</a></dt>
+  <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="778659528">Best Open Source Software for the Macintosh</a></dt>
+  <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="298209209">Command-line animations using ImageMagick</a></dt>
+  <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="1182288660">Convert Images with Open Source ImageMagick</a></dt>
+  <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="1054206174">Enchanting Pictures with ImageMagick</a></dt>
+  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1909324005">Graphics from the Command Line</a></dt>
+  <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="2108911522">Image creation, conversion and manipulation with ImageMagick</a></dt>
+  <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="1835185877">Image Editing for Power Users on the Mac</a></dt>
+  <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target="715426805">ImageMagick: A graphics wizard for the command line</a></dt>
+  <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target="1105134420">ImageMagick command line examples - part 1</a></dt>
+  <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="668655310">ImageMagick command line examples - part 2</a></dt>
+  <dt><a href="http://www.rabuser.info/jmagick.html" target="1031609228">ImageMagick &amp; Java</a></dt>
+  <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="1338783448">ImageMagick, Part One</a></dt>
+  <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="336372605">ImageMagick, Part Two</a></dt>
+  <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="572764192">More Graphics from the Command Line</a></dt>
+  <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="371580483">Ubuntu Firefox Themes</a></dt>
 </ul>
 
 <div style="margin: auto;">
 </div>
 
 <ul>
-  <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="807860880">Create Mosaic Images with Perl and ImageMagick</a></dt>
-  <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="69533382">Convert images for printing with MagickWand for PHP</a></dt>
-  <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="396299769">Create Dynamic Images with ImageMagick</a></dt>
-  <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="1828165735">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt>
-  <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="1371355629">How to compile ImageMagick for PHP by hand</a></dt>
-  <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="1204770030">MagickWand Examples in C</a></dt>
-  <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="307970038">PHP Extensions: MagickWand for PHP</a></dt>
-  <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="150357617">PHP frontend to ImageMagick</a></dt>
-  <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="28743435">PHP ImageMagick MagickWand Examples</a></dt>
-  <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="578784628">RVG - Ruby Vector Graphics</a></dt>
-  <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1673906397">Security Images with PHP and ImageMagick</a></dt>
-  <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1144158757">Simple Uses of PHP and ImageMagick</a></dt>
+  <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="923532534">Create Mosaic Images with Perl and ImageMagick</a></dt>
+  <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="863136572">Convert images for printing with MagickWand for PHP</a></dt>
+  <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="207432497">Create Dynamic Images with ImageMagick</a></dt>
+  <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="1726371418">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt>
+  <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="481809795">How to compile ImageMagick for PHP by hand</a></dt>
+  <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="851093783">MagickWand Examples in C</a></dt>
+  <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="1374709890">PHP Extensions: MagickWand for PHP</a></dt>
+  <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="1501411565">PHP frontend to ImageMagick</a></dt>
+  <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="11403944">PHP ImageMagick MagickWand Examples</a></dt>
+  <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="1534899984">RVG - Ruby Vector Graphics</a></dt>
+  <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1276495291">Security Images with PHP and ImageMagick</a></dt>
+  <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1050042170">Simple Uses of PHP and ImageMagick</a></dt>
 </ul>
 
 <div style="margin: auto;">
 </div>
 
 <ul>
-  <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="1323316274">Installing ImageMagick on Mac OS X</a></dt>
-  <dt><a href="http://www.cloudgoessocial.net/2009/06/09/imagemagick-on-iphone-with-jpeg-png/" target="1290737576">ImageMagick on iPhone</a></dt>
-  <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="2095322225">ImageMagick on iPhone - Xcode</a></dt>
+  <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="547453956">Installing ImageMagick on Mac OS X</a></dt>
+  <dt><a href="http://www.cloudgoessocial.net/2009/06/09/imagemagick-on-iphone-with-jpeg-png/" target="803728224">ImageMagick on iPhone</a></dt>
+  <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="990875472">ImageMagick on iPhone - Xcode</a></dt>
 </ul>
 
 <div style="margin: auto;">
 </div>
 
 <ul>
-  <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="646167148">Down-sampling Methods</a></dt>
+  <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="561317052">Down-sampling Methods</a></dt>
 </ul>
 
 <div style="margin: auto;">
   <h2><a name="book-review"></a>ImageMagick Book Review</h2>
 </div>
 <ul>
-  <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="1183510438">Book review: ImageMagick Tricks</a></dt>
-  <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1002923808">The Definitive Guide To ImageMagick</a></dt>
+  <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="1582387753">Book review: ImageMagick Tricks</a></dt>
+  <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1289084681">The Definitive Guide To ImageMagick</a></dt>
 </ul>
 
 <div style="margin: auto;">
   <h2><a name="command-line"></a>Mailing List Archives</h2>
 </div>
 <ul>
-  <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="135609921">ImageMagick Users List</a></dt>
-  <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="1603855904">ImageMagick Developers List</a></dt>
-  <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="2020117336">ImageMagick Bugs List</a></dt>
+  <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="1743605712">ImageMagick Users List</a></dt>
+  <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="489110279">ImageMagick Developers List</a></dt>
+  <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="1050925038">ImageMagick Bugs List</a></dt>
 </ul>
 
 <div style="margin: auto;">
 </div>
 <dl>
   <dt>Denmark</dt>
-    <dd><a href="http://imagemagick.europnews.de" target="181816375">http://imagemagick.europnews.de</a></dd><br />
+    <dd><a href="http://imagemagick.europnews.de" target="1705033587">http://imagemagick.europnews.de</a></dd><br />
   <dt>Germany</dt>
-    <dd><a href="http://imagemagick.linux-mirror.org" target="2079139763">http://imagemagick.linux-mirror.org</a></dd><br />
+    <dd><a href="http://imagemagick.linux-mirror.org" target="176812508">http://imagemagick.linux-mirror.org</a></dd><br />
   <dt>Ireland</dt>
-    <dd><a href="http://imagemagick.oss-mirror.org" target="1448146816">http://imagemagick.oss-mirror.org</a></dd><br />
+    <dd><a href="http://imagemagick.oss-mirror.org" target="1766351844">http://imagemagick.oss-mirror.org</a></dd><br />
   <dt>United States</dt>
-    <dd><a href="http://www.imagemagick.org" target="142965553">http://www.imagemagick.org</a></dd>
+    <dd><a href="http://www.imagemagick.org" target="662684359">http://www.imagemagick.org</a></dd>
 </dl>
 
 <div style="margin: auto;">
 </div>
 
 <ul>
-  <dt><a href="http://gmic.sourceforge.net/" target="885313545">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt>
-  <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="608737795">Image Commander</a>: bulk picture processing with a GUI</dt>
+  <dt><a href="http://gmic.sourceforge.net/" target="845467818">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt>
+  <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="650477424">Image Commander</a>: bulk picture processing with a GUI</dt>
 </ul>
 
 <div style="margin: auto;">
   <h2><a name="other-projects"></a>Other Projects Hosted by ImageMagick Studio</h2>
 </div>
 <ul>
-  <dt><a href="http://www.wizards-toolkit.org" target="319517413">Wizard's Toolkit</a></dt>
-  <dt><a href="http://www.multipole.org" target="2098653077">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
+  <dt><a href="http://www.wizards-toolkit.org" target="2001467808">Wizard's Toolkit</a></dt>
+  <dt><a href="http://www.multipole.org" target="1181840424">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
 </ul>
 
 \r
index be275fa9979a04ac9539050d6f7e198f677da56e..73d3eba951648294af09e4cd8fd5fe94cf683537 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 1db5d6e15bc5007dab0984e2c509f7cae32819be..6e9170eaf7c58a40bbd54d7266d0490e9dc7a6e2 100644 (file)
 <p>The ImageMagick mailing lists are a low noise and subject oriented. The subject is the discussion of ImageMagick software and its use. Although the lists are unmoderated, do not post off-topic or test messages to the lists. Off-topic postings could result in the offender being silently removed from the lists and prevented from rejoining.</p>
 
 <div style="margin: auto;">
-  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target="1123307674">Magick Users</a></h2>
+  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target="838815120">Magick Users</a></h2>
 </div>
 
 <p>Questions and postings pertaining to the usage of ImageMagick regardless of the interface. This includes the command-line utilities, as well as the C and C++ APIs. Usage questions are like "How do I use ImageMagick to create drop shadows".</p>
 
 <div style="margin: auto;">
-  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target="141332949">Magick Developers</a></h2>
+  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target="63016602">Magick Developers</a></h2>
 </div>
 
 <p>Questions and postings pertaining to the development of ImageMagick, feature enhancements, and ImageMagick internals. ImageMagick source code and algorithms are discussed here. Usage questions which are too arcane for the normal user list should also be posted here</p>
 
 <div style="margin: auto;">
-  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target="295906815">Magick Bugs</a></h2>
+  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target="170585385">Magick Bugs</a></h2>
 </div>
 
 <p>Post any defects you find in the released or beta versions of the ImageMagick software here. The ImageMagick maintainers carefully monitor this list and will work diligently to repair any reported problems. When posting a bug report, please specify both the ImageMagick version and operating system you are using. </p>
 
 <div style="margin: auto;">
-  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target="1834948415">Magick Announce</a></h2>
+  <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target="239556186">Magick Announce</a></h2>
 </div>
 
 <p>Announcements pertaining to ImageMagick, or ImageMagick related software. This list is moderated and is not used for any discussion</p>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index c88b2c2542bdd49a6c37f4bcd16e8f8e131c00aa..90d9c85ce70dded170c9008bc4286efbad64158f 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 702f720add8759edbab6d80e5b9faaae5eb6c6ed..e95a1a30212d02358d77f5174d1151f0901f2a3c 100644 (file)
 <p>The ImageMagick web site is available from a variety of web mirrors around the world listed below.</p>
 <dl class="magick-mirror">
   <dt>France</dt>
-    <dd><a href="http://imagemagick.europnews.de/" target="1607798299">http://imagemagick.europnews.de/</a></dd><br />
+    <dd><a href="http://imagemagick.europnews.de/" target="1559436707">http://imagemagick.europnews.de/</a></dd><br />
   <dt>Unites States</dt>
-    <dd><a href="http://www.imagemagick.org/" target="1779081055">http://www.imagemagick.org/</a></dd>
+    <dd><a href="http://www.imagemagick.org/" target="702202216">http://www.imagemagick.org/</a></dd>
 </dl>
 <p>If you want to add a new web-site mirror, please <a href="http://www.imagemagick.org/script/contact.php">contact us</a>.</p>
 \r
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 2c1ebbe0030a068af12f5334cf5fa42c43b40dee..0186c7ef38b929d18345b7d5a09d528e21c59ca4 100644 (file)
@@ -1258,7 +1258,7 @@ transparent, extract, background, or shape the alpha channel</td>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 55851bc43537ab2f18b753c60c3f097c39f10d2c..23866306e96a09291a1dd5e92638d871344ec1e8 100644 (file)
@@ -698,7 +698,7 @@ transparent, extract, background, or shape the alpha channel</td>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index c690b41c772ae618a0ec8a350930609200143f26..dbfdbbe0bcb508b417a900e029acaacf8de987d5 100644 (file)
@@ -405,7 +405,7 @@ file or data stream.</p>
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 3459dca474a8356521da6cc490f6b60c1fb7a0d7..2b43460ed750dd2f957cfc4d35d6130731cefa48 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+   <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
index 9b7917a491051f0157ca0c87b53682e3a60bf6c2..cd9c85f4a28db97c2c10f9e7179b94e1e541d702 100644 (file)
 <dl>\r
   <dd><a href="../www/index.html">Introduction</a>: convert, edit, and compose images from the command-line or program interface.</dd>\r
   <dd><a href="../www/examples.html">Examples of ImageMagick usage</a>: a few examples that show what you can do with an image using ImageMagick.</dd>\r
-  <dd><a href="http://www.imagemagick.org/Usage/" target="889171836">Anthony Thyssen's examples of ImageMagick usage</a>:  a comprehensive tutorial of using ImageMagick from the command line.</dd>\r
+  <dd><a href="http://www.imagemagick.org/Usage/" target="1475425552">Anthony Thyssen's examples of ImageMagick usage</a>:  a comprehensive tutorial of using ImageMagick from the command line.</dd>\r
   <dd><a href="../www/color.html">Color names</a>: how to specify a color name, a hex color, or a numerical RGB, RGBA, HSL, HSLA, CMYK, or CMYKA color.</dd>\r
   <dd><a href="../www/resources.html">Resources</a>: ImageMagick depends on external resources including configuration files, loadable modules, fonts, and environment variables.</dd>\r
   <dd><a href="../www/architecture.html">Architecture</a>: get to know more about the software and algorithms behind ImageMagick.</dd>\r
 <dl>\r
   <dd><a href="../www/download.html">Download ImageMagick</a>: ImageMagick source and binary distributions are available from a variety of FTP and Web mirrors.</dd>\r
   <ul>\r
-    <dd><a href="http://www.imagemagick.org/download" target="999145295">Unix source</a>: Unix source distributions.</dd>\r
-    <dd><a href="http://www.imagemagick.org/download/windows" target="723098820">Windows source</a>: Windows source distributions.</dd>\r
-    <dd><a href="http://www.imagemagick.org/download/binaries" target="1445430945">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>\r
+    <dd><a href="http://www.imagemagick.org/download" target="1278670951">Unix source</a>: Unix source distributions.</dd>\r
+    <dd><a href="http://www.imagemagick.org/download/windows" target="1458336295">Windows source</a>: Windows source distributions.</dd>\r
+    <dd><a href="http://www.imagemagick.org/download/binaries" target="624367800">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>\r
     <dd><a href="../www/subversion.html">Subversion repository</a>: stable and development source releases.</dd>\r
-    <dd><a href="http://www.magickwand.org/" target="89977546">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>\r
-    <dd><a href="http://www.imagemagick.org/download/delegates" target="2083026310">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>\r
+    <dd><a href="http://www.magickwand.org/" target="84582885">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>\r
+    <dd><a href="http://www.imagemagick.org/download/delegates" target="717444054">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>\r
   </ul>\r
 </dl>\r
 \r
   <dd><a href="../www/command-line-processing.html">Command line processing</a>: the anatomy of the command line.</dd>\r
   <dd><a href="../www/command-line-options.html">Command line options</a>: annotated list of all options that can appear on the command-line.</dd>\r
   <dd><a href="../www/fx.html">Fx</a>: apply a mathematical expression to an image or image channels.</dd>\r
-  <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="102073700">Fred's ImageMagick Scripts</a>:  a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>\r
+  <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="296954923">Fred's ImageMagick Scripts</a>:  a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>\r
 </dl>\r
 \r
 <div style="margin: auto;">\r
 <dl>\r
   <dd><a href="../www/api.html">Program interfaces</a>: application programming interfaces.</dd>\r
   <ul>\r
-    <dd><a href="http://www.imagemagick.org/ChMagick" target="236449655">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="700463759">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>\r
-    <dd><a href="http://common-lisp.net/project/cl-magick/" target="51561262">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>\r
-    <dd><a href="https://gna.org/projects/g2f/" target="1016194645">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>\r
-    <dd><a href="http://www.imagemagick.org/Magick++" target="1507563536">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>\r
-    <dd><a href="http://pecl.html.net/package/imagick" target="764486091">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>\r
-    <dd><a href="http://www.yeo.id.au/jmagick/" target="1035596461">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>\r
+    <dd><a href="http://www.imagemagick.org/ChMagick" target="75994825">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="138449277">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>\r
+    <dd><a href="http://common-lisp.net/project/cl-magick/" target="965387274">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>\r
+    <dd><a href="https://gna.org/projects/g2f/" target="25283007">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>\r
+    <dd><a href="http://www.imagemagick.org/Magick++" target="1465400971">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>\r
+    <dd><a href="http://pecl.html.net/package/imagick" target="1949647065">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>\r
+    <dd><a href="http://www.yeo.id.au/jmagick/" target="1572842895">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>\r
     <dd><a href="../www/magick-core.html">MagickCore</a>: C API, recommended for wizard-level developers.</dd>\r
     <dd><a href="../www/magick-wand.html">MagickWand</a>: convert, compose, and edit images from the C language.</dd>\r
-    <dd><a href="http://www.magickwand.org/" target="692586301">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>\r
-    <dd><a href="http://code.google.com/p/nmagick" target="153260947">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>\r
-    <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="872479369">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>\r
+    <dd><a href="http://www.magickwand.org/" target="1572461883">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>\r
+    <dd><a href="http://code.google.com/p/nmagick" target="402102050">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>\r
+    <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="291711713">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>\r
     <dd><a href="../www/perl-magick.html">PerlMagick</a>: convert, compose, and edit images from the Perl language.</dd>\r
-    <dd><a href="http://www.imagemagick.org/download/python/" target="2063702174">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>\r
-    <dd><a href="http://rmagick.rubyforge.org/" target="1042519416">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>\r
-    <dd><a href="http://tclmagick.sourceforge.net/" target="2033730762">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>\r
+    <dd><a href="http://www.imagemagick.org/download/python/" target="1813078939">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>\r
+    <dd><a href="http://rmagick.rubyforge.org/" target="1358814093">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>\r
+    <dd><a href="http://tclmagick.sourceforge.net/" target="196024793">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>\r
   </ul>\r
 </dl>\r
 \r
 </div>\r
 \r
 <dl>\r
-  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1590595904/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="545821720">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>\r
-  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1904811868/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="555309702">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>\r
+  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1590595904/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="1128968254">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>\r
+  <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&amp;camp=1789&amp;tag=imagemagick-20&amp;creative=9325&amp;path=tg/detail/-/1904811868/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="2124992614">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>\r
   <dd><a href="http://www.imagemagick.org/discourse-server">Discourse server</a>: get help from fellow ImageMagick users and developers, post to these forums.</dd>\r
   <dd><a href="../www/mailing-list.html">Mailing list</a>: get help from fellow ImageMagick users and developers, post to these mailing lists.</dd>\r
   <dd><a href="http://www.imagemagick.org/script/contact.php">Contact the Wizards</a>: for issues outside the scope of the discourse server and mailing list, contact the wizards.</dd>\r
 </div>\r
 \r
 <dl>\r
-  <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="35542994">Report bugs and vulnerabilities</a>: our highest priority is to fix security defects and bug reports, usually within 48 hours of your report.  The bug discourse server requires that you register.  If you do not want to register, you can <a href="contact.html">contact the ImageMagick developers</a> with a convenient web form.</dd>\r
+  <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="230119486">Report bugs and vulnerabilities</a>: our highest priority is to fix security defects and bug reports, usually within 48 hours of your report.  The bug discourse server requires that you register.  If you do not want to register, you can <a href="contact.html">contact the ImageMagick developers</a> with a convenient web form.</dd>\r
   <dd><a href="../www/sponsors.html">Sponsor ImageMagick</a>: contribute bug fixes, enhancements, hardware, funds, etc. to ensure the ImageMagick project thrives.</dd>\r
   <dd><a href="../www/t-shirt.html">ImageMagick t-shirt</a>: donate $25 USD and we acknowledge your gift with a logoed t-shirt.</dd>\r
 </dl>\r
   <h2><a name="sandbox"></a>Technology Sandbox</h2>\r
 </div>\r
 <dl>\r
-  <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="224561458">Fast Fourier Transforms Toolkit</a></dd>\r
-  <dd><a href="http://www.fmwconcepts.com/misc_tests/FFT_tests/" target="1851953270">Tests Of FFT Processing</a></dd>\r
+  <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="372739043">Fast Fourier Transforms Toolkit</a></dd>\r
+  <dd><a href="http://www.fmwconcepts.com/misc_tests/FFT_tests/" target="1423117402">Tests Of FFT Processing</a></dd>\r
 </dl>\r
 \r
 \r
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 4103841c6ac1f2829e9e6c1a3996c20afcb56e59..b1883d666ec6cc091b6286dc57dacebd93a34082 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r
index 098da7d440dd6fa34c0d7bf3fc6ff42bf8a2cc26..34b9122189fa5598621e30341f21db1364f54150 100644 (file)
 
 <div class="sponsbox">
 <div  class="sponsor">
-   <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+   <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
 </div>
 <div  class="sponsor">
   <a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
     <span id="linkbar-center">\r
       <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> &bull;\r
       <a href="../www/mailing-list.html">Mailing Lists</a> &bull;\r
-    <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
+    <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>\r
     </span>\r
     <span id="linkbar-east">&nbsp;</span>\r
   </div>\r