diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html
index c82799d..d0d1d6e 100644
--- a/www/advanced-unix-installation.html
+++ b/www/advanced-unix-installation.html
@@ -515,40 +515,35 @@
<p>Perform these steps as an administrator or with the <tt>sudo</tt> command:</p>
- <div class="doc-section">
- <p>Install <a href="http://finkproject.org">Fink</a>. The default setup creates a <tt>/sw</tt> folder on your main hard drive. Make sure <tt>/sw/bin</tt> is in your path.</p>
- <p>Install the latest <a href="http://developer.apple.com/tools/download/">Xcode</a> from Apple.</p>
- <p>Create a symbolic link in <tt>/Developer/SDKs/MacOSX10.5.sdk/</tt> to <tt>/sw</tt>:</p>
- <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>cd /Developer/SDKs/MacOSX10.5.sdk</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>ln -s sw /sw</span></p> <p>Use Fink, or FinkCommander to install any delegate libraries you require, for example:</p>
- <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>fink install libjpeg</span></p> </div>
+<div class="doc-section">
+ <p>Install <a href="http://www.macports.org">MacPorts</a>. Download and install MacPorts and type the following commands:</p>
-<p>As a regular user or administrator:</p>
+<p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>sudo port -v install freetype +bytecode</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>sudo port -v install librsvg</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>sudo port -v install +graphviz +gs +wmf +jbig +jpeg2 +lcms</span></p>
+<p>This installs many of the delegate libraries ImageMagick will utilize such as JPEG and FreeType.</p>
+
+
+ <p>Install the latest <a href="http://developer.apple.com/tools/download/">Xcode</a> from Apple.</p>
+ <p>Use the <tt>port</tt> command to install any delegate libraries you require, for example:</p>
+ <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>sudo port install jpeg</span></p> </div>
+
+<p>Now lets build ImageMagick:</p>
<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> </span><span class='crtin'>tar xvfz ImageMagick-6.5.8-2.tar.gz</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>cd ImageMagick-6.5.8</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> </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> </span><span class='crtin'>export LDFLAGS="-Wl,-syslibroot,/Developer/SDKs/MacOSX10.5.sdk/,-L/sw/lib/"</span></p> <p>Configure ImageMagick:</p>
- <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>./configure --prefix=/sw --with-quantum-depth=16 \ <br/>
+ <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>tar xvfz ImageMagick-6.5.8-2.tar.gz</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>cd ImageMagick-6.5.8</span></p> <p>Configure ImageMagick:</p>
+ <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>./configure --prefix=/opt --with-quantum-depth=16 \ <br/>
--disable-dependency-tracking --with-x=yes \ <br/>
--x-includes=/usr/X11R6/include --x-libraries=/usr/X11R6/lib/ \ <br/>
--without-perl</span></p> <p>Build ImageMagick:</p>
<p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>make</span></p> <p>Install ImageMagick:</p>
- <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>sudo make install</span></p> <p>To test the ImageMagick GUI, start X11 and in a new shell and type:</p>
+ <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>sudo make install</span></p> <p>To verify your install, type</p>
+
+ <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>/opt/local/bin/identify -list font</span></p>
+ <p>to list all the fonts ImageMagick knows about.</p>
+ <p>To test the ImageMagick GUI, in a new shell, type:</p>
<p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>display -display :0</span></p></div>
-<p>An alterative method is to download and build ImageMagick with <a href="http://www.macports.org">MacPorts</a>. Download and install MacPorts and type the following commands:</p>
-
-<p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>sudo port -v install freetype +bytecode</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>sudo port -v install librsvg</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>sudo port -v install ImageMagick +graphviz +gs +wmf +jbig +jpeg2 +lcms</span></p>
-<p>This not only installs ImageMagick but includes many of the delegate libraries such as JPEG and FreeType.</p>
-
-<p>To verify your install, type</p>
-
-<p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>/opt/local/bin/identify -list type</span></p>
-<p>to list all the fonts ImageMagick knows about.</p>
-
</div>
<h2><a name="mingw"></a>MinGW-specific Build instructions</h2>
diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html
index 1dd796e..a36d386 100644
--- a/www/advanced-windows-installation.html
+++ b/www/advanced-windows-installation.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -487,7 +487,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/animate.html b/www/animate.html
index 1a0442e..1ddda7c 100644
--- a/www/animate.html
+++ b/www/animate.html
@@ -125,6 +125,9 @@
<div class="sponsbox">
<div class="sponsor">
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+</div>
+<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div class="sponsor">
diff --git a/www/api.html b/www/api.html
index ccdb45a..532b224 100644
--- a/www/api.html
+++ b/www/api.html
@@ -163,7 +163,7 @@
<h2><a name="ada"></a>Ada</h2>
</div>
-<p><a href="https://gna.org/projects/g2f/" target="1723982781">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="887853117">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>
@@ -175,7 +175,7 @@
<h2><a name="ch"></a>Ch</h2>
</div>
-<p><a href="http://www.imagemagick.org/ChMagick" target="2100483422">ChMagick</a> is a <a href="http://www.softintegration.com/" target="927049240">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="869304439">ChMagick</a> is a <a href="http://www.softintegration.com/" target="293411123">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>
@@ -187,31 +187,31 @@
<h2><a name="c++"></a>C++</h2>
</div>
-<p><a href="http://www.imagemagick.org/Magick++" target="216039059">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="240627972">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="675632201">source</a> if you want to correct, enhance, or expand the tutorial.</p>
+<p><a href="http://www.imagemagick.org/Magick++" target="324802321">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="90871972">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="1592574180">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="1319578575">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="1891876658">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>
+<p><a href="http://www.jmagick.org" target="839414125">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="1451705468">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="1618315691">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>
+<p><a href="http://forums.lavag.org/downloads-file90.html" target="643859766">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="401729582">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>
+<p><a href="http://common-lisp.net/project/cl-magick/" target="570451284">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="1381203969">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="972016285">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>
@@ -225,7 +225,7 @@
<h2><a name="pascal"></a>Pascal</h2>
</div>
-<p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="1977777664">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="1466228486">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>
@@ -237,50 +237,50 @@
<h2><a name="php"></a>PHP</h2>
</div>
-<p><a href="http://www.magickwand.org/" target="1102082315">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://www.magickwand.org/" target="957619328">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
-<p><a href="http://pecl.html.net/package/imagick" target="1927713595">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="1655819562">here</a>.</p>
+<p><a href="http://pecl.html.net/package/imagick" target="509183770">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="1493007259">here</a>.</p>
-<p><a href="http://www.francodacosta.com/phmagick" target="1397502">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="496310687">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.assembla.com/wiki/show/pythonmagickwand" target="446675710">PythonMagickWand</a> is an object-oriented Python interface to MagickWand based on ctypes.</p>
+<p><a href="http://www.assembla.com/wiki/show/pythonmagickwand" target="1071657925">PythonMagickWand</a> is an object-oriented Python interface to MagickWand based on ctypes.</p>
-<p><a href="http://www.imagemagick.org/download/python/" target="1683133255">PythonMagick</a> is an object-oriented Python interface to ImageMagick.</p>
+<p><a href="http://www.imagemagick.org/download/python/" target="818007626">PythonMagick</a> is an object-oriented Python interface to ImageMagick.</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="256059257">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="178745157">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="736611611">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="547265450">documentation</a>.</p>
+<p><a href="http://rmagick.rubyforge.org/" target="1695625895">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="1246804280">documentation</a>.</p>
-<p><a href="http://magickwand.rubyforge.org/" target="523603836">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="359545359">documentation</a>.</p>
+<p><a href="http://magickwand.rubyforge.org/" target="1514361922">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="962574713">documentation</a>.</p>
-<p><a href="http://rubyforge.org/projects/mini-magick" target="1419043785">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="1599759094">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="1465838340">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="1743945348">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="814066469">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://tclmagick.sourceforge.net/" target="26943608">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="793507228">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
+<p><a href="http://code.google.com/p/remotemagick/" target="1365963366">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
</div>
diff --git a/www/api/animate.html b/www/api/animate.html
index 93b22af..094b4d8 100644
--- a/www/api/animate.html
+++ b/www/api/animate.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -187,7 +187,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/annotate.html b/www/api/annotate.html
index 1666564..6a8dac4 100644
--- a/www/api/annotate.html
+++ b/www/api/annotate.html
@@ -326,7 +326,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/attribute.html b/www/api/attribute.html
index 83e887e..2bebf15 100644
--- a/www/api/attribute.html
+++ b/www/api/attribute.html
@@ -334,7 +334,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/blob.html b/www/api/blob.html
index 2f66dbf..dfad0ea 100644
--- a/www/api/blob.html
+++ b/www/api/blob.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -347,7 +347,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/cipher.html b/www/api/cipher.html
index b593fdd..9c7fa0c 100644
--- a/www/api/cipher.html
+++ b/www/api/cipher.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/api/compare.html b/www/api/compare.html
index 95a6551..e339fd5 100644
--- a/www/api/compare.html
+++ b/www/api/compare.html
@@ -329,7 +329,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/composite.html b/www/api/composite.html
index 6e775f0..910d307 100644
--- a/www/api/composite.html
+++ b/www/api/composite.html
@@ -236,7 +236,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/constitute.html b/www/api/constitute.html
index c135af6..e012ed3 100644
--- a/www/api/constitute.html
+++ b/www/api/constitute.html
@@ -124,9 +124,6 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
-</div>
-<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div class="sponsor">
@@ -337,7 +334,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/decorate.html b/www/api/decorate.html
index 8092e9df..b8be88f 100644
--- a/www/api/decorate.html
+++ b/www/api/decorate.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -240,7 +240,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/deprecate.html b/www/api/deprecate.html
index 165d62c..702f415 100644
--- a/www/api/deprecate.html
+++ b/www/api/deprecate.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -2601,7 +2601,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/display.html b/www/api/display.html
index 1f43042..10b98fd 100644
--- a/www/api/display.html
+++ b/www/api/display.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -240,7 +240,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/distort.html b/www/api/distort.html
index e29df63..c05201d 100644
--- a/www/api/distort.html
+++ b/www/api/distort.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -261,7 +261,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/drawing-wand.html b/www/api/drawing-wand.html
index b8515e2..898399f 100644
--- a/www/api/drawing-wand.html
+++ b/www/api/drawing-wand.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -3071,7 +3071,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/effect.html b/www/api/effect.html
index 60de184..0e214b7 100644
--- a/www/api/effect.html
+++ b/www/api/effect.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -155,7 +155,7 @@
<div class="main">
-<p class="navigation-index">[<a href="#AdaptiveBlurImage">AdaptiveBlurImage</a> • <a href="#AdaptiveSharpenImage">AdaptiveSharpenImage</a> • <a href="#BlurImage">BlurImage</a> • <a href="#DespeckleImage">DespeckleImage</a> • <a href="#EdgeImage">EdgeImage</a> • <a href="#EmbossImage">EmbossImage</a> • <a href="#GaussianBlurImage">GaussianBlurImage</a> • <a href="#MedianFilterImage">MedianFilterImage</a> • <a href="#MotionBlurImage">MotionBlurImage</a> • <a href="#PreviewImage">PreviewImage</a> • <a href="#RadialBlurImage">RadialBlurImage</a> • <a href="#ReduceNoiseImage">ReduceNoiseImage</a> • <a href="#SelectiveBlurImage">SelectiveBlurImage</a> • <a href="#ShadeImage">ShadeImage</a> • <a href="#SharpenImage">SharpenImage</a> • <a href="#SpreadImage">SpreadImage</a> • <a href="#UnsharpMaskImage">UnsharpMaskImage</a>]</p>
+<p class="navigation-index">[<a href="#AdaptiveBlurImage">AdaptiveBlurImage</a> • <a href="#AdaptiveSharpenImage">AdaptiveSharpenImage</a> • <a href="#BlurImage">BlurImage</a> • <a href="#ConvolveImage">ConvolveImage</a> • <a href="#DespeckleImage">DespeckleImage</a> • <a href="#EdgeImage">EdgeImage</a> • <a href="#EmbossImage">EmbossImage</a> • <a href="#GaussianBlurImage">GaussianBlurImage</a> • <a href="#MedianFilterImage">MedianFilterImage</a> • <a href="#MotionBlurImage">MotionBlurImage</a> • <a href="#PreviewImage">PreviewImage</a> • <a href="#RadialBlurImage">RadialBlurImage</a> • <a href="#ReduceNoiseImage">ReduceNoiseImage</a> • <a href="#SelectiveBlurImage">SelectiveBlurImage</a> • <a href="#ShadeImage">ShadeImage</a> • <a href="#SharpenImage">SharpenImage</a> • <a href="#SpreadImage">SpreadImage</a> • <a href="#UnsharpMaskImage">UnsharpMaskImage</a>]</p>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="AdaptiveBlurImage">AdaptiveBlurImage</a></h2>
@@ -261,6 +261,40 @@
</div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
+_8c.html" target="source" name="ConvolveImage">ConvolveImage</a></h2>
+<div class="doc-section">
+
+<p>ConvolveImage() applies a custom convolution kernel to the image.</p></ol>
+
+<p>The format of the ConvolveImage method is:</p>
+
+<pre class="code">
+ Image *ConvolveImage(const Image *image,const unsigned long order,
+ const double *kernel,ExceptionInfo *exception)
+ Image *ConvolveImageChannel(const Image *image,const ChannelType channel,
+ const unsigned long order,const double *kernel,
+ ExceptionInfo *exception)
+</pre>
+
+<p>A description of each parameter follows:</p></ol>
+
+<h5>image</h5>
+<ol><p>the image.</p></ol>
+
+<h5>channel</h5>
+<ol><p>the channel type.</p></ol>
+
+<h5>order</h5>
+<ol><p>the number of columns and rows in the filter kernel.</p></ol>
+
+<h5>kernel</h5>
+<ol><p>An array of double representing the convolution kernel.</p></ol>
+
+<h5>exception</h5>
+<ol><p>return any errors or warnings in this structure.</p></ol>
+
+ </div>
+<h2><a href="http://www.imagemagick.org/api/MagickCore/effect
_8c.html" target="source" name="DespeckleImage">DespeckleImage</a></h2>
<div class="doc-section">
diff --git a/www/api/enhance.html b/www/api/enhance.html
index d521870..15ff68b 100644
--- a/www/api/enhance.html
+++ b/www/api/enhance.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/api/fx.html b/www/api/fx.html
index 4a492a7..644b51b 100644
--- a/www/api/fx.html
+++ b/www/api/fx.html
@@ -155,7 +155,7 @@
<div class="main">
-<p class="navigation-index">[<a href="#AddNoiseImage">AddNoiseImage</a> • <a href="#BlueShiftImage">BlueShiftImage</a> • <a href="#CharcoalImage">CharcoalImage</a> • <a href="#ColorizeImage">ColorizeImage</a> • <a href="#ConvolveImage">ConvolveImage</a> • <a href="#EvaluateImage">EvaluateImage</a> • <a href="#FunctionImage">FunctionImage</a> • <a href="#FxImage">FxImage</a> • <a href="#ImplodeImage">ImplodeImage</a> • <a href="#The MorphImages">The MorphImages</a> • <a href="#PlasmaImage">PlasmaImage</a> • <a href="#PolaroidImage">PolaroidImage</a> • <a href="#RecolorImage">RecolorImage</a> • <a href="#MagickSepiaToneImage">MagickSepiaToneImage</a> • <a href="#ShadowImage">ShadowImage</a> • <a href="#SketchImage">SketchImage</a> • <a href="#SolarizeImage">SolarizeImage</a> • <a href="#SteganoImage">SteganoImage</a> • <a href="#StereoAnaglyphImage">StereoAnaglyphImage</a> • <a href="#SwirlImage">SwirlImage</a> • <a href="#TintImage">TintImage</a> • <a href="#VignetteImage">VignetteImage</a> • <a href="#WaveImage">WaveImage</a>]</p>
+<p class="navigation-index">[<a href="#AddNoiseImage">AddNoiseImage</a> • <a href="#BlueShiftImage">BlueShiftImage</a> • <a href="#CharcoalImage">CharcoalImage</a> • <a href="#ColorizeImage">ColorizeImage</a> • <a href="#EvaluateImage">EvaluateImage</a> • <a href="#FunctionImage">FunctionImage</a> • <a href="#FxImage">FxImage</a> • <a href="#ImplodeImage">ImplodeImage</a> • <a href="#The MorphImages">The MorphImages</a> • <a href="#PlasmaImage">PlasmaImage</a> • <a href="#PolaroidImage">PolaroidImage</a> • <a href="#RecolorImage">RecolorImage</a> • <a href="#MagickSepiaToneImage">MagickSepiaToneImage</a> • <a href="#ShadowImage">ShadowImage</a> • <a href="#SketchImage">SketchImage</a> • <a href="#SolarizeImage">SolarizeImage</a> • <a href="#SteganoImage">SteganoImage</a> • <a href="#StereoAnaglyphImage">StereoAnaglyphImage</a> • <a href="#SwirlImage">SwirlImage</a> • <a href="#TintImage">TintImage</a> • <a href="#VignetteImage">VignetteImage</a> • <a href="#WaveImage">WaveImage</a>]</p>
<h2><a href="http://www.imagemagick.org/api/MagickCore/fx
_8c.html" target="source" name="AddNoiseImage">AddNoiseImage</a></h2>
@@ -269,40 +269,6 @@
</div>
<h2><a href="http://www.imagemagick.org/api/MagickCore/fx
-_8c.html" target="source" name="ConvolveImage">ConvolveImage</a></h2>
-<div class="doc-section">
-
-<p>ConvolveImage() applies a custom convolution kernel to the image.</p></ol>
-
-<p>The format of the ConvolveImage method is:</p>
-
-<pre class="code">
- Image *ConvolveImage(const Image *image,const unsigned long order,
- const double *kernel,ExceptionInfo *exception)
- Image *ConvolveImageChannel(const Image *image,const ChannelType channel,
- const unsigned long order,const double *kernel,
- ExceptionInfo *exception)
-</pre>
-
-<p>A description of each parameter follows:</p></ol>
-
-<h5>image</h5>
-<ol><p>the image.</p></ol>
-
-<h5>channel</h5>
-<ol><p>the channel type.</p></ol>
-
-<h5>order</h5>
-<ol><p>the number of columns and rows in the filter kernel.</p></ol>
-
-<h5>kernel</h5>
-<ol><p>An array of double representing the convolution kernel.</p></ol>
-
-<h5>exception</h5>
-<ol><p>return any errors or warnings in this structure.</p></ol>
-
- </div>
-<h2><a href="http://www.imagemagick.org/api/MagickCore/fx
_8c.html" target="source" name="EvaluateImage">EvaluateImage</a></h2>
<div class="doc-section">
diff --git a/www/api/histogram.html b/www/api/histogram.html
index 0a9683f..3e5aeeb 100644
--- a/www/api/histogram.html
+++ b/www/api/histogram.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -312,7 +312,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/layer.html b/www/api/layer.html
index 35e35e9..a8a35ae 100644
--- a/www/api/layer.html
+++ b/www/api/layer.html
@@ -451,7 +451,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/list.html b/www/api/list.html
index a1d1fd2..f12dbb7 100644
--- a/www/api/list.html
+++ b/www/api/list.html
@@ -649,7 +649,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/magick-deprecate.html b/www/api/magick-deprecate.html
index 5fae9c9..b7c25d7 100644
--- a/www/api/magick-deprecate.html
+++ b/www/api/magick-deprecate.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/api/magick-image.html b/www/api/magick-image.html
index de8e1a7..1d21b68 100644
--- a/www/api/magick-image.html
+++ b/www/api/magick-image.html
@@ -6287,7 +6287,6 @@
<h5>file</h5>
<ol><p>the file descriptor.</p></ol>
-
</div>
<h2><a href="http://www.imagemagick.org/api/MagickWand/magick-image
_8c.html" target="source" name="MagickWriteImages">MagickWriteImages</a></h2>
@@ -6343,7 +6342,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/magick-property.html b/www/api/magick-property.html
index 14b5664..2441a60 100644
--- a/www/api/magick-property.html
+++ b/www/api/magick-property.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/api/magick.html b/www/api/magick.html
index 01505d4..d1aa002 100644
--- a/www/api/magick.html
+++ b/www/api/magick.html
@@ -213,7 +213,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/memory.html b/www/api/memory.html
index 7f3588b..cd4ad8f 100644
--- a/www/api/memory.html
+++ b/www/api/memory.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -408,7 +408,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/monitor.html b/www/api/monitor.html
index 9e90b76..62c0e6f 100644
--- a/www/api/monitor.html
+++ b/www/api/monitor.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/api/montage.html b/www/api/montage.html
index cac6321..e6b253a 100644
--- a/www/api/montage.html
+++ b/www/api/montage.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -257,7 +257,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/paint.html b/www/api/paint.html
index 9cfece0..3626d6e 100644
--- a/www/api/paint.html
+++ b/www/api/paint.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -330,7 +330,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/pixel-iterator.html b/www/api/pixel-iterator.html
index 77056ed..aff79a2 100644
--- a/www/api/pixel-iterator.html
+++ b/www/api/pixel-iterator.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -510,7 +510,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/pixel-view.html b/www/api/pixel-view.html
index c933794..9707c59 100644
--- a/www/api/pixel-view.html
+++ b/www/api/pixel-view.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/api/property.html b/www/api/property.html
index de494a2..fc7c023 100644
--- a/www/api/property.html
+++ b/www/api/property.html
@@ -124,6 +124,9 @@
<div class="sponsbox">
<div class="sponsor">
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+</div>
+<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div class="sponsor">
diff --git a/www/api/quantize.html b/www/api/quantize.html
index 854064d..44cfcb7 100644
--- a/www/api/quantize.html
+++ b/www/api/quantize.html
@@ -486,7 +486,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/registry.html b/www/api/registry.html
index 9f56f4d..7f62820 100644
--- a/www/api/registry.html
+++ b/www/api/registry.html
@@ -318,7 +318,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/resize.html b/www/api/resize.html
index 31a9c0a..490389b 100644
--- a/www/api/resize.html
+++ b/www/api/resize.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -456,7 +456,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/resource.html b/www/api/resource.html
index 9dddb3c..7936089 100644
--- a/www/api/resource.html
+++ b/www/api/resource.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -325,7 +325,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/segment.html b/www/api/segment.html
index 2797f2c..3ec7e20 100644
--- a/www/api/segment.html
+++ b/www/api/segment.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -197,7 +197,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/shear.html b/www/api/shear.html
index a16da69..191c1e3 100644
--- a/www/api/shear.html
+++ b/www/api/shear.html
@@ -269,7 +269,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/signature.html b/www/api/signature.html
index b8c6695..9923d77 100644
--- a/www/api/signature.html
+++ b/www/api/signature.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -183,7 +183,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/api/stream.html b/www/api/stream.html
index 1b5d42d..3e03c64 100644
--- a/www/api/stream.html
+++ b/www/api/stream.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/api/version.html b/www/api/version.html
index b7b954d..8fcdeea 100644
--- a/www/api/version.html
+++ b/www/api/version.html
@@ -290,7 +290,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/architecture.html b/www/architecture.html
index f3c6a64..9020426 100644
--- a/www/architecture.html
+++ b/www/architecture.html
@@ -1224,7 +1224,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/binary-releases.html b/www/binary-releases.html
index 39c929a..2aa50eb 100644
--- a/www/binary-releases.html
+++ b/www/binary-releases.html
@@ -377,7 +377,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/changelog.html b/www/changelog.html
index 2ac91f7..af9e599 100644
--- a/www/changelog.html
+++ b/www/changelog.html
@@ -155,7 +155,12 @@
<div class="main">
-<ul><dt>2009-11-28 6.5.8-2 Glenn Randers-Pehrson <glennrp@image...></dt>
+<ul><dt>2009-12-04 6.5.8-3 Glenn Randers-Pehrson <glennrp@image...></dt>
+ <li> Changed the one instance of PNG_COLOR_TYPE_RGBA to PNG_COLOR_TYPE_RGB_ALPHA in coders/png.c</li><br />
+<dt>2009-12-03 6.5.8-3 Cristy <quetzlzacatenango@image...></dt>
+ <li> It's interword-spacing, not interword_spacing (reference http://www.imagemagick.org/discourse-server/viewtopic.html?f=3&t=1515).</li>
+ <li> All JP2 depths (e.g. 4, 10, 12, 16) are now supported properly.</li><br />
+<dt>2009-11-28 6.5.8-2 Glenn Randers-Pehrson <glennrp@image...></dt>
<li> Changed the one remaining ping_info->trans to ping_info->trans_values in coders/png.c</li><br />
<dt>2009-11-26 6.5.8-1 Chris Madison <madisonblu@gmail...></dt>
<li> Eliminate bogus 'skip to sync byte' exception for PCD image format.</li>
diff --git a/www/color.html b/www/color.html
index dc40eba..e833f23 100644
--- a/www/color.html
+++ b/www/color.html
@@ -125,7 +125,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -5036,7 +5036,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/command-line-options.html b/www/command-line-options.html
index 434c454..188c3e1 100644
--- a/www/command-line-options.html
+++ b/www/command-line-options.html
@@ -128,7 +128,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -3859,7 +3859,7 @@
<p>Choose from: <kbd>area</kbd>, <kbd>disk</kbd>, <kbd>file</kbd>, <kbd>map</kbd>, <kbd>memory</kbd>, <kbd>threads</kbd>, or <kbd>time</kbd>.</p>
-<p>The value for <kbd>file</kbd> is in number of files. The other limits are in bytes. By default the limits are 768 files, 2gb of image area, 1.5gb memory, 8gb memory map, and 16tb of disk. These limits are adjusted relative to the available resources on your computer if this information is available. When any limit is reached, ImageMagick fails in some fashion but attempts to take compensating actions, if possible. For example, the following limits memory:</p>
+<p>The value for <kbd>file</kbd> is in number of files. The other limits are in bytes. By default the limits are 768 files, 2GB of image area, 1.5GiB memory, 8GiB memory map, and 18.45EB of disk. These limits are adjusted relative to the available resources on your computer if this information is available. When any limit is reached, ImageMagick fails in some fashion but attempts to take compensating actions, if possible. For example, the following limits memory:</p>
<p class="crtsnip">
-limit memory 32MiB -limit map 64MiB
@@ -3867,9 +3867,9 @@
<p>Use <a href="#list">-list resource</a> to list the current limits. For example, our system shows these limits:</p>
-<p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>identify -list resource</span><span class='crtout'><pre>File Area Memory Map Disk Thread Time
------------------------------------------------------------------------
- 768 3.8187GiB 2.864GiB 7.6375GiB 16EiB 2 unlimited</pre>
+<p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>identify -list resource</span><span class='crtout'><pre>File Area Memory Map Disk Thread Time
+------------------------------------------------------------------------------
+ 768 12.404GB 8.6642GiB 23.104GiB 18.446744EB 8 unlimited</pre>
</span></p>
<p>Requests for pixel storage to keep intermediate images are satisfied by one of three resource categories: in-memory pool, memory-mapped files pool, and disk pool (in that order) depending on the <a href="../www/command-line-options.html#limit">‑limit</a> settings and whether the system honors a resource request. If the total size of allocated pixel storage in the given pool reaches the corresponding limit, the request is passed to the next pool. Additionally, requests that exceed the <kbd>area</kbd> limit automagically are allocated on disk.</p>
@@ -5718,7 +5718,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/command-line-processing.html b/www/command-line-processing.html
index 3291f6e..fd0890a 100644
--- a/www/command-line-processing.html
+++ b/www/command-line-processing.html
@@ -637,7 +637,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/command-line-tools.html b/www/command-line-tools.html
index 92d2455..b1d1c9a 100644
--- a/www/command-line-tools.html
+++ b/www/command-line-tools.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -157,11 +157,11 @@
<p class="navigation-index">[<a href="#animate">animate</a> • <a href="#compare">compare</a> • <a href="#composite">composite</a> • <a href="#conjure">conjure</a> • <a href="#convert">convert</a> • <a href="#display">display</a> • <a href="#identify">identify</a> • <a href="#import">import</a> • <a href="#mogrify">mogrify</a> • <a href="#montage">montage</a> • <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="977962432">gimp</a> or <a href="http://www.adobe.com" target="23868151">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="28777999">gimp</a> or <a href="http://www.adobe.com" target="1369793273">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="631898921">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="712855760">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>
diff --git a/www/composite.html b/www/composite.html
index d0cd5df..3a2f0d0 100644
--- a/www/composite.html
+++ b/www/composite.html
@@ -604,7 +604,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/conjure.html b/www/conjure.html
index a964d18..c773b3c 100644
--- a/www/conjure.html
+++ b/www/conjure.html
@@ -310,7 +310,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/contact.html b/www/contact.html
index 24e5c96..3feed95 100644
--- a/www/contact.html
+++ b/www/contact.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -172,7 +172,7 @@
<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="707752285">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="621800062">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">
diff --git a/www/convert.html b/www/convert.html
index cb6c7d3..a482bce 100644
--- a/www/convert.html
+++ b/www/convert.html
@@ -1264,7 +1264,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/display.html b/www/display.html
index a882bb4..6ee0043 100644
--- a/www/display.html
+++ b/www/display.html
@@ -125,9 +125,6 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
-</div>
-<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div class="sponsor">
diff --git a/www/download.html b/www/download.html
index 5b4038c..dcfe711 100644
--- a/www/download.html
+++ b/www/download.html
@@ -219,7 +219,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/examples.html b/www/examples.html
index 4db3b7b..a66501e 100644
--- a/www/examples.html
+++ b/www/examples.html
@@ -124,7 +124,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -155,7 +155,7 @@
<div class="main">
-<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="2073794702">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="596966409">examples.pl</a>.</p><br />
<div class="viewport">
<img src="../images/examples.jpg" alt="[ImageMagick]" width="734" height="2972" border="0" name="titlebar-west" />
diff --git a/www/exception.html b/www/exception.html
index a076c08..dd0e34a 100644
--- a/www/exception.html
+++ b/www/exception.html
@@ -358,7 +358,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/formats.html b/www/formats.html
index c099280..2c3fb2a 100644
--- a/www/formats.html
+++ b/www/formats.html
@@ -125,7 +125,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -185,7 +185,7 @@
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
- <th style="width: 50%">Notes</th>
+ <th>Notes</th>
</tr>
<tr>
@@ -217,14 +217,21 @@
</tr>
<tr>
- <td valign="top"><a href="http://msdn.microsoft.com/library/sdkdoc/gdi/bitmaps_9c6r.htm">BMP</a></td>
+ <td valign="top"><a href="http://www.fileformat.info/format/bmp/egff.htm">BMP</a></td>
<td valign="top">RW</td>
<td valign="top">Microsoft Windows bitmap</td>
<td valign="top"> </td>
</tr>
<tr>
- <td valign="top">CGM</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/cals/egff.htm">CALS</a></td>
+ <td valign="top">R</td>
+ <td valign="top">Continuous Acquisition and Life-cycle Support Type 1 image</td>
+ <td valign="top">Specified in MIL-R-28002 and MIL-PRF-28002. Standard blueprint archive format as used by the US military to replace microfiche.</td>
+ </tr>
+
+ <tr>
+ <td valign="top"><a href="http://www.fileformat.info/format/cgm/egff.htm">CGM</a></td>
<td valign="top">R</td>
<td valign="top">Computer Graphics Metafile</td>
<td valign="top">Requires <a href="http://www.agocg.ac.uk/train/cgm/ralcgm.htm">ralcgm</a> to render CGM files.</td>
@@ -329,10 +336,10 @@
</tr>
<tr>
- <td valign="top">DPX</td>
+ <td valign="top"><a href="../www/motion-picture.html">DPX</a></td>
<td valign="top">RW</td>
<td valign="top">SMPTE Digital Moving Picture Exchange 2.0 (SMPTE 268M-2003)</td>
- <td valign="top">See <a href="../www/motion-picture.html">Motion Picture Support in ImageMagick</a> for details on this image format.</td>
+ <td valign="top"> </td>
</tr>
<tr>
@@ -434,7 +441,7 @@
</tr>
<tr>
- <td valign="top">GIF</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/gif/egff.htm">GIF</a></td>
<td valign="top">RW</td>
<td valign="top">CompuServe Graphics Interchange Format</td>
<td valign="top">8-bit RGB PseudoColor with up to 256 palette entires. Specify the format <kbd>GIF87</kbd> to write the older version 87a of the format. Use <a href="../www/command-line-options.html#transparent-color">-transparent-color</a> to specify the GIF transparent color (e.g. <kbd>-transparent-color wheat</kbd>).</td>
@@ -518,21 +525,21 @@
</tr>
<tr>
- <td valign="top">JP2</td>
+ <td valign="top"><a href="http://www.ece.uvic.ca/%7Emdadams/jasper/">JP2</a></td>
<td valign="top">RW</td>
<td valign="top">JPEG-2000 JP2 File Format Syntax</td>
- <td valign="top">Specify the encoding options with the <a href="../www/command-line-options.html#define">-define</a> option See <a href="../www/jp2.html">JP2 Encoding Options</a> for more details. Requires <a href="http://www.ece.uvic.ca/%7Emdadams/jasper/">jasper-1.900.1.zip</a></td>
+ <td valign="top">Specify the encoding options with the <a href="../www/command-line-options.html#define">-define</a> option See <a href="../www/jp2.html">JP2 Encoding Options</a> for more details.</td>
</tr>
<tr>
- <td valign="top">JPC</td>
+ <td valign="top"><a href="http://www.ece.uvic.ca/%7Emdadams/jasper/">JPC</a></td>
<td valign="top">RW</td>
<td valign="top">JPEG-2000 Code Stream Syntax</td>
- <td valign="top">Specify the encoding options with the <a href="../www/command-line-options.html#define">-define</a> option See <a href="../www/jp2.html">JP2 Encoding Options</a> for more details. Requires <a href="http://www.ece.uvic.ca/%7Emdadams/jasper/">jasper-1.900.1.zip</a></td>
+ <td valign="top">Specify the encoding options with the <a href="../www/command-line-options.html#define">-define</a> option See <a href="../www/jp2.html">JP2 Encoding Options</a> for more details.</td>
</tr>
<tr>
- <td valign="top">JPEG</td>
+ <td valign="top"><a href="http://www.jpeg.org/">JPEG</a></td>
<td valign="top">RW</td>
<td valign="top">Joint Photographic Experts Group JFIF format</td>
<td valign="top">Requires <a href="ftp://ftp.uu.net/graphics/jpeg/">jpegsrc.v6b.tar.gz</a>. You can optionally define the DCT method, for example to specify the float method, use <a href="../www/command-line-options.html#define">-define jpeg:dct-method=float</a>. By default we compute optimal Huffman coding tables. Specify <a href="../www/command-line-options.html#define">-define jpeg:optimize-coding=false</a> to use the default Huffman tables. Two other options include <a href="../www/command-line-options.html#define">-define jpeg:block-smoothing</a> and <a href="../www/command-line-options.html#define">-define jpeg:fancy-upsampling</a>. You can size the image with <kbd>jpeg:size</kbd>, for example <a href="../www/command-line-options.html#define">-define jpeg:size=128x128</a>. Finally, to restrict the maximum file size, use <kbd>jpeg:extent</kbd>, for example <a href="../www/command-line-options.html#define">-define jpeg:extent=400kb</a>.</td>
@@ -609,7 +616,7 @@
</tr>
<tr>
- <td valign="top">MTV</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/mtv/egff.htm">MTV</a></td>
<td valign="top">RW</td>
<td valign="top">MTV Raytracing image format</td>
<td valign="top"> </td>
@@ -665,7 +672,7 @@
</tr>
<tr>
- <td valign="top">PBM</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/pbm/egff.htm">PBM</a></td>
<td valign="top">RW</td>
<td valign="top">Portable bitmap format (black and white)</td>
<td valign="top"> </td>
@@ -693,7 +700,7 @@
</tr>
<tr>
- <td valign="top">PCX</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/pcx/egff.htm">PCX</a></td>
<td valign="top">RW</td>
<td valign="top">ZSoft IBM PC Paintbrush file</td>
<td valign="top"> </td>
@@ -945,7 +952,7 @@
</tr>
<tr>
- <td valign="top">TIFF</td>
+ <td valign="top"><a href="http://www.remotesensing.org/libtiff/">TIFF</a></td>
<td valign="top">RW</td>
<td valign="top">Tagged Image File Format</td>
<td valign="top">Also known as <kbd>TIF</kbd>. Requires <a href="ftp://ftp.remotesensing.org/pub/libtiff/">tiff-v3.6.1.tar.gz</a> or later. Use <a href="../www/command-line-options.html#define">-define</a> to specify the rows per strip (e.g. <kbd>-define tiff:rows-per-strip=8</kbd>). To define the tile geometry, use for example, <kbd>-define tiff:tile-geometry=128x128</kbd>. To specify a <em>signed</em> format, use <kbd>-define quantum:format=signed</kbd>. To specify a single-precision floating-point format, use <kbd>-define quantum:format=floating-point</kbd>. Set the depth to 64 for a double-precision floating-point format. Use <kbd>-define quantum:polarity=min-is-black</kbd> or <kbd>-define quantum:polarity=min-is-white</kbd> toggle the photometric interpretation for a bilevel image. Specify the extra samples as associated or unassociated alpha with, for example, <kbd>-define tiff:alpha=unassociated</kbd>. You can choose to read the EXIF profile with this option: <kbd>-define tiff:exif=true</kbd>.</td>
@@ -994,28 +1001,28 @@
</tr>
<tr>
- <td valign="top">VIFF</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/viff/egff.htm">VIFF</a></td>
<td valign="top">RW</td>
<td valign="top">Khoros Visualization Image File Format</td>
<td valign="top"> </td>
</tr>
<tr>
- <td valign="top"><a href="http://www.wapforum.org/">WBMP</a></td>
+ <td valign="top"><a href="http://www.openmobilealliance.org/Technical/wapindex.aspx">WBMP</a></td>
<td valign="top">RW</td>
<td valign="top">Wireless bitmap</td>
<td valign="top">Support for uncompressed monochrome only.</td>
</tr>
<tr>
- <td valign="top"><a href="http://www.wvware.com/libwmf.html">WMF</a></td>
+ <td valign="top"><a href="http://www.fileformat.info/format/wmf/egff.htm">WMF</a></td>
<td valign="top">R</td>
<td valign="top">Windows Metafile</td>
<td valign="top">Requires <a href="http://sourceforge.net/projects/wvware/">libwmf</a>. By default, renders WMF files using the dimensions specified by the metafile header. Use the -density option to adjust the output resolution, and thereby adjust the output size. The default output resolution is 72DPI so <kbd>-density 144</kbd> results in an image twice as large as the default. Use <kbd>-background color</kbd> to specify the WMF background color (default white) or <kbd>-texture filename</kbd> to specify a background texture image.</td>
</tr>
<tr>
- <td valign="top">WPG</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/wpg/egff.htm">WPG</a></td>
<td valign="top">R</td>
<td valign="top">Word Perfect Graphics File</td>
<td valign="top"> </td>
@@ -1029,7 +1036,7 @@
</tr>
<tr>
- <td valign="top">XBM</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/xbm/egff.htm">XBM</a></td>
<td valign="top">RW</td>
<td valign="top">X Windows system bitmap, black and white only</td>
<td valign="top">Used by the X Windows System to store monochrome icons.</td>
@@ -1043,14 +1050,14 @@
</tr>
<tr>
- <td valign="top"><a href="http://www.inria.fr/koala/lehors/xpm.html">XPM</a></td>
+ <td valign="top"><a href="http://www.fileformat.info/format/xpm/egff.htm">XPM</a></td>
<td valign="top">RW</td>
<td valign="top">X Windows system pixmap</td>
<td valign="top">Also known as <kbd>PM</kbd>. Used by the X Windows System to store color icons.</td>
</tr>
<tr>
- <td valign="top">XWD</td>
+ <td valign="top"><a href="http://www.fileformat.info/format/xwd/egff.htm">XWD</a></td>
<td valign="top">RW</td>
<td valign="top">X Windows system window dump</td>
<td valign="top">Used by the X Windows System to save/display screen dumps.</td>
@@ -1098,7 +1105,7 @@
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
- <th style="width: 50%">Notes</th>
+ <th>Notes</th>
</tr>
<tr>
@@ -1271,7 +1278,7 @@
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
- <th style="width: 50%">Notes</th>
+ <th>Notes</th>
</tr>
<tr>
@@ -1315,7 +1322,7 @@
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
- <th style="width: 50%">Notes</th>
+ <th>Notes</th>
</tr>
<tr>
@@ -1682,7 +1689,7 @@
<th>Tag</th>
<th>Mode</th>
<th>Description</th>
- <th style="width: 50%">Notes</th>
+ <th>Notes</th>
</tr>
<tr>
@@ -1746,7 +1753,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/history.html b/www/history.html
index e899303..170a9fc 100644
--- a/www/history.html
+++ b/www/history.html
@@ -167,7 +167,7 @@
<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>
-<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="313447940">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>
+<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="1471510258">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>
<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>
@@ -180,7 +180,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/index.html b/www/index.html
index 849d176..a55df65 100644
--- a/www/index.html
+++ b/www/index.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -193,7 +193,7 @@
<li><a href="../www/high-dynamic-range.html">High dynamic-range images</a>: accurately represent the wide range of intensity levels found in real scenes ranging from the brightest direct sunlight to the deepest darkest shadows</li>
<li><a href="../www/cipher.html">Encipher or decipher an image</a>: convert ordinary images into unintelligible gibberish and back again</li>
<li>Virtual pixel support: convenient access to pixels outside the image region</li>
- <li>Large image support: read, process, or write mebi- and gibi-pixel image sizes</li>
+ <li>Large image support: read, process, or write mega-, giga-, or tera-pixel image sizes</li>
<li><a href="../www/architecture.html#threads">Threads of execution support</a>: ImageMagick is thread safe and most internal algorithms are OpenMP-enabled to take advantage of speed-ups offered by the dual and quad-core processor technologies</li>
<li>Heterogeneous distributed processing: certain algorithms get a speed boost by executing in concert across heterogeneous platforms consisting of CPUs, GPUs, and other processors (<em>in development</em>).</li>
</ul>
@@ -221,7 +221,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/jp2.html b/www/jp2.html
index 530433d..a81b929 100644
--- a/www/jp2.html
+++ b/www/jp2.html
@@ -125,7 +125,7 @@
<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><!-- 20101101000200 -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -266,7 +266,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/links.html b/www/links.html
index ba2c34f..f540943 100644
--- a/www/links.html
+++ b/www/links.html
@@ -163,23 +163,23 @@
<h2><a name="command-line"></a>Command-line Tutorials</h2>
</div>
<ul>
- <dt><a href="http://www.imagemagick.org/Usage/" target="1172235278">Examples of ImageMagick Usage</a></dt>
- <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="1227858754">Advanced image editing from the command line with ImageMagick</a></dt>
- <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="432296028">Best Open Source Software for the Macintosh</a></dt>
- <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="1269055897">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="985439087">Convert Images with Open Source ImageMagick</a></dt>
- <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="556964163">Enchanting Pictures with ImageMagick</a></dt>
- <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1277429161">Graphics from the Command Line</a></dt>
- <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="559438700">Image creation, conversion and manipulation with ImageMagick</a></dt>
- <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="1065242928">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="407029608">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="224666205">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="2109214335">ImageMagick command line examples - part 2</a></dt>
- <dt><a href="http://www.rabuser.info/jmagick.html" target="1375901214">ImageMagick & Java</a></dt>
- <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="620722414">ImageMagick, Part One</a></dt>
- <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="1312405965">ImageMagick, Part Two</a></dt>
- <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="1979540924">More Graphics from the Command Line</a></dt>
- <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="1947451132">Ubuntu Firefox Themes</a></dt>
+ <dt><a href="http://www.imagemagick.org/Usage/" target="366213510">Examples of ImageMagick Usage</a></dt>
+ <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="535628758">Advanced image editing from the command line with ImageMagick</a></dt>
+ <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="1954679436">Best Open Source Software for the Macintosh</a></dt>
+ <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="1235517950">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="829039881">Convert Images with Open Source ImageMagick</a></dt>
+ <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="131998109">Enchanting Pictures with ImageMagick</a></dt>
+ <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1326389922">Graphics from the Command Line</a></dt>
+ <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="274130413">Image creation, conversion and manipulation with ImageMagick</a></dt>
+ <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="971412234">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="630611743">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="917990180">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="1541863518">ImageMagick command line examples - part 2</a></dt>
+ <dt><a href="http://www.rabuser.info/jmagick.html" target="1602628028">ImageMagick & Java</a></dt>
+ <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="236735018">ImageMagick, Part One</a></dt>
+ <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="351999199">ImageMagick, Part Two</a></dt>
+ <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="2111811799">More Graphics from the Command Line</a></dt>
+ <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="1729742277">Ubuntu Firefox Themes</a></dt>
</ul>
<div style="margin: auto;">
@@ -187,18 +187,18 @@
</div>
<ul>
- <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="810615072">Create Mosaic Images with Perl and ImageMagick</a></dt>
- <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="160727938">Convert images for printing with MagickWand for PHP</a></dt>
- <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="1972663153">Create Dynamic Images with ImageMagick</a></dt>
- <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="1154209971">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="757948882">How to compile ImageMagick for PHP by hand</a></dt>
- <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="830182159">MagickWand Examples in C</a></dt>
- <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="1859865586">PHP Extensions: MagickWand for PHP</a></dt>
- <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="1538204288">PHP frontend to ImageMagick</a></dt>
- <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="2045099312">PHP ImageMagick MagickWand Examples</a></dt>
- <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="779269088">RVG - Ruby Vector Graphics</a></dt>
- <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="258621771">Security Images with PHP and ImageMagick</a></dt>
- <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1760647683">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="848309886">Create Mosaic Images with Perl and ImageMagick</a></dt>
+ <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="1035986076">Convert images for printing with MagickWand for PHP</a></dt>
+ <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="400266255">Create Dynamic Images with ImageMagick</a></dt>
+ <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="1027055043">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="584128323">How to compile ImageMagick for PHP by hand</a></dt>
+ <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="1647070536">MagickWand Examples in C</a></dt>
+ <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="393933317">PHP Extensions: MagickWand for PHP</a></dt>
+ <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="1546703036">PHP frontend to ImageMagick</a></dt>
+ <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="1099345982">PHP ImageMagick MagickWand Examples</a></dt>
+ <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="2137878666">RVG - Ruby Vector Graphics</a></dt>
+ <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1573646645">Security Images with PHP and ImageMagick</a></dt>
+ <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="317825700">Simple Uses of PHP and ImageMagick</a></dt>
</ul>
<div style="margin: auto;">
@@ -206,10 +206,10 @@
</div>
<ul>
- <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="1861016506">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="952249235">ImageMagick on iPhone</a></dt>
- <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="785399313">ImageMagick on iPhone - Xcode</a></dt>
- <dt><a href="http://www.digitalsanctum.com/?s=ImageMagick" target="941391612">Installing ImageMagick from Source on Ubuntu</a></dt>
+ <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="1983793148">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="492989315">ImageMagick on iPhone</a></dt>
+ <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="684039211">ImageMagick on iPhone - Xcode</a></dt>
+ <dt><a href="http://www.digitalsanctum.com/?s=ImageMagick" target="371938258">Installing ImageMagick from Source on Ubuntu</a></dt>
</ul>
<div style="margin: auto;">
@@ -217,24 +217,24 @@
</div>
<ul>
- <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="1384545264">Down-sampling Methods</a></dt>
+ <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="300185103">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="2054455210">Book review: ImageMagick Tricks</a></dt>
- <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1926830700">The Definitive Guide To ImageMagick</a></dt>
+ <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="1919557161">Book review: ImageMagick Tricks</a></dt>
+ <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1200978140">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="1941509427">ImageMagick Users List</a></dt>
- <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="1184400724">ImageMagick Developers List</a></dt>
- <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="338785752">ImageMagick Bugs List</a></dt>
+ <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="432183212">ImageMagick Users List</a></dt>
+ <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="1098463435">ImageMagick Developers List</a></dt>
+ <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="1475108553">ImageMagick Bugs List</a></dt>
</ul>
<div style="margin: auto;">
@@ -242,13 +242,13 @@
</div>
<dl>
<dt>Denmark</dt>
- <dd><a href="http://imagemagick.europnews.de" target="859268707">http://imagemagick.europnews.de</a></dd><br />
+ <dd><a href="http://imagemagick.europnews.de" target="1403595447">http://imagemagick.europnews.de</a></dd><br />
<dt>Germany</dt>
- <dd><a href="http://imagemagick.linux-mirror.org" target="1591430332">http://imagemagick.linux-mirror.org</a></dd><br />
+ <dd><a href="http://imagemagick.linux-mirror.org" target="1729075178">http://imagemagick.linux-mirror.org</a></dd><br />
<dt>Ireland</dt>
- <dd><a href="http://imagemagick.oss-mirror.org" target="563451957">http://imagemagick.oss-mirror.org</a></dd><br />
+ <dd><a href="http://imagemagick.oss-mirror.org" target="245615085">http://imagemagick.oss-mirror.org</a></dd><br />
<dt>United States</dt>
- <dd><a href="http://www.imagemagick.org" target="820999394">http://www.imagemagick.org</a></dd>
+ <dd><a href="http://www.imagemagick.org" target="797975317">http://www.imagemagick.org</a></dd>
</dl>
<div style="margin: auto;">
@@ -256,16 +256,16 @@
</div>
<ul>
- <dt><a href="http://gmic.sourceforge.net/" target="819847898">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="1184174371">Image Commander</a>: bulk picture processing with a GUI</dt>
+ <dt><a href="http://gmic.sourceforge.net/" target="1184219559">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="482350104">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="2133405360">Wizard's Toolkit</a></dt>
- <dt><a href="http://www.multipole.org" target="651905175">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
+ <dt><a href="http://www.wizards-toolkit.org" target="1149974516">Wizard's Toolkit</a></dt>
+ <dt><a href="http://www.multipole.org" target="1148547710">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
</ul>
diff --git a/www/magick-core.html b/www/magick-core.html
index 648cae0..5253ba6 100644
--- a/www/magick-core.html
+++ b/www/magick-core.html
@@ -125,7 +125,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -288,7 +288,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/magick-wand.html b/www/magick-wand.html
index 5a76a0a..10d721d 100644
--- a/www/magick-wand.html
+++ b/www/magick-wand.html
@@ -125,7 +125,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/mailing-list.html b/www/mailing-list.html
index ce04672..db2d0ca 100644
--- a/www/mailing-list.html
+++ b/www/mailing-list.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
@@ -158,25 +158,25 @@
<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="662495113">Magick Users</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target="1192891144">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="1593820522">Magick Developers</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target="1027356851">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="494574647">Magick Bugs</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target="583797055">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="688126870">Magick Announce</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target="1534088825">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>
@@ -188,7 +188,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/miff.html b/www/miff.html
index 196df7d..f654696 100644
--- a/www/miff.html
+++ b/www/miff.html
@@ -312,7 +312,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/mirrors.html b/www/mirrors.html
index 4faa3bb..75f454d 100644
--- a/www/mirrors.html
+++ b/www/mirrors.html
@@ -124,6 +124,9 @@
<div class="sponsbox">
<div class="sponsor">
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+</div>
+<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div class="sponsor">
@@ -155,9 +158,9 @@
<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="2052367745">http://imagemagick.europnews.de/</a></dd><br />
+ <dd><a href="http://imagemagick.europnews.de/" target="2055362997">http://imagemagick.europnews.de/</a></dd><br />
<dt>Unites States</dt>
- <dd><a href="http://www.imagemagick.org/" target="179492783">http://www.imagemagick.org/</a></dd>
+ <dd><a href="http://www.imagemagick.org/" target="483202787">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>
diff --git a/www/mogrify.html b/www/mogrify.html
index 380a197..66aa3d0 100644
--- a/www/mogrify.html
+++ b/www/mogrify.html
@@ -125,7 +125,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/montage.html b/www/montage.html
index aad3eeb..63cec13 100644
--- a/www/montage.html
+++ b/www/montage.html
@@ -125,6 +125,9 @@
<div class="sponsbox">
<div class="sponsor">
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
+</div>
+<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
</div>
<div class="sponsor">
@@ -699,7 +702,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/perl-magick.html b/www/perl-magick.html
index 8e5639f..66ef5bd 100644
--- a/www/perl-magick.html
+++ b/www/perl-magick.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de-->
diff --git a/www/quantize.html b/www/quantize.html
index 5f06edf..72c7a71 100644
--- a/www/quantize.html
+++ b/www/quantize.html
@@ -289,7 +289,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/resources.html b/www/resources.html
index 0d5ee55..817687b 100644
--- a/www/resources.html
+++ b/www/resources.html
@@ -409,7 +409,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/sitemap.html b/www/sitemap.html
index 44e9cbd..7bfc0fd 100644
--- a/www/sitemap.html
+++ b/www/sitemap.html
@@ -166,7 +166,7 @@
<dl>
<dd><a href="../www/index.html">Introduction</a>: convert, edit, and compose images from the command-line or program interface.</dd>
<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>
- <dd><a href="http://www.imagemagick.org/Usage/" target="1203870395">Anthony Thyssen's examples of ImageMagick usage</a>: a comprehensive tutorial of using ImageMagick from the command line.</dd>
+ <dd><a href="http://www.imagemagick.org/Usage/" target="855139984">Anthony Thyssen's examples of ImageMagick usage</a>: a comprehensive tutorial of using ImageMagick from the command line.</dd>
<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>
<dd><a href="../www/resources.html">Resources</a>: ImageMagick depends on external resources including configuration files, loadable modules, fonts, and environment variables.</dd>
<dd><a href="../www/architecture.html">Architecture</a>: get to know more about the software and algorithms behind ImageMagick.</dd>
@@ -180,12 +180,12 @@
<dl>
<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>
<ul>
- <dd><a href="http://www.imagemagick.org/download" target="520645856">Unix source</a>: Unix source distributions.</dd>
- <dd><a href="http://www.imagemagick.org/download/windows" target="1022995244">Windows source</a>: Windows source distributions.</dd>
- <dd><a href="http://www.imagemagick.org/download/binaries" target="1147310946">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>
+ <dd><a href="http://www.imagemagick.org/download" target="1715620682">Unix source</a>: Unix source distributions.</dd>
+ <dd><a href="http://www.imagemagick.org/download/windows" target="459366002">Windows source</a>: Windows source distributions.</dd>
+ <dd><a href="http://www.imagemagick.org/download/binaries" target="1913964572">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>
<dd><a href="../www/subversion.html">Subversion repository</a>: stable and development source releases.</dd>
- <dd><a href="http://www.magickwand.org/" target="758839184">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
- <dd><a href="http://www.imagemagick.org/download/delegates" target="1717938956">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>
+ <dd><a href="http://www.magickwand.org/" target="170036212">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
+ <dd><a href="http://www.imagemagick.org/download/delegates" target="1589663879">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>
</ul>
</dl>
@@ -224,7 +224,7 @@
<dd><a href="../www/command-line-processing.html">Command line processing</a>: the anatomy of the command line.</dd>
<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>
<dd><a href="../www/fx.html">Fx</a>: apply a mathematical expression to an image or image channels.</dd>
- <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="818568955">Fred's ImageMagick Scripts</a>: a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>
+ <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="1305102426">Fred's ImageMagick Scripts</a>: a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>
</dl>
<div style="margin: auto;">
@@ -234,21 +234,21 @@
<dl>
<dd><a href="../www/api.html">Program interfaces</a>: application programming interfaces.</dd>
<ul>
- <dd><a href="http://www.imagemagick.org/ChMagick" target="1066998129">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="624678108">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>
- <dd><a href="http://common-lisp.net/project/cl-magick/" target="603187530">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>
- <dd><a href="https://gna.org/projects/g2f/" target="1175170038">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>
- <dd><a href="http://www.imagemagick.org/Magick++" target="767151383">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>
- <dd><a href="http://pecl.html.net/package/imagick" target="1350059684">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>
- <dd><a href="http://www.yeo.id.au/jmagick/" target="1229827119">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>
+ <dd><a href="http://www.imagemagick.org/ChMagick" target="1261982742">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="955678399">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>
+ <dd><a href="http://common-lisp.net/project/cl-magick/" target="101974301">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>
+ <dd><a href="https://gna.org/projects/g2f/" target="1909537087">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>
+ <dd><a href="http://www.imagemagick.org/Magick++" target="590814369">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>
+ <dd><a href="http://pecl.html.net/package/imagick" target="639439579">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>
+ <dd><a href="http://www.yeo.id.au/jmagick/" target="864715642">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>
<dd><a href="../www/magick-core.html">MagickCore</a>: C API, recommended for wizard-level developers.</dd>
<dd><a href="../www/magick-wand.html">MagickWand</a>: convert, compose, and edit images from the C language.</dd>
- <dd><a href="http://www.magickwand.org/" target="1315815792">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
- <dd><a href="http://code.google.com/p/nmagick" target="696614029">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>
- <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="1130983159">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>
+ <dd><a href="http://www.magickwand.org/" target="1375735209">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
+ <dd><a href="http://code.google.com/p/nmagick" target="542124737">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>
+ <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="1797563533">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>
<dd><a href="../www/perl-magick.html">PerlMagick</a>: convert, compose, and edit images from the Perl language.</dd>
- <dd><a href="http://www.imagemagick.org/download/python/" target="194933472">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>
- <dd><a href="http://rmagick.rubyforge.org/" target="1406901274">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>
- <dd><a href="http://tclmagick.sourceforge.net/" target="1778089326">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>
+ <dd><a href="http://www.imagemagick.org/download/python/" target="1132425984">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>
+ <dd><a href="http://rmagick.rubyforge.org/" target="2071762302">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>
+ <dd><a href="http://tclmagick.sourceforge.net/" target="388184151">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>
</ul>
</dl>
@@ -266,8 +266,8 @@
</div>
<dl>
- <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&camp=1789&tag=imagemagick-20&creative=9325&path=tg/detail/-/1590595904/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="596280549">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>
- <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&camp=1789&tag=imagemagick-20&creative=9325&path=tg/detail/-/1904811868/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="920387866">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>
+ <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&camp=1789&tag=imagemagick-20&creative=9325&path=tg/detail/-/1590595904/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="1145218104">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>
+ <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&camp=1789&tag=imagemagick-20&creative=9325&path=tg/detail/-/1904811868/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="426404078">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>
<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>
<dd><a href="../www/mailing-list.html">Mailing list</a>: get help from fellow ImageMagick users and developers, post to these mailing lists.</dd>
<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>
@@ -278,7 +278,7 @@
</div>
<dl>
- <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="933936741">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>
+ <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="162908929">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>
<dd><a href="../www/sponsors.html">Sponsor ImageMagick</a>: contribute bug fixes, enhancements, hardware, funds, etc. to ensure the ImageMagick project thrives.</dd>
<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>
</dl>
@@ -302,9 +302,9 @@
<h2><a name="sandbox"></a>Technology Sandbox</h2>
</div>
<dl>
- <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="1952955775">Fast Fourier Transforms Toolkit</a></dd>
- <dd><a href="http://www.fmwconcepts.com/imagemagick/linkcounter.html?dir=fourier_transforms/&linkname=fourier.html" target="67235898">Fourier Transform Processing With ImageMagick</a></dd>
- <dd><a href="http://www.imagemagick.org/Usage/fourier/" target="786961061">ImageMagick v6 Examples -- Fourier Transforms</a></dd>
+ <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="944502077">Fast Fourier Transforms Toolkit</a></dd>
+ <dd><a href="http://www.fmwconcepts.com/imagemagick/linkcounter.html?dir=fourier_transforms/&linkname=fourier.html" target="882579438">Fourier Transform Processing With ImageMagick</a></dd>
+ <dd><a href="http://www.imagemagick.org/Usage/fourier/" target="742430798">ImageMagick v6 Examples -- Fourier Transforms</a></dd>
</dl>
@@ -315,7 +315,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/sponsors.html b/www/sponsors.html
index 6a202da..6a5c43d 100644
--- a/www/sponsors.html
+++ b/www/sponsors.html
@@ -243,7 +243,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/subversion.html b/www/subversion.html
index 8dc190e..ad233f7 100644
--- a/www/subversion.html
+++ b/www/subversion.html
@@ -180,7 +180,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>
diff --git a/www/t-shirt.html b/www/t-shirt.html
index 3ae9284..4839315 100644
--- a/www/t-shirt.html
+++ b/www/t-shirt.html
@@ -195,7 +195,7 @@
<span id="linkbar-center">
<a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> •
<a href="../www/mailing-list.html">Mailing Lists</a> •
- <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
+ <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>
</span>
<span id="linkbar-east"> </span>
</div>