Changeset 614 for ImageMagick/trunk
- Timestamp:
- 11/18/09 18:04:10 (4 months ago)
- Location:
- ImageMagick/trunk
- Files:
-
- 83 modified
-
ChangeLog (modified) (1 diff)
-
coders/sun.c (modified) (8 diffs)
-
index.html (modified) (2 diffs)
-
www/advanced-unix-installation.html (modified) (2 diffs)
-
www/animate.html (modified) (2 diffs)
-
www/api.html (modified) (14 diffs)
-
www/api/animate.html (modified) (1 diff)
-
www/api/blob.html (modified) (1 diff)
-
www/api/cache-view.html (modified) (2 diffs)
-
www/api/cache.html (modified) (2 diffs)
-
www/api/cipher.html (modified) (1 diff)
-
www/api/decorate.html (modified) (1 diff)
-
www/api/deprecate.html (modified) (1 diff)
-
www/api/draw.html (modified) (1 diff)
-
www/api/drawing-wand.html (modified) (1 diff)
-
www/api/effect.html (modified) (1 diff)
-
www/api/enhance.html (modified) (2 diffs)
-
www/api/exception.html (modified) (1 diff)
-
www/api/fx.html (modified) (1 diff)
-
www/api/histogram.html (modified) (1 diff)
-
www/api/image.html (modified) (1 diff)
-
www/api/layer.html (modified) (1 diff)
-
www/api/list.html (modified) (1 diff)
-
www/api/magick-deprecate.html (modified) (2 diffs)
-
www/api/magick-property.html (modified) (2 diffs)
-
www/api/magick-wand.html (modified) (2 diffs)
-
www/api/magick.html (modified) (1 diff)
-
www/api/memory.html (modified) (1 diff)
-
www/api/monitor.html (modified) (1 diff)
-
www/api/pixel-iterator.html (modified) (1 diff)
-
www/api/pixel-view.html (modified) (1 diff)
-
www/api/pixel-wand.html (modified) (1 diff)
-
www/api/profile.html (modified) (2 diffs)
-
www/api/property.html (modified) (1 diff)
-
www/api/quantize.html (modified) (2 diffs)
-
www/api/registry.html (modified) (1 diff)
-
www/api/resize.html (modified) (1 diff)
-
www/api/resource.html (modified) (1 diff)
-
www/api/segment.html (modified) (1 diff)
-
www/api/shear.html (modified) (2 diffs)
-
www/api/signature.html (modified) (2 diffs)
-
www/api/stream.html (modified) (2 diffs)
-
www/api/transform.html (modified) (1 diff)
-
www/api/version.html (modified) (1 diff)
-
www/architecture.html (modified) (1 diff)
-
www/binary-releases.html (modified) (2 diffs)
-
www/changelog.html (modified) (2 diffs)
-
www/cipher.html (modified) (2 diffs)
-
www/color.html (modified) (2 diffs)
-
www/command-line-options.html (modified) (1 diff)
-
www/command-line-tools.html (modified) (3 diffs)
-
www/compare.html (modified) (1 diff)
-
www/composite.html (modified) (2 diffs)
-
www/contact.html (modified) (1 diff)
-
www/display.html (modified) (1 diff)
-
www/download.html (modified) (2 diffs)
-
www/escape.html (modified) (2 diffs)
-
www/examples.html (modified) (2 diffs)
-
www/exception.html (modified) (1 diff)
-
www/fx.html (modified) (2 diffs)
-
www/high-dynamic-range.html (modified) (1 diff)
-
www/history.html (modified) (3 diffs)
-
www/import.html (modified) (1 diff)
-
www/index.html (modified) (2 diffs)
-
www/install-source.html (modified) (2 diffs)
-
www/jp2.html (modified) (1 diff)
-
www/license.html (modified) (1 diff)
-
www/links.html (modified) (10 diffs)
-
www/magick-core.html (modified) (1 diff)
-
www/magick-vector-graphics.html (modified) (2 diffs)
-
www/magick-wand.html (modified) (1 diff)
-
www/mailing-list.html (modified) (5 diffs)
-
www/miff.html (modified) (1 diff)
-
www/mirrors.html (modified) (2 diffs)
-
www/mogrify.html (modified) (1 diff)
-
www/motion-picture.html (modified) (1 diff)
-
www/perl-magick.html (modified) (1 diff)
-
www/resources.html (modified) (1 diff)
-
www/search.html (modified) (1 diff)
-
www/sitemap.html (modified) (9 diffs)
-
www/sponsors.html (modified) (1 diff)
-
www/stream.html (modified) (1 diff)
-
www/t-shirt.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/ChangeLog
r583 r614 1 2009-11-18 6.5.7-9 Cristy <quetzlzacatenango@image...> 2 * Read / write 32-bit SUN raster images with a odd width. 3 1 4 2009-11-12 6.5.7-8 Cristy <quetzlzacatenango@image...> 2 5 * Thumb::URI file URI now has the correct number of forward slashes. -
ImageMagick/trunk/coders/sun.c
r607 r614 312 312 if ((sun_info.depth == 0) || (sun_info.depth > 32)) 313 313 ThrowReaderException(CorruptImageError,"ImproperImageHeader"); 314 image->depth=sun_info.depth <= 8 ? sun_info.depth : MAGICKCORE_QUANTUM_DEPTH; 314 image->depth=sun_info.depth <= 8 ? sun_info.depth : 315 MAGICKCORE_QUANTUM_DEPTH; 315 316 if (sun_info.depth < 24) 316 317 { … … 496 497 else 497 498 { 498 length=image->rows*((image->columns*(image->matte != MagickFalse ? 4 : 499 3))+image->columns % 2); 499 size_t 500 bytes_per_pixel; 501 502 bytes_per_pixel=3; 503 if (image->matte != MagickFalse) 504 bytes_per_pixel++; 505 length=image->rows*((bytes_per_line*image->columns)+ 506 image->columns % 2); 500 507 if (((sun_info.type == RT_ENCODED) && 501 508 (length > (bytes_per_line*image->rows))) || … … 531 538 q++; 532 539 } 533 if (( image->columns% 2) != 0)540 if (((bytes_per_pixel*image->columns) % 2) != 0) 534 541 p++; 535 542 if (SyncAuthenticPixels(image,exception) == MagickFalse) … … 760 767 Full color SUN raster. 761 768 */ 762 sun_info.depth= (image->matte ? 32U : 24U);769 sun_info.depth=image->matte ? 32U : 24U; 763 770 sun_info.length=(unsigned int) ((image->matte ? 4 : 3)*number_pixels); 764 sun_info.length+= image->columns& 0x01 ? image->rows : 0;771 sun_info.length+=sun_info.length & 0x01 ? image->rows : 0; 765 772 } 766 773 else … … 809 816 810 817 size_t 818 bytes_per_pixel, 811 819 length; 812 820 … … 817 825 Allocate memory for pixels. 818 826 */ 827 bytes_per_pixel=3; 828 if (image->matte != MagickFalse) 829 bytes_per_pixel++; 819 830 length=image->columns; 820 831 pixels=(unsigned char *) AcquireQuantumMemory(length,4*sizeof(*pixels)); … … 839 850 p++; 840 851 } 841 if ( image->columns & 0x01)842 *q++= 0; /* pad scanline */852 if (((bytes_per_pixel*image->columns) & 0x01) != 0) 853 *q++='\0'; /* pad scanline */ 843 854 (void) WriteBlob(image,(size_t) (q-pixels),pixels); 844 855 if (image->previous == (Image *) NULL) … … 925 936 p++; 926 937 } 927 if ( (image->columns & 0x01) != 0)938 if (image->columns & 0x01) 928 939 (void) WriteBlobByte(image,0); /* pad scanline */ 929 940 if (image->previous == (Image *) NULL) -
ImageMagick/trunk/index.html
r607 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 222 222 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 223 223 <a href="www/mailing-list.html">Mailing Lists</a> • 224 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>224 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 225 225 </span> 226 226 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/advanced-unix-installation.html
r611 r614 124 124 125 125 <div class="sponsbox"> 126 <div class="sponsor">127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->128 </div>129 126 <div class="sponsor"> 130 127 <a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de--> … … 603 600 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 604 601 <a href="../www/mailing-list.html">Mailing Lists</a> • 605 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>602 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 606 603 </span> 607 604 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/animate.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->128 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 129 129 </div> 130 130 <div class="sponsor"> … … 612 612 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 613 613 <a href="../www/mailing-list.html">Mailing Lists</a> • 614 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>614 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 615 615 </span> 616 616 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api.html
r611 r614 164 164 </div> 165 165 166 <p><a href="https://gna.org/projects/g2f/" target=" 1937901513">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p>166 <p><a href="https://gna.org/projects/g2f/" target="564638277">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p> 167 167 168 168 <div style="margin: auto;"> … … 176 176 </div> 177 177 178 <p><a href="http://www.imagemagick.org/ChMagick" target=" 1726869492">ChMagick</a> is a <a href="http://www.softintegration.com/" target="2147379620">Ch</a> binding to the MagickCore and MagickWand API. Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p>178 <p><a href="http://www.imagemagick.org/ChMagick" target="55897455">ChMagick</a> is a <a href="http://www.softintegration.com/" target="366641684">Ch</a> binding to the MagickCore and MagickWand API. Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p> 179 179 180 180 <div style="margin: auto;"> … … 188 188 </div> 189 189 190 <p><a href="http://www.imagemagick.org/Magick++" target="1 507927426">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="1879934285">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="1560684948">source</a> if you want to correct, enhance, or expand the tutorial.</p>190 <p><a href="http://www.imagemagick.org/Magick++" target="1978940434">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="374550600">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="1593846633">source</a> if you want to correct, enhance, or expand the tutorial.</p> 191 191 192 192 <div style="margin: auto;"> … … 194 194 </div> 195 195 196 <p><a href="http://www.jmagick.org" target="1 816363730">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="547330856">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>196 <p><a href="http://www.jmagick.org" target="1020119332">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="1492163948">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p> 197 197 198 198 <div style="margin: auto;"> … … 200 200 </div> 201 201 202 <p><a href="http://forums.lavag.org/downloads-file90.html" target=" 1657607384">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>202 <p><a href="http://forums.lavag.org/downloads-file90.html" target="403179340">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p> 203 203 204 204 <div style="margin: auto;"> … … 206 206 </div> 207 207 208 <p><a href="http://common-lisp.net/project/cl-magick/" target=" 1923409273">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>208 <p><a href="http://common-lisp.net/project/cl-magick/" target="2129358843">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p> 209 209 210 210 <div style="margin: auto;"> … … 212 212 </div> 213 213 214 <p><a href="http://code.google.com/p/nmagick" target=" 1030231512">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>214 <p><a href="http://code.google.com/p/nmagick" target="623217249">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> 215 215 216 216 <div style="margin: auto;"> … … 226 226 </div> 227 227 228 <p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="1 211790545">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>228 <p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="1007689176">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> 229 229 230 230 <div style="margin: auto;"> … … 238 238 </div> 239 239 240 <p><a href="http://www.magickwand.org/" target=" 153928106">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>241 242 <p><a href="http://pecl.html.net/package/imagick" target="1 873501116">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="1644853853">here</a>.</p>243 244 <p><a href="http://www.francodacosta.com/phmagick" target=" 957118596">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>240 <p><a href="http://www.magickwand.org/" target="829734844">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p> 241 242 <p><a href="http://pecl.html.net/package/imagick" target="1518251289">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="931373984">here</a>.</p> 243 244 <p><a href="http://www.francodacosta.com/phmagick" target="8148165">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> 245 245 246 246 <div style="margin: auto;"> … … 249 249 </div> 250 250 251 <p><a href="http://www.imagemagick.org/download/python/" target=" 515462067">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p>252 253 <p><a href="http://www.procoders.net/?p=39" target="1 689073825">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p>251 <p><a href="http://www.imagemagick.org/download/python/" target="1808251960">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p> 252 253 <p><a href="http://www.procoders.net/?p=39" target="1048825304">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p> 254 254 255 255 <div style="margin: auto;"> … … 257 257 </div> 258 258 259 <p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="1 406652546">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p>259 <p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="1049180726">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p> 260 260 261 261 <div style="margin: auto;"> … … 263 263 </div> 264 264 265 <p><a href="http://rmagick.rubyforge.org/" target="1 710476888">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="1683014776">documentation</a>.</p>266 267 <p><a href="http://magickwand.rubyforge.org/" target=" 845881665">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="918616942">documentation</a>.</p>268 269 <p><a href="http://rubyforge.org/projects/mini-magick" target="1 790667430">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p>270 271 <p><a href="http://quickmagick.rubyforge.org/quick_magick" target=" 1064687080">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p>265 <p><a href="http://rmagick.rubyforge.org/" target="1468077142">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="461394169">documentation</a>.</p> 266 267 <p><a href="http://magickwand.rubyforge.org/" target="459617039">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="402938918">documentation</a>.</p> 268 269 <p><a href="http://rubyforge.org/projects/mini-magick" target="1296049324">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p> 270 271 <p><a href="http://quickmagick.rubyforge.org/quick_magick" target="483311183">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p> 272 272 273 273 <div style="margin: auto;"> … … 275 275 </div> 276 276 277 <p><a href="http://tclmagick.sourceforge.net/" target=" 416138449">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>277 <p><a href="http://tclmagick.sourceforge.net/" target="24316298">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p> 278 278 279 279 <div style="margin: auto;"> … … 281 281 </div> 282 282 283 <p><a href="http://code.google.com/p/remotemagick/" target="8 45992303">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>283 <p><a href="http://code.google.com/p/remotemagick/" target="820974322">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p> 284 284 285 285 </div> -
ImageMagick/trunk/www/api/animate.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/blob.html
r611 r614 348 348 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 349 349 <a href="../../www/mailing-list.html">Mailing Lists</a> • 350 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>350 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 351 351 </span> 352 352 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/cache-view.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 581 581 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 582 582 <a href="../../www/mailing-list.html">Mailing Lists</a> • 583 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>583 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 584 584 </span> 585 585 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/cache.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 517 517 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 518 518 <a href="../../www/mailing-list.html">Mailing Lists</a> • 519 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>519 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 520 520 </span> 521 521 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/cipher.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/decorate.html
r611 r614 241 241 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 242 242 <a href="../../www/mailing-list.html">Mailing Lists</a> • 243 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>243 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 244 244 </span> 245 245 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/deprecate.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/draw.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/drawing-wand.html
r611 r614 3072 3072 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 3073 3073 <a href="../../www/mailing-list.html">Mailing Lists</a> • 3074 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>3074 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 3075 3075 </span> 3076 3076 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/effect.html
r607 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/enhance.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 700 700 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 701 701 <a href="../../www/mailing-list.html">Mailing Lists</a> • 702 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>702 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 703 703 </span> 704 704 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/exception.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/fx.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/histogram.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/image.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/layer.html
r607 r614 452 452 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 453 453 <a href="../../www/mailing-list.html">Mailing Lists</a> • 454 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>454 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 455 455 </span> 456 456 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/list.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/magick-deprecate.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 905 905 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 906 906 <a href="../../www/mailing-list.html">Mailing Lists</a> • 907 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>907 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 908 908 </span> 909 909 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/magick-property.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 1632 1632 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1633 1633 <a href="../../www/mailing-list.html">Mailing Lists</a> • 1634 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1634 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1635 1635 </span> 1636 1636 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/magick-wand.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 637 637 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 638 638 <a href="../../www/mailing-list.html">Mailing Lists</a> • 639 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>639 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 640 640 </span> 641 641 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/magick.html
r611 r614 214 214 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 215 215 <a href="../../www/mailing-list.html">Mailing Lists</a> • 216 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>216 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 217 217 </span> 218 218 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/memory.html
r611 r614 409 409 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 410 410 <a href="../../www/mailing-list.html">Mailing Lists</a> • 411 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>411 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 412 412 </span> 413 413 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/monitor.html
r611 r614 232 232 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 233 233 <a href="../../www/mailing-list.html">Mailing Lists</a> • 234 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>234 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 235 235 </span> 236 236 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/pixel-iterator.html
r607 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/pixel-view.html
r611 r614 572 572 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 573 573 <a href="../../www/mailing-list.html">Mailing Lists</a> • 574 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>574 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 575 575 </span> 576 576 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/pixel-wand.html
r611 r614 1402 1402 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1403 1403 <a href="../../www/mailing-list.html">Mailing Lists</a> • 1404 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1404 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1405 1405 </span> 1406 1406 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/profile.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 381 381 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 382 382 <a href="../../www/mailing-list.html">Mailing Lists</a> • 383 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>383 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 384 384 </span> 385 385 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/property.html
r607 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/quantize.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->128 </div>129 <div class="sponsor">130 127 <a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de--> 131 128 </div> … … 487 484 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 488 485 <a href="../../www/mailing-list.html">Mailing Lists</a> • 489 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>486 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 490 487 </span> 491 488 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/registry.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/resize.html
r611 r614 457 457 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 458 458 <a href="../../www/mailing-list.html">Mailing Lists</a> • 459 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>459 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 460 460 </span> 461 461 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/resource.html
r611 r614 326 326 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 327 327 <a href="../../www/mailing-list.html">Mailing Lists</a> • 328 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>328 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 329 329 </span> 330 330 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/segment.html
r611 r614 198 198 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 199 199 <a href="../../www/mailing-list.html">Mailing Lists</a> • 200 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>200 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 201 201 </span> 202 202 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/shear.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 270 270 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 271 271 <a href="../../www/mailing-list.html">Mailing Lists</a> • 272 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>272 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 273 273 </span> 274 274 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/signature.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 184 184 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 185 185 <a href="../../www/mailing-list.html">Mailing Lists</a> • 186 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>186 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 187 187 </span> 188 188 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/stream.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 213 213 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 214 214 <a href="../../www/mailing-list.html">Mailing Lists</a> • 215 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>215 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 216 216 </span> 217 217 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/transform.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/api/version.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/architecture.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/binary-releases.html
r603 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 380 380 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 381 381 <a href="../www/mailing-list.html">Mailing Lists</a> • 382 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>382 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 383 383 </span> 384 384 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/changelog.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 1297 1297 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1298 1298 <a href="../www/mailing-list.html">Mailing Lists</a> • 1299 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1299 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1300 1300 </span> 1301 1301 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/cipher.html
r607 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->128 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 129 129 </div> 130 130 <div class="sponsor"> … … 210 210 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 211 211 <a href="../www/mailing-list.html">Mailing Lists</a> • 212 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>212 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 213 213 </span> 214 214 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/color.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->128 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 129 129 </div> 130 130 <div class="sponsor"> … … 5037 5037 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 5038 5038 <a href="../www/mailing-list.html">Mailing Lists</a> • 5039 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>5039 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 5040 5040 </span> 5041 5041 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/command-line-options.html
r611 r614 5720 5720 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 5721 5721 <a href="../www/mailing-list.html">Mailing Lists</a> • 5722 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>5722 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 5723 5723 </span> 5724 5724 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/command-line-tools.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 158 158 <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> 159 159 160 <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=" 1831466194">gimp</a> or <a href="http://www.adobe.com" target="1709301355">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>160 <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="429586218">gimp</a> or <a href="http://www.adobe.com" target="1131846193">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> 161 161 162 162 <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> 163 163 164 <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="1 295809773">convert, compose, or edit</a> images from the command-line.</p>164 <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="1627552891">convert, compose, or edit</a> images from the command-line.</p> 165 165 166 166 <div style="margin: auto;"> … … 237 237 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 238 238 <a href="../www/mailing-list.html">Mailing Lists</a> • 239 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>239 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 240 240 </span> 241 241 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/compare.html
r611 r614 401 401 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 402 402 <a href="../www/mailing-list.html">Mailing Lists</a> • 403 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>403 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 404 404 </span> 405 405 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/composite.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->128 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 129 129 </div> 130 130 <div class="sponsor"> … … 605 605 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 606 606 <a href="../www/mailing-list.html">Mailing Lists</a> • 607 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>607 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 608 608 </span> 609 609 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/contact.html
r611 r614 173 173 </ul> 174 174 175 <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=" 1976428409">discourse server</a> or the <a href="../www/mailing-list.html">mailing list</a>.</p>175 <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="318102034">discourse server</a> or the <a href="../www/mailing-list.html">mailing list</a>.</p> 176 176 <fieldset> 177 177 <legend>Contact the Wizards</legend> -
ImageMagick/trunk/www/display.html
r611 r614 643 643 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 644 644 <a href="../www/mailing-list.html">Mailing Lists</a> • 645 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>645 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 646 646 </span> 647 647 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/download.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 220 220 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 221 221 <a href="../www/mailing-list.html">Mailing Lists</a> • 222 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>222 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 223 223 </span> 224 224 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/escape.html
r607 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->128 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 129 129 </div> 130 130 <div class="sponsor"> … … 446 446 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 447 447 <a href="../www/mailing-list.html">Mailing Lists</a> • 448 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>448 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 449 449 </span> 450 450 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/examples.html
r611 r614 156 156 <div class="main"> 157 157 158 <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=" 716992793">examples.pl</a>.</p><br />158 <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="610744842">examples.pl</a>.</p><br /> 159 159 160 160 <div class="viewport"> … … 169 169 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 170 170 <a href="../www/mailing-list.html">Mailing Lists</a> • 171 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>171 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 172 172 </span> 173 173 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/exception.html
r607 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 -->128 </div>129 <div class="sponsor">130 127 <a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de--> 131 128 </div> -
ImageMagick/trunk/www/fx.html
r611 r614 125 125 126 126 <div class="sponsbox"> 127 <div class="sponsor"> 128 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 129 </div> 127 130 <div class="sponsor"> 128 131 <a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de--> … … 468 471 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 469 472 <a href="../www/mailing-list.html">Mailing Lists</a> • 470 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>473 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 471 474 </span> 472 475 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/high-dynamic-range.html
r607 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/history.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 168 168 <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> 169 169 170 <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="1 887737079">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>170 <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="1650407086">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> 171 171 172 172 <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> … … 181 181 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 182 182 <a href="../www/mailing-list.html">Mailing Lists</a> • 183 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>183 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 184 184 </span> 185 185 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/import.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->128 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 129 129 </div> 130 130 <div class="sponsor"> -
ImageMagick/trunk/www/index.html
r607 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 222 222 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 223 223 <a href="../www/mailing-list.html">Mailing Lists</a> • 224 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>224 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 225 225 </span> 226 226 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/install-source.html
r603 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 228 228 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 229 229 <a href="../www/mailing-list.html">Mailing Lists</a> • 230 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>230 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 231 231 </span> 232 232 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/jp2.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->128 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 129 129 </div> 130 130 <div class="sponsor"> -
ImageMagick/trunk/www/license.html
r611 r614 279 279 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 280 280 <a href="../www/mailing-list.html">Mailing Lists</a> • 281 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>281 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 282 282 </span> 283 283 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/links.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 164 164 </div> 165 165 <ul> 166 <dt><a href="http://www.imagemagick.org/Usage/" target="1 520115753">Examples of ImageMagick Usage</a></dt>167 <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target=" 1720316585">Advanced image editing from the command line with ImageMagick</a></dt>168 <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target=" 1092182853">Best Open Source Software for the Macintosh</a></dt>169 <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="1 903425267">Command-line animations using ImageMagick</a></dt>170 <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target=" 787391218">Convert Images with Open Source ImageMagick</a></dt>171 <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="1 880192330">Enchanting Pictures with ImageMagick</a></dt>172 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1 892721959">Graphics from the Command Line</a></dt>173 <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target=" 372602011">Image creation, conversion and manipulation with ImageMagick</a></dt>174 <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target=" 2074480936">Image Editing for Power Users on the Mac</a></dt>175 <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target=" 1679881993">ImageMagick: A graphics wizard for the command line</a></dt>176 <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target=" 542920760">ImageMagick command line examples - part 1</a></dt>177 <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="2 062155393">ImageMagick command line examples - part 2</a></dt>178 <dt><a href="http://www.rabuser.info/jmagick.html" target=" 405196427">ImageMagick & Java</a></dt>179 <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target=" 207539198">ImageMagick, Part One</a></dt>180 <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="1 062192069">ImageMagick, Part Two</a></dt>181 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target=" 499236138">More Graphics from the Command Line</a></dt>182 <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target=" 649638867">Ubuntu Firefox Themes</a></dt>166 <dt><a href="http://www.imagemagick.org/Usage/" target="1351704920">Examples of ImageMagick Usage</a></dt> 167 <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="362022410">Advanced image editing from the command line with ImageMagick</a></dt> 168 <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="77538769">Best Open Source Software for the Macintosh</a></dt> 169 <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="1773780501">Command-line animations using ImageMagick</a></dt> 170 <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="1934925683">Convert Images with Open Source ImageMagick</a></dt> 171 <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="1397926328">Enchanting Pictures with ImageMagick</a></dt> 172 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1743750366">Graphics from the Command Line</a></dt> 173 <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="51503192">Image creation, conversion and manipulation with ImageMagick</a></dt> 174 <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="1678736548">Image Editing for Power Users on the Mac</a></dt> 175 <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target="235212137">ImageMagick: A graphics wizard for the command line</a></dt> 176 <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target="1318639910">ImageMagick command line examples - part 1</a></dt> 177 <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="233260664">ImageMagick command line examples - part 2</a></dt> 178 <dt><a href="http://www.rabuser.info/jmagick.html" target="930767442">ImageMagick & Java</a></dt> 179 <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="1715332243">ImageMagick, Part One</a></dt> 180 <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="1592035355">ImageMagick, Part Two</a></dt> 181 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="1178332937">More Graphics from the Command Line</a></dt> 182 <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="1270714728">Ubuntu Firefox Themes</a></dt> 183 183 </ul> 184 184 … … 188 188 189 189 <ul> 190 <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="1 478844691">Create Mosaic Images with Perl and ImageMagick</a></dt>191 <dt><a href="http://builder.com.com/5100-6371-5924990.html" target=" 1313888219">Convert images for printing with MagickWand for PHP</a></dt>192 <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target=" 462286242">Create Dynamic Images with ImageMagick</a></dt>193 <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target=" 1333229528">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt>194 <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="1 046295647">How to compile ImageMagick for PHP by hand</a></dt>195 <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="1 405700661">MagickWand Examples in C</a></dt>196 <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="1 582394018">PHP Extensions: MagickWand for PHP</a></dt>197 <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target=" 1810838334">PHP frontend to ImageMagick</a></dt>198 <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target=" 1122176755">PHP ImageMagick MagickWand Examples</a></dt>199 <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target=" 1365011406">RVG - Ruby Vector Graphics</a></dt>200 <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target=" 763684777">Security Images with PHP and ImageMagick</a></dt>201 <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="11 51147267">Simple Uses of PHP and ImageMagick</a></dt>190 <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="1773624561">Create Mosaic Images with Perl and ImageMagick</a></dt> 191 <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="424065522">Convert images for printing with MagickWand for PHP</a></dt> 192 <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="791426485">Create Dynamic Images with ImageMagick</a></dt> 193 <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="450571077">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt> 194 <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="1275152868">How to compile ImageMagick for PHP by hand</a></dt> 195 <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="1287132143">MagickWand Examples in C</a></dt> 196 <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="1316588602">PHP Extensions: MagickWand for PHP</a></dt> 197 <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="2036565721">PHP frontend to ImageMagick</a></dt> 198 <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="325904777">PHP ImageMagick MagickWand Examples</a></dt> 199 <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="881779020">RVG - Ruby Vector Graphics</a></dt> 200 <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1870565395">Security Images with PHP and ImageMagick</a></dt> 201 <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1179872648">Simple Uses of PHP and ImageMagick</a></dt> 202 202 </ul> 203 203 … … 207 207 208 208 <ul> 209 <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="1 852379063">Installing ImageMagick on Mac OS X</a></dt>210 <dt><a href="http://www.cloudgoessocial.net/2009/06/09/imagemagick-on-iphone-with-jpeg-png/" target=" 203351302">ImageMagick on iPhone</a></dt>211 <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target=" 523779372">ImageMagick on iPhone - Xcode</a></dt>212 <dt><a href="http://www.digitalsanctum.com/?s=ImageMagick" target="14 25212000">Installing ImageMagick from Source on Ubuntu</a></dt>209 <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="1039229541">Installing ImageMagick on Mac OS X</a></dt> 210 <dt><a href="http://www.cloudgoessocial.net/2009/06/09/imagemagick-on-iphone-with-jpeg-png/" target="723204947">ImageMagick on iPhone</a></dt> 211 <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="384093920">ImageMagick on iPhone - Xcode</a></dt> 212 <dt><a href="http://www.digitalsanctum.com/?s=ImageMagick" target="1401251952">Installing ImageMagick from Source on Ubuntu</a></dt> 213 213 </ul> 214 214 … … 218 218 219 219 <ul> 220 <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target=" 1295534156">Down-sampling Methods</a></dt>220 <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="800743716">Down-sampling Methods</a></dt> 221 221 </ul> 222 222 … … 225 225 </div> 226 226 <ul> 227 <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target=" 279720991">Book review: ImageMagick Tricks</a></dt>228 <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target=" 65119570">The Definitive Guide To ImageMagick</a></dt>227 <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="10390774">Book review: ImageMagick Tricks</a></dt> 228 <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1188693987">The Definitive Guide To ImageMagick</a></dt> 229 229 </ul> 230 230 … … 233 233 </div> 234 234 <ul> 235 <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target=" 1028242838">ImageMagick Users List</a></dt>236 <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target=" 24959302">ImageMagick Developers List</a></dt>237 <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target=" 437721581">ImageMagick Bugs List</a></dt>235 <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="51186396">ImageMagick Users List</a></dt> 236 <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="1754141140">ImageMagick Developers List</a></dt> 237 <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="1240197180">ImageMagick Bugs List</a></dt> 238 238 </ul> 239 239 … … 243 243 <dl> 244 244 <dt>Denmark</dt> 245 <dd><a href="http://imagemagick.europnews.de" target=" 955240126">http://imagemagick.europnews.de</a></dd><br />245 <dd><a href="http://imagemagick.europnews.de" target="1729922944">http://imagemagick.europnews.de</a></dd><br /> 246 246 <dt>Germany</dt> 247 <dd><a href="http://imagemagick.linux-mirror.org" target="1 704841295">http://imagemagick.linux-mirror.org</a></dd><br />247 <dd><a href="http://imagemagick.linux-mirror.org" target="1989353277">http://imagemagick.linux-mirror.org</a></dd><br /> 248 248 <dt>Ireland</dt> 249 <dd><a href="http://imagemagick.oss-mirror.org" target=" 980642341">http://imagemagick.oss-mirror.org</a></dd><br />249 <dd><a href="http://imagemagick.oss-mirror.org" target="411353442">http://imagemagick.oss-mirror.org</a></dd><br /> 250 250 <dt>United States</dt> 251 <dd><a href="http://www.imagemagick.org" target=" 869911872">http://www.imagemagick.org</a></dd>251 <dd><a href="http://www.imagemagick.org" target="1963183608">http://www.imagemagick.org</a></dd> 252 252 </dl> 253 253 … … 257 257 258 258 <ul> 259 <dt><a href="http://gmic.sourceforge.net/" target=" 2110037722">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt>260 <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target=" 1188181539">Image Commander</a>: bulk picture processing with a GUI</dt>259 <dt><a href="http://gmic.sourceforge.net/" target="772637071">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt> 260 <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="2126685685">Image Commander</a>: bulk picture processing with a GUI</dt> 261 261 </ul> 262 262 … … 265 265 </div> 266 266 <ul> 267 <dt><a href="http://www.wizards-toolkit.org" target="1 932103941">Wizard's Toolkit</a></dt>268 <dt><a href="http://www.multipole.org" target=" 461790213">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>267 <dt><a href="http://www.wizards-toolkit.org" target="1407735315">Wizard's Toolkit</a></dt> 268 <dt><a href="http://www.multipole.org" target="1950970008">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt> 269 269 </ul> 270 270 -
ImageMagick/trunk/www/magick-core.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->128 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 129 129 </div> 130 130 <div class="sponsor"> -
ImageMagick/trunk/www/magick-vector-graphics.html
r603 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 1062 1062 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1063 1063 <a href="../www/mailing-list.html">Mailing Lists</a> • 1064 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1064 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1065 1065 </span> 1066 1066 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/magick-wand.html
r611 r614 460 460 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 461 461 <a href="../www/mailing-list.html">Mailing Lists</a> • 462 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>462 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 463 463 </span> 464 464 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/mailing-list.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 159 159 160 160 <div style="margin: auto;"> 161 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target=" 1775678432">Magick Users</a></h2>161 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target="227551882">Magick Users</a></h2> 162 162 </div> 163 163 … … 165 165 166 166 <div style="margin: auto;"> 167 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target=" 152623001">Magick Developers</a></h2>167 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target="2041343251">Magick Developers</a></h2> 168 168 </div> 169 169 … … 171 171 172 172 <div style="margin: auto;"> 173 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target=" 449210864">Magick Bugs</a></h2>173 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target="1484447306">Magick Bugs</a></h2> 174 174 </div> 175 175 … … 177 177 178 178 <div style="margin: auto;"> 179 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target=" 674490431">Magick Announce</a></h2>179 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target="1502704750">Magick Announce</a></h2> 180 180 </div> 181 181 -
ImageMagick/trunk/www/miff.html
r611 r614 313 313 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 314 314 <a href="../www/mailing-list.html">Mailing Lists</a> • 315 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>315 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 316 316 </span> 317 317 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/mirrors.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 159 159 <dl class="magick-mirror"> 160 160 <dt>France</dt> 161 <dd><a href="http://imagemagick.europnews.de/" target=" 576600018">http://imagemagick.europnews.de/</a></dd><br />161 <dd><a href="http://imagemagick.europnews.de/" target="1233895774">http://imagemagick.europnews.de/</a></dd><br /> 162 162 <dt>Unites States</dt> 163 <dd><a href="http://www.imagemagick.org/" target="1 568738121">http://www.imagemagick.org/</a></dd>163 <dd><a href="http://www.imagemagick.org/" target="128594417">http://www.imagemagick.org/</a></dd> 164 164 </dl> 165 165 <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> -
ImageMagick/trunk/www/mogrify.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->128 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 129 129 </div> 130 130 <div class="sponsor"> -
ImageMagick/trunk/www/motion-picture.html
r611 r614 126 126 <div class="sponsbox"> 127 127 <div class="sponsor"> 128 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->128 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 129 129 </div> 130 130 <div class="sponsor"> -
ImageMagick/trunk/www/perl-magick.html
r607 r614 2529 2529 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 2530 2530 <a href="../www/mailing-list.html">Mailing Lists</a> • 2531 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>2531 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 2532 2532 </span> 2533 2533 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/resources.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/search.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->127 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200 --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/sitemap.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20101101000200-->127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 167 167 <dd><a href="../www/index.html">Introduction</a>: convert, edit, and compose images from the command-line or program interface.</dd> 168 168 <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> 169 <dd><a href="http://www.imagemagick.org/Usage/" target=" 306749903">Anthony Thyssen's examples of ImageMagick usage</a>: a comprehensive tutorial of using ImageMagick from the command line.</dd>169 <dd><a href="http://www.imagemagick.org/Usage/" target="1521582541">Anthony Thyssen's examples of ImageMagick usage</a>: a comprehensive tutorial of using ImageMagick from the command line.</dd> 170 170 <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> 171 171 <dd><a href="../www/resources.html">Resources</a>: ImageMagick depends on external resources including configuration files, loadable modules, fonts, and environment variables.</dd> … … 181 181 <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> 182 182 <ul> 183 <dd><a href="http://www.imagemagick.org/download" target=" 2051177371">Unix source</a>: Unix source distributions.</dd>184 <dd><a href="http://www.imagemagick.org/download/windows" target=" 1530942321">Windows source</a>: Windows source distributions.</dd>185 <dd><a href="http://www.imagemagick.org/download/binaries" target=" 299985081">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>183 <dd><a href="http://www.imagemagick.org/download" target="905380093">Unix source</a>: Unix source distributions.</dd> 184 <dd><a href="http://www.imagemagick.org/download/windows" target="429191525">Windows source</a>: Windows source distributions.</dd> 185 <dd><a href="http://www.imagemagick.org/download/binaries" target="1508092063">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd> 186 186 <dd><a href="../www/subversion.html">Subversion repository</a>: stable and development source releases.</dd> 187 <dd><a href="http://www.magickwand.org/" target=" 1101290004">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>188 <dd><a href="http://www.imagemagick.org/download/delegates" target="1 52641692">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>187 <dd><a href="http://www.magickwand.org/" target="428348548">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd> 188 <dd><a href="http://www.imagemagick.org/download/delegates" target="128129356">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd> 189 189 </ul> 190 190 </dl> … … 225 225 <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> 226 226 <dd><a href="../www/fx.html">Fx</a>: apply a mathematical expression to an image or image channels.</dd> 227 <dd><a href="http://www.fmwconcepts.com/imagemagick/" target=" 591812686">Fred's ImageMagick Scripts</a>: a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>227 <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="1766016598">Fred's ImageMagick Scripts</a>: a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd> 228 228 </dl> 229 229 … … 235 235 <dd><a href="../www/api.html">Program interfaces</a>: application programming interfaces.</dd> 236 236 <ul> 237 <dd><a href="http://www.imagemagick.org/ChMagick" target=" 579798971">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="2131085562">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>238 <dd><a href="http://common-lisp.net/project/cl-magick/" target="18 09754593">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>239 <dd><a href="https://gna.org/projects/g2f/" target=" 718272531">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>240 <dd><a href="http://www.imagemagick.org/Magick++" target="1 141492793">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>241 <dd><a href="http://pecl.html.net/package/imagick" target="1 915165672">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>242 <dd><a href="http://www.yeo.id.au/jmagick/" target=" 1643817170">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>237 <dd><a href="http://www.imagemagick.org/ChMagick" target="1380659015">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="1817032289">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd> 238 <dd><a href="http://common-lisp.net/project/cl-magick/" target="1850767262">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd> 239 <dd><a href="https://gna.org/projects/g2f/" target="135049881">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd> 240 <dd><a href="http://www.imagemagick.org/Magick++" target="1463627520">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd> 241 <dd><a href="http://pecl.html.net/package/imagick" target="1189284743">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd> 242 <dd><a href="http://www.yeo.id.au/jmagick/" target="997032857">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd> 243 243 <dd><a href="../www/magick-core.html">MagickCore</a>: C API, recommended for wizard-level developers.</dd> 244 244 <dd><a href="../www/magick-wand.html">MagickWand</a>: convert, compose, and edit images from the C language.</dd> 245 <dd><a href="http://www.magickwand.org/" target=" 2048403696">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>246 <dd><a href="http://code.google.com/p/nmagick" target=" 2110586950">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>247 <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target=" 63032489">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>245 <dd><a href="http://www.magickwand.org/" target="73518436">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd> 246 <dd><a href="http://code.google.com/p/nmagick" target="1409705613">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd> 247 <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="426670051">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd> 248 248 <dd><a href="../www/perl-magick.html">PerlMagick</a>: convert, compose, and edit images from the Perl language.</dd> 249 <dd><a href="http://www.imagemagick.org/download/python/" target=" 1850070742">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>250 <dd><a href="http://rmagick.rubyforge.org/" target=" 802310494">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>251 <dd><a href="http://tclmagick.sourceforge.net/" target=" 518219285">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>249 <dd><a href="http://www.imagemagick.org/download/python/" target="33742594">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd> 250 <dd><a href="http://rmagick.rubyforge.org/" target="1676665344">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd> 251 <dd><a href="http://tclmagick.sourceforge.net/" target="888292223">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd> 252 252 </ul> 253 253 </dl> … … 267 267 268 268 <dl> 269 <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=" 1837879497">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>270 <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=" 1979277236">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>269 <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="732180027">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd> 270 <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="660322211">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd> 271 271 <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> 272 272 <dd><a href="../www/mailing-list.html">Mailing list</a>: get help from fellow ImageMagick users and developers, post to these mailing lists.</dd> … … 279 279 280 280 <dl> 281 <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="3 72089073">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>281 <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="399513822">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> 282 282 <dd><a href="../www/sponsors.html">Sponsor ImageMagick</a>: contribute bug fixes, enhancements, hardware, funds, etc. to ensure the ImageMagick project thrives.</dd> 283 283 <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> … … 303 303 </div> 304 304 <dl> 305 <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target=" 806950225">Fast Fourier Transforms Toolkit</a></dd>306 <dd><a href="http://www.fmwconcepts.com/imagemagick/linkcounter.html?dir=fourier_transforms/&linkname=fourier.html" target=" 430047355">Fourier Transform Processing With ImageMagick</a></dd>307 <dd><a href="http://www.imagemagick.org/Usage/fourier/" target=" 2029461488">ImageMagick v6 Examples -- Fourier Transforms</a></dd>305 <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="546887430">Fast Fourier Transforms Toolkit</a></dd> 306 <dd><a href="http://www.fmwconcepts.com/imagemagick/linkcounter.html?dir=fourier_transforms/&linkname=fourier.html" target="123383827">Fourier Transform Processing With ImageMagick</a></dd> 307 <dd><a href="http://www.imagemagick.org/Usage/fourier/" target="1429000324">ImageMagick v6 Examples -- Fourier Transforms</a></dd> 308 308 </dl> 309 309 … … 316 316 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 317 317 <a href="../www/mailing-list.html">Mailing Lists</a> • 318 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>318 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 319 319 </span> 320 320 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/sponsors.html
r611 r614 244 244 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 245 245 <a href="../www/mailing-list.html">Mailing Lists</a> • 246 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>246 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 247 247 </span> 248 248 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/stream.html
r611 r614 346 346 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 347 347 <a href="../www/mailing-list.html">Mailing Lists</a> • 348 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>348 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 349 349 </span> 350 350 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/t-shirt.html
r611 r614 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ -->128 </div>129 <div class="sponsor">130 127 <a href="http://www.tomsgutscheine.de">Tom's Gutscheine</a><!-- 201005010360 invendio.de--> 131 128 </div>
