diff --git a/ImageMagick.spec b/ImageMagick.spec
index 49c19a3..584bce6 100644
--- a/ImageMagick.spec
+++ b/ImageMagick.spec
@@ -1,5 +1,5 @@
%define VERSION 6.5.6
-%define Patchlevel 9
+%define Patchlevel 10
Name: ImageMagick
Version: %{VERSION}
diff --git a/config/configure.xml b/config/configure.xml
index 31d9296..f7a0333 100644
--- a/config/configure.xml
+++ b/config/configure.xml
@@ -8,7 +8,7 @@
<configuremap>
<configure name="NAME" value="ImageMagick"/>
<configure name="LIB_VERSION" value="0x656"/>
- <configure name="LIB_VERSION_NUMBER" value="6,5,6,9"/>
+ <configure name="LIB_VERSION_NUMBER" value="6,5,6,10"/>
<configure name="RELEASE_DATE" value="2009-10-05"/>
<configure name="CONFIGURE" value="./configure "/>
<configure name="PREFIX" value="/usr/local"/>
diff --git a/index.html b/index.html
index 898c833..7093cbe 100644
--- a/index.html
+++ b/index.html
@@ -217,7 +217,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/libtool b/libtool
index fa2e69b..5560e40 100755
--- a/libtool
+++ b/libtool
@@ -1,7 +1,7 @@
#! /bin/sh
# libtool - Provide generalized library-building support services.
-# Generated automatically by config.status (ImageMagick) 6.5.6-9
+# Generated automatically by config.status (ImageMagick) 6.5.6-10
# Libtool was configured on host magick.imagemagick.org:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
#
diff --git a/magick/string.c b/magick/string.c
index b5a3ff6..310f61d 100644
--- a/magick/string.c
+++ b/magick/string.c
@@ -1144,7 +1144,7 @@
(void) localtime_r(&time,&local_time);
#else
{
- struct tm
+ struct tm
*my_time;
my_time=localtime(&time);
@@ -1156,7 +1156,7 @@
(void) gmtime_r(&time,&gm_time);
#else
{
- struct tm
+ struct tm
*my_time;
my_time=gmtime(&time);
@@ -2373,7 +2373,9 @@
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%
% SubstituteString() performs string substitution on a buffer, replacing the
-% buffer with the substituted version. Buffer must be allocate from the heap.
+% buffer with the substituted version. Buffer must be allocated from the heap.
+% If the string is matched and status, MagickTrue is returned otherwise
+% MagickFalse.
%
% The format of the SubstituteString method is:
%
@@ -2382,113 +2384,68 @@
%
% A description of each parameter follows:
%
-% o buffer: the buffer to perform replacements on. Replaced with new
+% o buffer: the buffer to perform replacements on; replaced with new
% allocation if a replacement is made.
%
-% o search: String to search for.
+% o search: search for this string.
%
-% o replace: Replacement string.
+% o replace: replace any matches with this string.
%
*/
MagickExport MagickBooleanType SubstituteString(char **buffer,
const char *search,const char *replace)
{
- char
- *result;
+ MagickBooleanType
+ status;
- const char
- *match,
- *source;
+ register char
+ *p;
- MagickOffsetType
- destination_offset;
+ register size_t
+ i;
size_t
- copy_length,
- length,
- replace_length,
- result_length,
- search_length;
+ extent,
+ replace_extent,
+ search_extent;
- (void) LogMagickEvent(TraceEvent,GetMagickModule(),"...");
- assert(buffer != (char **) NULL);
- assert(*buffer != (char *) NULL);
- assert(search != (const char *) NULL);
- assert(replace != (const char *) NULL);
- if (strcmp(search,replace) == 0)
- return(MagickTrue);
- source=(*buffer);
- match=strstr(source,search);
- if (match == (char *) NULL)
- return(MagickFalse);
- result=(char *) NULL;
- length=strlen(source);
- if (~length >= MaxTextExtent)
- result=(char *) AcquireQuantumMemory(length+MaxTextExtent,sizeof(*result));
- if (result == (char *) NULL)
- ThrowFatalException(ResourceLimitFatalError,"UnableToAcquireString");
- *result='\0';
- result_length=0;
- destination_offset=0;
- replace_length=strlen(replace);
- for (search_length=strlen(search); match != (char *) NULL; )
+ status=MagickFalse;
+ search_extent=0,
+ replace_extent=0;
+ p=(*buffer);
+ for (i=0; *(p+i) != '\0'; i++)
{
+ if (*(p+i) != *search)
+ continue;
+ if (strcmp(p+i,search) != 0)
+ continue;
/*
- Copy portion before match.
+ We found a match.
*/
- copy_length=(size_t) (match-source);
- if (copy_length != 0)
+ if (search_extent == 0)
+ search_extent=strlen(search);
+ if (replace_extent == 0)
+ replace_extent=strlen(replace);
+ if (replace_extent > search_extent)
{
- result_length+=copy_length;
- if ((result_length+MaxTextExtent) >= length)
- {
- length+=copy_length;
- result=(char *) ResizeQuantumMemory(result,length+MaxTextExtent,
- sizeof(*result));
- if (result == (char *) NULL)
- ThrowFatalException(ResourceLimitFatalError,
- "UnableToAcquireString");
- }
- (void) CopyMagickString(result+destination_offset,source,copy_length+1);
- destination_offset+=copy_length;
- }
- /*
- Copy replacement.
- */
- result_length+=replace_length;
- if ((result_length+MaxTextExtent) >= length)
- {
- length+=replace_length;
- result=(char *) ResizeQuantumMemory(result,length+MaxTextExtent,
- sizeof(*result));
- if (result == (char *) NULL)
+ /*
+ Make room for the replacement string.
+ */
+ extent=strlen(p)+replace_extent-search_extent;
+ p=(char *) ResizeQuantumMemory(p,extent+MaxTextExtent,sizeof(*p));
+ *buffer=p;
+ if (p == (char *) NULL)
ThrowFatalException(ResourceLimitFatalError,"UnableToAcquireString");
}
- (void) ConcatenateMagickString(result+destination_offset,replace,length);
- destination_offset+=replace_length;
/*
- Find next match.
+ Replace string.
*/
- source=match;
- source+=search_length;
- match=strstr(source,search);
+ status=MagickTrue;
+ if (search_extent != replace_extent)
+ (void) CopyMagickMemory(p+replace_extent+i,p+search_extent+i,
+ strlen(p+search_extent+i)+1);
+ (void) CopyMagickMemory(p+i,replace,replace_extent);
+ i+=replace_extent;
}
- /*
- Copy remaining string.
- */
- copy_length=strlen(source);
- result_length+=copy_length;
- if ((result_length+MaxTextExtent) >= length)
- {
- length+=copy_length;
- result=(char *) ResizeQuantumMemory(result,length+MaxTextExtent,
- sizeof(*result));
- if (result == (char *) NULL)
- ThrowFatalException(ResourceLimitFatalError,"UnableToAcquireString");
- }
- (void) ConcatenateMagickString(result+destination_offset,source,(size_t)
- (length+MaxTextExtent-destination_offset));
- (void) RelinquishMagickMemory(*buffer);
- *buffer=result;
- return(MagickTrue);
+ return(status);
}
diff --git a/magick/version.h b/magick/version.h
index b25e268..00056ce 100644
--- a/magick/version.h
+++ b/magick/version.h
@@ -30,9 +30,9 @@
#define MagickLibVersion 0x656
#define MagickLibVersionText "6.5.6"
#define MagickLibVersionNumber 2,0,0
-#define MagickLibSubversion "-9"
+#define MagickLibSubversion "-10"
#define MagickReleaseDate "2009-10-05"
-#define MagickChangeDate "20091003"
+#define MagickChangeDate "20091004"
#define MagickAuthoritativeURL "http://www.imagemagick.org"
#define MagickHomeURL "file:///usr/local/share/doc/ImageMagick-6.5.6/index.html"
#if (MAGICKCORE_QUANTUM_DEPTH == 8)
diff --git a/version.sh b/version.sh
index ceb46d7..99870a4 100644
--- a/version.sh
+++ b/version.sh
@@ -12,7 +12,7 @@
# PACKAGE_NAME (e.g. "1.0.0").
PACKAGE_VERSION='6.5.6'
PACKAGE_LIB_VERSION="0x656"
-PACKAGE_RELEASE="9"
+PACKAGE_RELEASE="10"
PACKAGE_LIB_VERSION_NUMBER="6,5,6,${PACKAGE_RELEASE}"
PACKAGE_RELEASE_DATE=`date +%F`
PACKAGE_STRING="$PACKAGE_NAME $PACKAGE_VERSION"
diff --git a/www/animate.html b/www/animate.html
index 8b5c82f..4395f22 100644
--- a/www/animate.html
+++ b/www/animate.html
@@ -607,7 +607,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.html b/www/api.html
index ded8b3a..f4200ce 100644
--- a/www/api.html
+++ b/www/api.html
@@ -159,7 +159,7 @@
<h2><a name="ada"></a>Ada</h2>
</div>
-<p><a href="https://gna.org/projects/g2f/" target="4685711">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p>
+<p><a href="https://gna.org/projects/g2f/" target="877423912">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>
@@ -171,7 +171,7 @@
<h2><a name="ch"></a>Ch</h2>
</div>
-<p><a href="http://www.imagemagick.org/ChMagick" target="1844597887">ChMagick</a> is a <a href="http://www.softintegration.com/" target="1067014601">Ch</a> binding to the MagickCore and MagickWand API. Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p>
+<p><a href="http://www.imagemagick.org/ChMagick" target="630154504">ChMagick</a> is a <a href="http://www.softintegration.com/" target="972190433">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>
@@ -183,31 +183,31 @@
<h2><a name="c++"></a>C++</h2>
</div>
-<p><a href="http://www.imagemagick.org/Magick++" target="1327613123">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="1356046710">A Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++. We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" target="253092334">source</a> if you want to correct, enhance, or expand the tutorial.</p>
+<p><a href="http://www.imagemagick.org/Magick++" target="1762757335">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="2009235287">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="1440594423">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="1174855837">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="933254022">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>
+<p><a href="http://www.jmagick.org" target="525971738">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="493339756">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="1838927840">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>
+<p><a href="http://forums.lavag.org/downloads-file90.html" target="767033323">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="652969403">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>
+<p><a href="http://common-lisp.net/project/cl-magick/" target="2097818811">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="586844029">NMagick</a> is a port of the ImageMagick library to the haXe and Neko platforms. It provides image manipulation capabilities to both web and desktop applications using Neko.</p>
+<p><a href="http://code.google.com/p/nmagick" target="685298650">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>
@@ -221,7 +221,7 @@
<h2><a name="pascal"></a>Pascal</h2>
</div>
-<p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="2000459590">PascalMagick</a> a Pascal binding for the MagickWand API and also the low-level MagickCore library. It works with Free Pascal / Lazarus and Delphi.</p>
+<p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="1242978179">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>
@@ -233,50 +233,50 @@
<h2><a name="php"></a>PHP</h2>
</div>
-<p><a href="http://www.magickwand.org/" target="2452456">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://www.magickwand.org/" target="96625613">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>
-<p><a href="http://pecl.html.net/package/imagick" target="991426208">IMagick</a> is a native PHP extension to create and modify images using the ImageMagick API. Documentation for the extension is available <a href="http://php.net/imagick" target="1675408115">here</a>.</p>
+<p><a href="http://pecl.html.net/package/imagick" target="1576551582">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="1046333268">here</a>.</p>
-<p><a href="http://www.francodacosta.com/phmagick" target="437021487">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p>
+<p><a href="http://www.francodacosta.com/phmagick" target="1576498821">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p>
<div style="margin: auto;">
<h2><a name="python"></a>Python</h2>
</div>
-<p><a href="http://www.imagemagick.org/download/python/" target="1999187287">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p>
+<p><a href="http://www.imagemagick.org/download/python/" target="450552359">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p>
-<p><a href="http://www.procoders.net/?p=39" target="1895948717">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p>
+<p><a href="http://www.procoders.net/?p=39" target="1431569660">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p>
<div style="margin: auto;">
<h2><a name="realbasic"></a>REALbasic</h2>
</div>
-<p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="874625800">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="2036785214">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="715061331">RMagick</a> is an interface between the Ruby programming language and the <a href="../www/magick-core.html">MagickCore</a> image processing libraries. Get started with RMagick by perusing the <a href="http://www.imagemagick.org/RMagick/doc/" target="1613755933">documentation</a>.</p>
+<p><a href="http://rmagick.rubyforge.org/" target="1983012410">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="966864385">documentation</a>.</p>
-<p><a href="http://magickwand.rubyforge.org/" target="762980588">MagickWand for Ruby</a> is an interface between the Ruby programming language and the <a href="../www/magick-wand.html">MagickWand</a> image processing libraries. Get started with MagickWand for PHP by perusing the <a href="http://magickwand.rubyforge.org/" target="15102020">documentation</a>.</p>
+<p><a href="http://magickwand.rubyforge.org/" target="306975682">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="967233112">documentation</a>.</p>
-<p><a href="http://rubyforge.org/projects/mini-magick" target="2091035371">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p>
+<p><a href="http://rubyforge.org/projects/mini-magick" target="1736419197">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="103486418">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="2008946926">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="545361478">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>
+<p><a href="http://tclmagick.sourceforge.net/" target="1908678310">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="1876662508">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
+<p><a href="http://code.google.com/p/remotemagick/" target="598738845">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>
</div>
diff --git a/www/api/cipher.html b/www/api/cipher.html
index dc87947..e199341 100644
--- a/www/api/cipher.html
+++ b/www/api/cipher.html
@@ -355,7 +355,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/color.html b/www/api/color.html
index 423d9f9..4baddcc 100644
--- a/www/api/color.html
+++ b/www/api/color.html
@@ -549,7 +549,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/compare.html b/www/api/compare.html
index c24f4d4..f91f4f8 100644
--- a/www/api/compare.html
+++ b/www/api/compare.html
@@ -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/composite.html b/www/api/composite.html
index e442261..a7f7af2 100644
--- a/www/api/composite.html
+++ b/www/api/composite.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/api/constitute.html b/www/api/constitute.html
index 4556674..3b40c84 100644
--- a/www/api/constitute.html
+++ b/www/api/constitute.html
@@ -333,7 +333,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/decorate.html b/www/api/decorate.html
index 11dfc8e..29d7890 100644
--- a/www/api/decorate.html
+++ b/www/api/decorate.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/display.html b/www/api/display.html
index 9daf1d6..32fc17c 100644
--- a/www/api/display.html
+++ b/www/api/display.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://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/drawing-wand.html b/www/api/drawing-wand.html
index 1e5350e..e7bad6b 100644
--- a/www/api/drawing-wand.html
+++ b/www/api/drawing-wand.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -3067,7 +3067,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/effect.html b/www/api/effect.html
index 6241f5a..6e55b4b 100644
--- a/www/api/effect.html
+++ b/www/api/effect.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -688,7 +688,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/fx.html b/www/api/fx.html
index f7da0a9..daeb98a 100644
--- a/www/api/fx.html
+++ b/www/api/fx.html
@@ -825,7 +825,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 421c3ad..4dad7ca 100644
--- a/www/api/list.html
+++ b/www/api/list.html
@@ -123,7 +123,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><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/api/magick-deprecate.html b/www/api/magick-deprecate.html
index bf8aaf2..62c660b 100644
--- a/www/api/magick-deprecate.html
+++ b/www/api/magick-deprecate.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -900,7 +900,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-image.html b/www/api/magick-image.html
index 2fcc90f..a42783b 100644
--- a/www/api/magick-image.html
+++ b/www/api/magick-image.html
@@ -6335,7 +6335,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-property.html b/www/api/magick-property.html
index ee3ad3a..4afd0b7 100644
--- a/www/api/magick-property.html
+++ b/www/api/magick-property.html
@@ -1512,7 +1512,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-wand.html b/www/api/magick-wand.html
index 7c749cc..2f7088b 100644
--- a/www/api/magick-wand.html
+++ b/www/api/magick-wand.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -632,7 +632,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.html b/www/api/magick.html
index 8ac81ac..3c3ca4d 100644
--- a/www/api/magick.html
+++ b/www/api/magick.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/api/memory.html b/www/api/memory.html
index a7d9487..50ecd3b 100644
--- a/www/api/memory.html
+++ b/www/api/memory.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/api/monitor.html b/www/api/monitor.html
index 1d0f49a..807a487 100644
--- a/www/api/monitor.html
+++ b/www/api/monitor.html
@@ -123,7 +123,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><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/api/paint.html b/www/api/paint.html
index ef8c945..ab79d0e 100644
--- a/www/api/paint.html
+++ b/www/api/paint.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/api/pixel-iterator.html b/www/api/pixel-iterator.html
index 9d1b3f8..e74a51b 100644
--- a/www/api/pixel-iterator.html
+++ b/www/api/pixel-iterator.html
@@ -506,7 +506,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/profile.html b/www/api/profile.html
index 7182952..9359426 100644
--- a/www/api/profile.html
+++ b/www/api/profile.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -376,7 +376,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/quantize.html b/www/api/quantize.html
index 88b1ff2..eaa9baf 100644
--- a/www/api/quantize.html
+++ b/www/api/quantize.html
@@ -482,7 +482,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/shear.html b/www/api/shear.html
index 0e8dba2..de43da0 100644
--- a/www/api/shear.html
+++ b/www/api/shear.html
@@ -123,7 +123,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><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -265,7 +265,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/signature.html b/www/api/signature.html
index 858f87b..f1b5083 100644
--- a/www/api/signature.html
+++ b/www/api/signature.html
@@ -179,7 +179,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 425ad0c..6efbe64 100644
--- a/www/api/stream.html
+++ b/www/api/stream.html
@@ -208,7 +208,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/transform.html b/www/api/transform.html
index 9ad8e95..f96505e 100644
--- a/www/api/transform.html
+++ b/www/api/transform.html
@@ -123,7 +123,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><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/changelog.html b/www/changelog.html
index 2b2096e..29956e8 100644
--- a/www/changelog.html
+++ b/www/changelog.html
@@ -1258,7 +1258,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/color.html b/www/color.html
index 9d1723f..87ae2ba 100644
--- a/www/color.html
+++ b/www/color.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/command-line-processing.html b/www/command-line-processing.html
index 8a0580c..a12e9e3 100644
--- a/www/command-line-processing.html
+++ b/www/command-line-processing.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/command-line-tools.html b/www/command-line-tools.html
index 2c257f0..c6de315 100644
--- a/www/command-line-tools.html
+++ b/www/command-line-tools.html
@@ -153,11 +153,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="115054636">gimp</a> or <a href="http://www.adobe.com" target="2000875006">Photoshop</a>. However, a GUI is not always convenient. Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image. For these types of operations, the command-line image processing utility is appropriate.</p>
+<p>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="1833512054">gimp</a> or <a href="http://www.adobe.com" target="123604129">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="2061591059">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="2049343125">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/compare.html b/www/compare.html
index 6421da6..96d6994 100644
--- a/www/compare.html
+++ b/www/compare.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/conjure.html b/www/conjure.html
index d7a8f7d..6d58126 100644
--- a/www/conjure.html
+++ b/www/conjure.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/contact.html b/www/contact.html
index 29e1932..7aa832c 100644
--- a/www/contact.html
+++ b/www/contact.html
@@ -168,7 +168,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="823643252">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="1571083015">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/display.html b/www/display.html
index d398591..215cc71 100644
--- a/www/display.html
+++ b/www/display.html
@@ -638,7 +638,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/escape.html b/www/escape.html
index 8db736b..d15bf7b 100644
--- a/www/escape.html
+++ b/www/escape.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/examples.html b/www/examples.html
index 1385cae..cb68672 100644
--- a/www/examples.html
+++ b/www/examples.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -151,7 +151,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="1911247333">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="882563861">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 ee821f4..c7e297b 100644
--- a/www/exception.html
+++ b/www/exception.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -354,7 +354,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/formats.html b/www/formats.html
index 5f9b159..cf1de86 100644
--- a/www/formats.html
+++ b/www/formats.html
@@ -1742,7 +1742,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/fx.html b/www/fx.html
index bd60b5c..a7e249f 100644
--- a/www/fx.html
+++ b/www/fx.html
@@ -466,7 +466,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/high-dynamic-range.html b/www/high-dynamic-range.html
index 41abe66..8287e29 100644
--- a/www/high-dynamic-range.html
+++ b/www/high-dynamic-range.html
@@ -192,7 +192,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/history.html b/www/history.html
index ceba628..35fb054 100644
--- a/www/history.html
+++ b/www/history.html
@@ -162,7 +162,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="1936219239">Examples of ImageMagick Usage</a>. I highly recommend that you peruse his site. He has illustrated the power of ImageMagick in ways that even I did not know were possible.</p>
+<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="1004902717">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>
diff --git a/www/index.html b/www/index.html
index 7f6f347..d41af5d 100644
--- a/www/index.html
+++ b/www/index.html
@@ -217,7 +217,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/install-source.html b/www/install-source.html
index 3252188..b2d5520 100644
--- a/www/install-source.html
+++ b/www/install-source.html
@@ -223,7 +223,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/license.html b/www/license.html
index 4ad277b..0272ad9 100644
--- a/www/license.html
+++ b/www/license.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/links.html b/www/links.html
index 63fb7f0..2d6ecea 100644
--- a/www/links.html
+++ b/www/links.html
@@ -159,23 +159,23 @@
<h2><a name="command-line"></a>Command-line Tutorials</h2>
</div>
<ul>
- <dt><a href="http://www.imagemagick.org/Usage/" target="2088316950">Examples of ImageMagick Usage</a></dt>
- <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="13863096">Advanced image editing from the command line with ImageMagick</a></dt>
- <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="778659528">Best Open Source Software for the Macintosh</a></dt>
- <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="298209209">Command-line animations using ImageMagick</a></dt>
- <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="1182288660">Convert Images with Open Source ImageMagick</a></dt>
- <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="1054206174">Enchanting Pictures with ImageMagick</a></dt>
- <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1909324005">Graphics from the Command Line</a></dt>
- <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="2108911522">Image creation, conversion and manipulation with ImageMagick</a></dt>
- <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="1835185877">Image Editing for Power Users on the Mac</a></dt>
- <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target="715426805">ImageMagick: A graphics wizard for the command line</a></dt>
- <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target="1105134420">ImageMagick command line examples - part 1</a></dt>
- <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="668655310">ImageMagick command line examples - part 2</a></dt>
- <dt><a href="http://www.rabuser.info/jmagick.html" target="1031609228">ImageMagick & Java</a></dt>
- <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="1338783448">ImageMagick, Part One</a></dt>
- <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="336372605">ImageMagick, Part Two</a></dt>
- <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="572764192">More Graphics from the Command Line</a></dt>
- <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="371580483">Ubuntu Firefox Themes</a></dt>
+ <dt><a href="http://www.imagemagick.org/Usage/" target="245003155">Examples of ImageMagick Usage</a></dt>
+ <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="210386242">Advanced image editing from the command line with ImageMagick</a></dt>
+ <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="2056015384">Best Open Source Software for the Macintosh</a></dt>
+ <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="1608421806">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="667175778">Convert Images with Open Source ImageMagick</a></dt>
+ <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="2086277016">Enchanting Pictures with ImageMagick</a></dt>
+ <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="2133685101">Graphics from the Command Line</a></dt>
+ <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="1519757673">Image creation, conversion and manipulation with ImageMagick</a></dt>
+ <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="837545237">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="637506882">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="1001739549">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="1022717454">ImageMagick command line examples - part 2</a></dt>
+ <dt><a href="http://www.rabuser.info/jmagick.html" target="811156920">ImageMagick & Java</a></dt>
+ <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="1588495577">ImageMagick, Part One</a></dt>
+ <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="1461279159">ImageMagick, Part Two</a></dt>
+ <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="1847921727">More Graphics from the Command Line</a></dt>
+ <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="123072626">Ubuntu Firefox Themes</a></dt>
</ul>
<div style="margin: auto;">
@@ -183,18 +183,18 @@
</div>
<ul>
- <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="923532534">Create Mosaic Images with Perl and ImageMagick</a></dt>
- <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="863136572">Convert images for printing with MagickWand for PHP</a></dt>
- <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="207432497">Create Dynamic Images with ImageMagick</a></dt>
- <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="1726371418">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt>
- <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="481809795">How to compile ImageMagick for PHP by hand</a></dt>
- <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="851093783">MagickWand Examples in C</a></dt>
- <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="1374709890">PHP Extensions: MagickWand for PHP</a></dt>
- <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="1501411565">PHP frontend to ImageMagick</a></dt>
- <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="11403944">PHP ImageMagick MagickWand Examples</a></dt>
- <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="1534899984">RVG - Ruby Vector Graphics</a></dt>
- <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1276495291">Security Images with PHP and ImageMagick</a></dt>
- <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1050042170">Simple Uses of PHP and ImageMagick</a></dt>
+ <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="776492589">Create Mosaic Images with Perl and ImageMagick</a></dt>
+ <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="1554241066">Convert images for printing with MagickWand for PHP</a></dt>
+ <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="1546397870">Create Dynamic Images with ImageMagick</a></dt>
+ <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="850090228">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="1095075557">How to compile ImageMagick for PHP by hand</a></dt>
+ <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="1420782072">MagickWand Examples in C</a></dt>
+ <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="225901081">PHP Extensions: MagickWand for PHP</a></dt>
+ <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="390051440">PHP frontend to ImageMagick</a></dt>
+ <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="686659701">PHP ImageMagick MagickWand Examples</a></dt>
+ <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="594566019">RVG - Ruby Vector Graphics</a></dt>
+ <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="116701088">Security Images with PHP and ImageMagick</a></dt>
+ <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1141089816">Simple Uses of PHP and ImageMagick</a></dt>
</ul>
<div style="margin: auto;">
@@ -202,9 +202,9 @@
</div>
<ul>
- <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="547453956">Installing ImageMagick on Mac OS X</a></dt>
- <dt><a href="http://www.cloudgoessocial.net/2009/06/09/imagemagick-on-iphone-with-jpeg-png/" target="803728224">ImageMagick on iPhone</a></dt>
- <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="990875472">ImageMagick on iPhone - Xcode</a></dt>
+ <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="823013384">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="864950445">ImageMagick on iPhone</a></dt>
+ <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="1386092971">ImageMagick on iPhone - Xcode</a></dt>
</ul>
<div style="margin: auto;">
@@ -212,24 +212,24 @@
</div>
<ul>
- <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="561317052">Down-sampling Methods</a></dt>
+ <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="1033399626">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="1582387753">Book review: ImageMagick Tricks</a></dt>
- <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1289084681">The Definitive Guide To ImageMagick</a></dt>
+ <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="773482182">Book review: ImageMagick Tricks</a></dt>
+ <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="847031129">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="1743605712">ImageMagick Users List</a></dt>
- <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="489110279">ImageMagick Developers List</a></dt>
- <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="1050925038">ImageMagick Bugs List</a></dt>
+ <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="1700575405">ImageMagick Users List</a></dt>
+ <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="712275550">ImageMagick Developers List</a></dt>
+ <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="833232582">ImageMagick Bugs List</a></dt>
</ul>
<div style="margin: auto;">
@@ -237,13 +237,13 @@
</div>
<dl>
<dt>Denmark</dt>
- <dd><a href="http://imagemagick.europnews.de" target="1705033587">http://imagemagick.europnews.de</a></dd><br />
+ <dd><a href="http://imagemagick.europnews.de" target="1072849430">http://imagemagick.europnews.de</a></dd><br />
<dt>Germany</dt>
- <dd><a href="http://imagemagick.linux-mirror.org" target="176812508">http://imagemagick.linux-mirror.org</a></dd><br />
+ <dd><a href="http://imagemagick.linux-mirror.org" target="1549820788">http://imagemagick.linux-mirror.org</a></dd><br />
<dt>Ireland</dt>
- <dd><a href="http://imagemagick.oss-mirror.org" target="1766351844">http://imagemagick.oss-mirror.org</a></dd><br />
+ <dd><a href="http://imagemagick.oss-mirror.org" target="1470739464">http://imagemagick.oss-mirror.org</a></dd><br />
<dt>United States</dt>
- <dd><a href="http://www.imagemagick.org" target="662684359">http://www.imagemagick.org</a></dd>
+ <dd><a href="http://www.imagemagick.org" target="2074588980">http://www.imagemagick.org</a></dd>
</dl>
<div style="margin: auto;">
@@ -251,16 +251,16 @@
</div>
<ul>
- <dt><a href="http://gmic.sourceforge.net/" target="845467818">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt>
- <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="650477424">Image Commander</a>: bulk picture processing with a GUI</dt>
+ <dt><a href="http://gmic.sourceforge.net/" target="425054594">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="134412736">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="2001467808">Wizard's Toolkit</a></dt>
- <dt><a href="http://www.multipole.org" target="1181840424">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
+ <dt><a href="http://www.wizards-toolkit.org" target="1515600909">Wizard's Toolkit</a></dt>
+ <dt><a href="http://www.multipole.org" target="1886333754">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>
</ul>
@@ -271,7 +271,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-core.html b/www/magick-core.html
index 6479072..e87197e 100644
--- a/www/magick-core.html
+++ b/www/magick-core.html
@@ -283,7 +283,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-vector-graphics.html b/www/magick-vector-graphics.html
index 73d3eba..f606fe5 100644
--- a/www/magick-vector-graphics.html
+++ b/www/magick-vector-graphics.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/mailing-list.html b/www/mailing-list.html
index 6e9170e..f559d73 100644
--- a/www/mailing-list.html
+++ b/www/mailing-list.html
@@ -154,25 +154,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="838815120">Magick Users</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target="1601489747">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="63016602">Magick Developers</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target="2102838084">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="170585385">Magick Bugs</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target="2066163348">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="239556186">Magick Announce</a></h2>
+ <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target="1138174397">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>
@@ -184,7 +184,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/miff.html b/www/miff.html
index 90d9c85..c88b2c2 100644
--- a/www/miff.html
+++ b/www/miff.html
@@ -123,7 +123,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><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/mirrors.html b/www/mirrors.html
index e95a1a3..2af3e53 100644
--- a/www/mirrors.html
+++ b/www/mirrors.html
@@ -154,9 +154,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="1559436707">http://imagemagick.europnews.de/</a></dd><br />
+ <dd><a href="http://imagemagick.europnews.de/" target="1872354340">http://imagemagick.europnews.de/</a></dd><br />
<dt>Unites States</dt>
- <dd><a href="http://www.imagemagick.org/" target="702202216">http://www.imagemagick.org/</a></dd>
+ <dd><a href="http://www.imagemagick.org/" target="1262600777">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 0186c7e..2c1ebbe 100644
--- a/www/mogrify.html
+++ b/www/mogrify.html
@@ -1258,7 +1258,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/quantize.html b/www/quantize.html
index 305d402..73b8a98 100644
--- a/www/quantize.html
+++ b/www/quantize.html
@@ -285,7 +285,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/resources.html b/www/resources.html
index dbfdbbe..c690b41 100644
--- a/www/resources.html
+++ b/www/resources.html
@@ -405,7 +405,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/search.html b/www/search.html
index 2b43460..3459dca 100644
--- a/www/search.html
+++ b/www/search.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
+ <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/sitemap.html b/www/sitemap.html
index cd9c85f..4894fdd 100644
--- a/www/sitemap.html
+++ b/www/sitemap.html
@@ -123,7 +123,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
@@ -162,7 +162,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="1475425552">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="1007577057">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>
@@ -176,12 +176,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="1278670951">Unix source</a>: Unix source distributions.</dd>
- <dd><a href="http://www.imagemagick.org/download/windows" target="1458336295">Windows source</a>: Windows source distributions.</dd>
- <dd><a href="http://www.imagemagick.org/download/binaries" target="624367800">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>
+ <dd><a href="http://www.imagemagick.org/download" target="1382238879">Unix source</a>: Unix source distributions.</dd>
+ <dd><a href="http://www.imagemagick.org/download/windows" target="213700052">Windows source</a>: Windows source distributions.</dd>
+ <dd><a href="http://www.imagemagick.org/download/binaries" target="1637731561">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="84582885">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
- <dd><a href="http://www.imagemagick.org/download/delegates" target="717444054">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>
+ <dd><a href="http://www.magickwand.org/" target="206945664">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
+ <dd><a href="http://www.imagemagick.org/download/delegates" target="1976457387">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>
</ul>
</dl>
@@ -220,7 +220,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="296954923">Fred's ImageMagick Scripts</a>: a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>
+ <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="1499483200">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;">
@@ -230,21 +230,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="75994825">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="138449277">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>
- <dd><a href="http://common-lisp.net/project/cl-magick/" target="965387274">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>
- <dd><a href="https://gna.org/projects/g2f/" target="25283007">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>
- <dd><a href="http://www.imagemagick.org/Magick++" target="1465400971">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>
- <dd><a href="http://pecl.html.net/package/imagick" target="1949647065">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>
- <dd><a href="http://www.yeo.id.au/jmagick/" target="1572842895">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>
+ <dd><a href="http://www.imagemagick.org/ChMagick" target="1647540088">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="354945478">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>
+ <dd><a href="http://common-lisp.net/project/cl-magick/" target="1992822956">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>
+ <dd><a href="https://gna.org/projects/g2f/" target="267089763">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="305280641">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>
+ <dd><a href="http://pecl.html.net/package/imagick" target="530637958">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="1510067943">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="1572461883">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
- <dd><a href="http://code.google.com/p/nmagick" target="402102050">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>
- <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="291711713">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>
+ <dd><a href="http://www.magickwand.org/" target="401906254">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>
+ <dd><a href="http://code.google.com/p/nmagick" target="2107189540">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="408917563">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="1813078939">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>
- <dd><a href="http://rmagick.rubyforge.org/" target="1358814093">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>
- <dd><a href="http://tclmagick.sourceforge.net/" target="196024793">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>
+ <dd><a href="http://www.imagemagick.org/download/python/" target="1978405075">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>
+ <dd><a href="http://rmagick.rubyforge.org/" target="410258251">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>
+ <dd><a href="http://tclmagick.sourceforge.net/" target="1840487223">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>
</ul>
</dl>
@@ -262,8 +262,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="1128968254">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="2124992614">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="1867706641">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="245787013">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>
@@ -274,7 +274,7 @@
</div>
<dl>
- <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="230119486">Report bugs and vulnerabilities</a>: our highest priority is to fix security defects and bug reports, usually within 48 hours of your report. The bug discourse server requires that you register. If you do not want to register, you can <a href="contact.html">contact the ImageMagick developers</a> with a convenient web form.</dd>
+ <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="659867960">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>
@@ -298,8 +298,8 @@
<h2><a name="sandbox"></a>Technology Sandbox</h2>
</div>
<dl>
- <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="372739043">Fast Fourier Transforms Toolkit</a></dd>
- <dd><a href="http://www.fmwconcepts.com/misc_tests/FFT_tests/" target="1423117402">Tests Of FFT Processing</a></dd>
+ <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="27198676">Fast Fourier Transforms Toolkit</a></dd>
+ <dd><a href="http://www.fmwconcepts.com/misc_tests/FFT_tests/" target="1213020125">Tests Of FFT Processing</a></dd>
</dl>
@@ -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/sponsors.html b/www/sponsors.html
index b1883d6..62f4f9c 100644
--- a/www/sponsors.html
+++ b/www/sponsors.html
@@ -239,7 +239,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/stream.html b/www/stream.html
index 34b9122..0d87a75 100644
--- a/www/stream.html
+++ b/www/stream.html
@@ -124,7 +124,7 @@
<div class="sponsbox">
<div class="sponsor">
- <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 -->
+ <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->
</div>
<div class="sponsor">
<a href="http://www.online-kredit-index.de">Kredit</a><!-- 201003010120 Buchhorn -->
diff --git a/www/subversion.html b/www/subversion.html
index 748c4f2..a465d9b 100644
--- a/www/subversion.html
+++ b/www/subversion.html
@@ -176,7 +176,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 08fb2d6..48cc9b2 100644
--- a/www/t-shirt.html
+++ b/www/t-shirt.html
@@ -191,7 +191,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>