Changeset 300
- Timestamp:
- 10/05/09 18:57:36 (6 months ago)
- Location:
- ImageMagick/trunk
- Files:
-
- 75 modified
-
Magick++/lib/Color.cpp (modified) (1 diff)
-
coders/dng.c (modified) (2 diffs)
-
coders/tiff.c (modified) (6 diffs)
-
config/coder.xml (modified) (4 diffs)
-
magick/coder.c (modified) (4 diffs)
-
www/advanced-unix-installation.html (modified) (2 diffs)
-
www/advanced-windows-installation.html (modified) (1 diff)
-
www/api.html (modified) (15 diffs)
-
www/api/animate.html (modified) (1 diff)
-
www/api/annotate.html (modified) (2 diffs)
-
www/api/blob.html (modified) (1 diff)
-
www/api/cache-view.html (modified) (1 diff)
-
www/api/cache.html (modified) (1 diff)
-
www/api/cipher.html (modified) (1 diff)
-
www/api/compare.html (modified) (1 diff)
-
www/api/composite.html (modified) (1 diff)
-
www/api/deprecate.html (modified) (1 diff)
-
www/api/display.html (modified) (1 diff)
-
www/api/draw.html (modified) (2 diffs)
-
www/api/drawing-wand.html (modified) (1 diff)
-
www/api/effect.html (modified) (1 diff)
-
www/api/enhance.html (modified) (1 diff)
-
www/api/exception.html (modified) (2 diffs)
-
www/api/list.html (modified) (1 diff)
-
www/api/magick-deprecate.html (modified) (1 diff)
-
www/api/magick-property.html (modified) (1 diff)
-
www/api/magick-wand.html (modified) (1 diff)
-
www/api/magick.html (modified) (1 diff)
-
www/api/memory.html (modified) (2 diffs)
-
www/api/monitor.html (modified) (2 diffs)
-
www/api/montage.html (modified) (1 diff)
-
www/api/paint.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) (2 diffs)
-
www/api/profile.html (modified) (1 diff)
-
www/api/property.html (modified) (1 diff)
-
www/api/registry.html (modified) (1 diff)
-
www/api/resource.html (modified) (1 diff)
-
www/api/segment.html (modified) (2 diffs)
-
www/api/shear.html (modified) (1 diff)
-
www/api/stream.html (modified) (1 diff)
-
www/api/transform.html (modified) (2 diffs)
-
www/api/version.html (modified) (1 diff)
-
www/architecture.html (modified) (2 diffs)
-
www/binary-releases.html (modified) (5 diffs)
-
www/changelog.html (modified) (2 diffs)
-
www/cipher.html (modified) (1 diff)
-
www/color.html (modified) (2 diffs)
-
www/command-line-processing.html (modified) (1 diff)
-
www/command-line-tools.html (modified) (2 diffs)
-
www/compare.html (modified) (1 diff)
-
www/contact.html (modified) (1 diff)
-
www/convert.html (modified) (2 diffs)
-
www/download.html (modified) (2 diffs)
-
www/escape.html (modified) (1 diff)
-
www/examples.html (modified) (2 diffs)
-
www/fx.html (modified) (1 diff)
-
www/high-dynamic-range.html (modified) (2 diffs)
-
www/history.html (modified) (2 diffs)
-
www/identify.html (modified) (2 diffs)
-
www/import.html (modified) (1 diff)
-
www/license.html (modified) (2 diffs)
-
www/links.html (modified) (9 diffs)
-
www/magick-vector-graphics.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/montage.html (modified) (1 diff)
-
www/resources.html (modified) (1 diff)
-
www/search.html (modified) (1 diff)
-
www/sitemap.html (modified) (8 diffs)
-
www/sponsors.html (modified) (2 diffs)
-
www/stream.html (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ImageMagick/trunk/Magick++/lib/Color.cpp
r1 r300 39 39 return ( !( left_ < right_ ) && ( left_ != right_ ) ); 40 40 } 41 // Compare color intensities (similar to ImageMagick Intensity macro)42 // If intensities match, discriminate based on priority green, red,43 // & then blue.44 41 int Magick::operator < ( const Magick::Color& left_, 45 42 const Magick::Color& right_ ) 46 43 { 47 double left_intensity=left_.intensity(); 48 double right_intensity=right_.intensity(); 49 return ( 50 (left_intensity < right_intensity) 51 || ( 52 (left_intensity == right_intensity) 53 && ( 54 (left_.greenQuantum() < right_.greenQuantum()) || 55 (left_.redQuantum() < right_.redQuantum()) || 56 (left_.blueQuantum() < right_.blueQuantum()) 57 ) 58 ) 59 ); 44 if(left_.redQuantum() < right_.redQuantum()) return true; 45 if(left_.redQuantum() > right_.redQuantum()) return false; 46 if(left_.greenQuantum() < right_.greenQuantum()) return true; 47 if(left_.greenQuantum() > right_.greenQuantum()) return false; 48 if(left_.blueQuantum() < right_.blueQuantum()) return true; 49 return false; 60 50 } 61 51 int Magick::operator >= ( const Magick::Color& left_, -
ImageMagick/trunk/coders/dng.c
r1 r300 239 239 *entry; 240 240 241 entry=SetMagickInfo("3FR"); 242 entry->decoder=(DecodeImageHandler *) ReadDNGImage; 243 entry->blob_support=MagickFalse; 244 entry->seekable_stream=MagickTrue; 245 entry->format_type=ExplicitFormatType; 246 entry->description=ConstantString("Hasselblad CFV/H3D39II"); 247 entry->module=ConstantString("DNG"); 248 (void) RegisterMagickInfo(entry); 241 249 entry=SetMagickInfo("ARW"); 242 250 entry->decoder=(DecodeImageHandler *) ReadDNGImage; … … 406 414 (void) UnregisterMagickInfo("DNG"); 407 415 (void) UnregisterMagickInfo("ARW"); 416 (void) UnregisterMagickInfo("3FR"); 408 417 } -
ImageMagick/trunk/coders/tiff.c
r267 r300 345 345 length=fwrite("\025\001\003\000\001\000\000\000\001\000\000\000",1,12,file); 346 346 length=fwrite("\026\001\004\000\001\000\000\000",1,8,file); 347 length=WriteLSBLong(file,image-> columns);347 length=WriteLSBLong(file,image->rows); 348 348 length=fwrite("\027\001\004\000\001\000\000\000\000\000\000\000",1,12,file); 349 349 offset=(ssize_t) ftell(file)-4; … … 1847 1847 *tiff; 1848 1848 1849 uint16 1850 fillorder; 1851 1852 uint32 1849 toff_t 1853 1850 *byte_count, 1854 1851 strip_size; … … 1875 1872 return(MagickFalse); 1876 1873 } 1874 huffman_image->endian=MSBEndian; 1877 1875 file=(FILE *) NULL; 1878 1876 unique_file=AcquireUniqueFileResource(filename); … … 1917 1915 Allocate raw strip buffer. 1918 1916 */ 1919 byte_count=0; 1920 (void) TIFFGetField(tiff,TIFFTAG_STRIPBYTECOUNTS,&byte_count); 1917 if (TIFFGetField(tiff,TIFFTAG_STRIPBYTECOUNTS,&byte_count) != 1) 1918 { 1919 TIFFClose(tiff); 1920 huffman_image=DestroyImage(huffman_image); 1921 (void) fclose(file); 1922 (void) RelinquishUniqueFileResource(filename); 1923 return(MagickFalse); 1924 } 1921 1925 strip_size=byte_count[0]; 1922 1926 for (i=1; i < (long) TIFFNumberOfStrips(tiff); i++) … … 1937 1941 Compress runlength encoded to 2D Huffman pixels. 1938 1942 */ 1939 fillorder=FILLORDER_LSB2MSB;1940 (void) TIFFGetFieldDefaulted(tiff,TIFFTAG_FILLORDER,&fillorder);1941 1943 for (i=0; i < (long) TIFFNumberOfStrips(tiff); i++) 1942 1944 { 1943 count=(ssize_t) TIFFReadRawStrip(tiff,(uint32) i,buffer,(long) 1944 byte_count[i]); 1945 if (fillorder == FILLORDER_LSB2MSB) 1946 TIFFReverseBits(buffer,(unsigned long) count); 1945 count=(ssize_t) TIFFReadRawStrip(tiff,(uint32) i,buffer,strip_size); 1947 1946 if (WriteBlob(image,(size_t) count,buffer) != count) 1948 1947 status=MagickFalse; … … 2631 2630 (image_info->type != TrueColorMatteType)) 2632 2631 { 2633 if (image->storage_class == PseudoClass) 2632 if ((image_info->type != PaletteType) && 2633 (IsGrayImage(image,&image->exception) != MagickFalse)) 2634 2634 { 2635 unsigned long 2636 depth; 2637 2638 /* 2639 Colormapped TIFF raster. 2640 */ 2635 photometric=(uint16) (quantum_info->min_is_white != 2636 MagickFalse ? PHOTOMETRIC_MINISWHITE : 2637 PHOTOMETRIC_MINISBLACK); 2641 2638 (void) TIFFSetField(tiff,TIFFTAG_SAMPLESPERPIXEL,1); 2642 photometric=PHOTOMETRIC_PALETTE;2643 depth=1;2644 while ((GetQuantumRange(depth)+1) < image->colors)2645 depth<<=1;2646 status=SetQuantumDepth(image,quantum_info,depth);2647 if (status == MagickFalse)2648 ThrowWriterException(ResourceLimitError,2649 "MemoryAllocationFailed");2639 if ((image_info->depth == 0) && 2640 (IsMonochromeImage(image,&image->exception) != MagickFalse)) 2641 { 2642 status=SetQuantumDepth(image,quantum_info,1); 2643 if (status == MagickFalse) 2644 ThrowWriterException(ResourceLimitError, 2645 "MemoryAllocationFailed"); 2646 } 2650 2647 } 2651 2648 else 2652 if ((image_info->type != PaletteType) && 2653 (IsGrayImage(image,&image->exception) != MagickFalse)) 2649 if (image->storage_class == PseudoClass) 2654 2650 { 2655 photometric=(uint16) (quantum_info->min_is_white != 2656 MagickFalse ? PHOTOMETRIC_MINISWHITE : 2657 PHOTOMETRIC_MINISBLACK); 2651 unsigned long 2652 depth; 2653 2654 /* 2655 Colormapped TIFF raster. 2656 */ 2658 2657 (void) TIFFSetField(tiff,TIFFTAG_SAMPLESPERPIXEL,1); 2659 if ((image_info->depth == 0) &&2660 (IsMonochromeImage(image,&image->exception) != MagickFalse))2661 {2662 status=SetQuantumDepth(image,quantum_info,1);2663 if (status == MagickFalse)2664 ThrowWriterException(ResourceLimitError,2665 "MemoryAllocationFailed");2666 }2658 photometric=PHOTOMETRIC_PALETTE; 2659 depth=1; 2660 while ((GetQuantumRange(depth)+1) < image->colors) 2661 depth<<=1; 2662 status=SetQuantumDepth(image,quantum_info,depth); 2663 if (status == MagickFalse) 2664 ThrowWriterException(ResourceLimitError, 2665 "MemoryAllocationFailed"); 2667 2666 } 2668 2667 } -
ImageMagick/trunk/config/coder.xml
r198 r300 7 7 ]> 8 8 <codermap> 9 <coder magick="3FR" name="DNG"/> 9 10 <coder magick="8BIM" name="META"/> 10 11 <coder magick="8BIMTEXT" name="META"/> … … 41 42 <coder magick="EPT2" name="EPT"/> 42 43 <coder magick="EPT3" name="EPT"/> 44 <coder magick="ERF" name="DNG"/> 43 45 <coder magick="EXIF" name="META"/> 44 46 <coder magick="FILE" name="URL"/> … … 53 55 <coder magick="GRANITE" name="MAGICK"/> 54 56 <coder magick="GROUP4" name="TIFF"/> 57 <coder magick="K25" name="DNG"/> 58 <coder magick="KDC" name="DNG"/> 55 59 <coder magick="H" name="MAGICK"/> 56 60 <coder magick="HTM" name="HTML"/> … … 117 121 <coder magick="ROSE" name="MAGICK"/> 118 122 <coder magick="SHTML" name="HTML"/> 123 <coder magick="SR2" name="DNG"/> 124 <coder magick="SRF" name="DNG"/> 119 125 <coder magick="SVGZ" name="SVG"/> 120 126 <coder magick="TEXT" name="TXT"/> -
ImageMagick/trunk/magick/coder.c
r198 r300 71 71 "<?xml version=\"1.0\"?>" 72 72 "<codermap>" 73 " <coder magick=\"3FR\" name=\"DNG\" />" 73 74 " <coder magick=\"8BIM\" name=\"META\" />" 74 75 " <coder magick=\"8BIMTEXT\" name=\"META\" />" … … 104 105 " <coder magick=\"EPT2\" name=\"EPT\" />" 105 106 " <coder magick=\"EPT3\" name=\"EPT\" />" 107 " <coder magick=\"ERF\" name=\"DNG\" />" 106 108 " <coder magick=\"EXIF\" name=\"META\" />" 107 109 " <coder magick=\"FILE\" name=\"URL\" />" … … 132 134 " <coder magick=\"JPX\" name=\"JP2\" />" 133 135 " <coder magick=\"K\" name=\"GRAY\" />" 136 " <coder magick=\"K25\" name=\"DNG\" />" 137 " <coder magick=\"KDC\" name=\"DNG\" />" 134 138 " <coder magick=\"LOGO\" name=\"MAGICK\" />" 135 139 " <coder magick=\"M2V\" name=\"MPEG\" />" … … 177 181 " <coder magick=\"ROSE\" name=\"MAGICK\" />" 178 182 " <coder magick=\"SHTML\" name=\"HTML\" />" 183 " <coder magick=\"SR2\" name=\"DNG\" />" 184 " <coder magick=\"SRF\" name=\"DNG\" />" 179 185 " <coder magick=\"SVGZ\" name=\"SVG\" />" 180 186 " <coder magick=\"TEXT\" name=\"TXT\" />" -
ImageMagick/trunk/www/advanced-unix-installation.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 523 523 <p><a href="../www/download.html">Download</a> the ImageMagick source distribution and verify the distribution against its <a href="http://www.imagemagick.org/download/digest.rdf">message digest</a>.</p> 524 524 <p>Unpack and change into the top-level ImageMagick directory:</p> 525 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>tar xvfz ImageMagick-6.5.6- 8.tar.gz</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>cd ImageMagick-6.5.6</span></p> <p>Choose an architecture and set your CFLAGS environment variable. Here we set CFLAGS for an Intel build:</p>525 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>tar xvfz ImageMagick-6.5.6-9.tar.gz</span><span class='crtout'></span><span class="crtprompt"> $magick> </span><span class='crtin'>cd ImageMagick-6.5.6</span></p> <p>Choose an architecture and set your CFLAGS environment variable. Here we set CFLAGS for an Intel build:</p> 526 526 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>export CFLAGS="-O -g -isysroot /Developer/SDKs/MacOSX10.5.sdk/ \ <br/> 527 527 -arch i386 -I/sw/include/"</span></p> <p>Set your LDFLAGS environment variable to:</p> -
ImageMagick/trunk/www/advanced-windows-installation.html
r296 r300 428 428 <ol> 429 429 <li>Double-click on 430 <kbd>VisualMagick/bin/ImageMagick-6.5.6- 8-Q16-windows-dll.exe</kbd>430 <kbd>VisualMagick/bin/ImageMagick-6.5.6-9-Q16-windows-dll.exe</kbd> 431 431 to launch the ImageMagick binary distribution.</li> 432 432 <li>Complete the installer screens to install ImageMagick on your system.</li> -
ImageMagick/trunk/www/api.html
r296 r300 160 160 </div> 161 161 162 <p><a href="https://gna.org/projects/g2f/" target=" 205945948">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p>162 <p><a href="https://gna.org/projects/g2f/" target="4685711">G2F</a> implements an Ada 95 binding to a subset of the low-level MagickCore library.</p> 163 163 164 164 <div style="margin: auto;"> … … 172 172 </div> 173 173 174 <p><a href="http://www.imagemagick.org/ChMagick" target=" 916423482">ChMagick</a> is a <a href="http://www.softintegration.com/" target="1372412035">Ch</a> binding to the MagickCore and MagickWand API. Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p>174 <p><a href="http://www.imagemagick.org/ChMagick" target="1844597887">ChMagick</a> is a <a href="http://www.softintegration.com/" target="1067014601">Ch</a> binding to the MagickCore and MagickWand API. Ch is an embeddable C/C++ interpreter for cross-platform scripting.</p> 175 175 176 176 <div style="margin: auto;"> … … 184 184 </div> 185 185 186 <p><a href="http://www.imagemagick.org/Magick++" target=" 4961699">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="736849588">A Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++. We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" target="1841510777">source</a> if you want to correct, enhance, or expand the tutorial.</p>186 <p><a href="http://www.imagemagick.org/Magick++" target="1327613123">Magick++</a> provides an object-oriented C++ interface to ImageMagick. See <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.pdf" target="1356046710">A Gentle Introduction to Magick++</a> for an introductory tutorial to Magick++. We include the <a href="http://www.imagemagick.org/Magick++/tutorial/Magick++_tutorial.odt" target="253092334">source</a> if you want to correct, enhance, or expand the tutorial.</p> 187 187 188 188 <div style="margin: auto;"> … … 190 190 </div> 191 191 192 <p><a href="http://www.jmagick.org" target="1 616848598">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="1742862914">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p>192 <p><a href="http://www.jmagick.org" target="1174855837">JMagick</a> provides an object-oriented Java interface to ImageMagick. <a href="http://im4java.sourceforge.net" target="933254022">Im4java</a> is a pure-java interface to the ImageMagick command-line.</p> 193 193 194 194 <div style="margin: auto;"> … … 196 196 </div> 197 197 198 <p><a href="http://forums.lavag.org/downloads-file90.html" target="1 492264466">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p>198 <p><a href="http://forums.lavag.org/downloads-file90.html" target="1838927840">LVOOP ImageMagick</a> is an object-oriented LabVIEW interface to ImageMagick.</p> 199 199 200 200 <div style="margin: auto;"> … … 202 202 </div> 203 203 204 <p><a href="http://common-lisp.net/project/cl-magick/" target=" 543999849">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p>204 <p><a href="http://common-lisp.net/project/cl-magick/" target="652969403">CL-Magick</a> provides a Common Lisp interface to the ImageMagick library.</p> 205 205 206 206 <div style="margin: auto;"> … … 208 208 </div> 209 209 210 <p><a href="http://code.google.com/p/nmagick" target=" 621098582">NMagick</a> is a port of the ImageMagick library to the haXe and Neko platforms. It provides image manipulation capabilities to both web and desktop applications using Neko.</p>210 <p><a href="http://code.google.com/p/nmagick" target="586844029">NMagick</a> is a port of the ImageMagick library to the haXe and Neko platforms. It provides image manipulation capabilities to both web and desktop applications using Neko.</p> 211 211 212 212 <div style="margin: auto;"> … … 222 222 </div> 223 223 224 <p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target=" 367165845">PascalMagick</a> a Pascal binding for the MagickWand API and also the low-level MagickCore library. It works with Free Pascal / Lazarus and Delphi.</p>224 <p><a href="http://wiki.lazarus.freepascal.org/PascalMagick" target="2000459590">PascalMagick</a> a Pascal binding for the MagickWand API and also the low-level MagickCore library. It works with Free Pascal / Lazarus and Delphi.</p> 225 225 226 226 <div style="margin: auto;"> … … 234 234 </div> 235 235 236 <p><a href="http://www.magickwand.org/" target=" 1241313524">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p>237 238 <p><a href="http://pecl.html.net/package/imagick" target=" 682557577">IMagick</a> is a native PHP extension to create and modify images using the ImageMagick API. Documentation for the extension is available <a href="http://php.net/imagick" target="743152498">here</a>.</p>239 240 <p><a href="http://www.francodacosta.com/phmagick" target=" 731652476">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p>236 <p><a href="http://www.magickwand.org/" target="2452456">MagickWand for PHP</a> a native PHP-extension to the ImageMagick MagickWand API.</p> 237 238 <p><a href="http://pecl.html.net/package/imagick" target="991426208">IMagick</a> is a native PHP extension to create and modify images using the ImageMagick API. Documentation for the extension is available <a href="http://php.net/imagick" target="1675408115">here</a>.</p> 239 240 <p><a href="http://www.francodacosta.com/phmagick" target="437021487">phMagick</a> is a wrapper class for ImageMagick, wrapping the most common web image manipulation actions in easy to use functions, but allowing full access to ImageMagick's power by issuing system calls to it's command-line programs.</p> 241 241 242 242 <div style="margin: auto;"> … … 245 245 </div> 246 246 247 <p><a href="http://www.imagemagick.org/download/python/" target="1 378382291">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p>248 249 <p><a href="http://www.procoders.net/?p=39" target="1 041804938">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p>247 <p><a href="http://www.imagemagick.org/download/python/" target="1999187287">PythonMagick</a> an object-oriented Python interface to ImageMagick.</p> 248 249 <p><a href="http://www.procoders.net/?p=39" target="1895948717">PythonMagickWand</a> an object-oriented Python interface to MagickWand based on ctypes.</p> 250 250 251 251 <div style="margin: auto;"> … … 253 253 </div> 254 254 255 <p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target=" 972067430">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p>255 <p>The <a href="http://www.monkeybreadsoftware.de/realbasic/plugin-imagemagick.shtml" target="874625800">MBS Realbasic ImageMagick</a> is a plugin that utilizes the power of ImageMagick from within the RealBasic environment.</p> 256 256 257 257 <div style="margin: auto;"> … … 259 259 </div> 260 260 261 <p><a href="http://rmagick.rubyforge.org/" target=" 901993868">RMagick</a> is an interface between the Ruby programming language and the <a href="../www/magick-core.html">MagickCore</a> image processing libraries. Get started with RMagick by perusing the <a href="http://www.imagemagick.org/RMagick/doc/" target="858893446">documentation</a>.</p>262 263 <p><a href="http://magickwand.rubyforge.org/" target=" 216069997">MagickWand for Ruby</a> is an interface between the Ruby programming language and the <a href="../www/magick-wand.html">MagickWand</a> image processing libraries. Get started with MagickWand for PHP by perusing the <a href="http://magickwand.rubyforge.org/" target="16578658">documentation</a>.</p>264 265 <p><a href="http://rubyforge.org/projects/mini-magick" target="209 6436669">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p>266 267 <p><a href="http://quickmagick.rubyforge.org/quick_magick" target="1 390789710">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p>261 <p><a href="http://rmagick.rubyforge.org/" target="715061331">RMagick</a> is an interface between the Ruby programming language and the <a href="../www/magick-core.html">MagickCore</a> image processing libraries. Get started with RMagick by perusing the <a href="http://www.imagemagick.org/RMagick/doc/" target="1613755933">documentation</a>.</p> 262 263 <p><a href="http://magickwand.rubyforge.org/" target="762980588">MagickWand for Ruby</a> is an interface between the Ruby programming language and the <a href="../www/magick-wand.html">MagickWand</a> image processing libraries. Get started with MagickWand for PHP by perusing the <a href="http://magickwand.rubyforge.org/" target="15102020">documentation</a>.</p> 264 265 <p><a href="http://rubyforge.org/projects/mini-magick" target="2091035371">MiniMagick</a> is a Ruby wrapper for ImageMagick command line. MiniMagick gives you convenient access to all the command line options ImageMagick supports.</p> 266 267 <p><a href="http://quickmagick.rubyforge.org/quick_magick" target="103486418">QuickMagick</a> is a gem for easily accessing ImageMagick command line tools from Ruby programs.</p> 268 268 269 269 <div style="margin: auto;"> … … 271 271 </div> 272 272 273 <p><a href="http://tclmagick.sourceforge.net/" target=" 753534488">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p>273 <p><a href="http://tclmagick.sourceforge.net/" target="545361478">TclMagick</a> a native Tcl-extension to the ImageMagick MagickWand API.</p> 274 274 275 275 <div style="margin: auto;"> … … 277 277 </div> 278 278 279 <p><a href="http://code.google.com/p/remotemagick/" target="1 743722325">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p>279 <p><a href="http://code.google.com/p/remotemagick/" target="1876662508">RemoteMagick</a> is an XML-RPC web service that creates image thumbnails.</p> 280 280 281 281 </div> … … 286 286 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 287 287 <a href="../www/mailing-list.html">Mailing Lists</a> • 288 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>288 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 289 289 </span> 290 290 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/animate.html
r296 r300 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:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>186 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 187 187 </span> 188 188 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/annotate.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 323 323 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 324 324 <a href="../../www/mailing-list.html">Mailing Lists</a> • 325 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>325 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 326 326 </span> 327 327 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/blob.html
r292 r300 344 344 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 345 345 <a href="../../www/mailing-list.html">Mailing Lists</a> • 346 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>346 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 347 347 </span> 348 348 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/cache-view.html
r296 r300 577 577 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 578 578 <a href="../../www/mailing-list.html">Mailing Lists</a> • 579 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>579 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 580 580 </span> 581 581 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/cache.html
r296 r300 513 513 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 514 514 <a href="../../www/mailing-list.html">Mailing Lists</a> • 515 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>515 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 516 516 </span> 517 517 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/cipher.html
r296 r300 356 356 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 357 357 <a href="../../www/mailing-list.html">Mailing Lists</a> • 358 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>358 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 359 359 </span> 360 360 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/compare.html
r296 r300 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/composite.html
r288 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/deprecate.html
r288 r300 2598 2598 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 2599 2599 <a href="../../www/mailing-list.html">Mailing Lists</a> • 2600 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>2600 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 2601 2601 </span> 2602 2602 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/display.html
r292 r300 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:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>239 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 240 240 </span> 241 241 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/draw.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 379 379 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 380 380 <a href="../../www/mailing-list.html">Mailing Lists</a> • 381 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>381 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 382 382 </span> 383 383 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/drawing-wand.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/effect.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/enhance.html
r296 r300 696 696 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 697 697 <a href="../../www/mailing-list.html">Mailing Lists</a> • 698 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>698 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 699 699 </span> 700 700 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/exception.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 466 466 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 467 467 <a href="../../www/mailing-list.html">Mailing Lists</a> • 468 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>468 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 469 469 </span> 470 470 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/list.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->126 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/magick-deprecate.html
r296 r300 901 901 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 902 902 <a href="../../www/mailing-list.html">Mailing Lists</a> • 903 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>903 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 904 904 </span> 905 905 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/magick-property.html
r296 r300 1513 1513 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1514 1514 <a href="../../www/mailing-list.html">Mailing Lists</a> • 1515 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1515 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1516 1516 </span> 1517 1517 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/magick-wand.html
r296 r300 633 633 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 634 634 <a href="../../www/mailing-list.html">Mailing Lists</a> • 635 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>635 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 636 636 </span> 637 637 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/magick.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/memory.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> … … 405 405 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 406 406 <a href="../../www/mailing-list.html">Mailing Lists</a> • 407 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>407 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 408 408 </span> 409 409 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/monitor.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->126 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 127 127 </div> 128 128 <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:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>230 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 231 231 </span> 232 232 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/montage.html
r296 r300 254 254 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 255 255 <a href="../../www/mailing-list.html">Mailing Lists</a> • 256 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>256 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 257 257 </span> 258 258 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/paint.html
r296 r300 327 327 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 328 328 <a href="../../www/mailing-list.html">Mailing Lists</a> • 329 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>329 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 330 330 </span> 331 331 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/pixel-iterator.html
r296 r300 507 507 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 508 508 <a href="../../www/mailing-list.html">Mailing Lists</a> • 509 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>509 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 510 510 </span> 511 511 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/pixel-view.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/pixel-wand.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> … … 1398 1398 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1399 1399 <a href="../../www/mailing-list.html">Mailing Lists</a> • 1400 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1400 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1401 1401 </span> 1402 1402 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/profile.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/property.html
r292 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/registry.html
r292 r300 315 315 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 316 316 <a href="../../www/mailing-list.html">Mailing Lists</a> • 317 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>317 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 318 318 </span> 319 319 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/resource.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/segment.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 194 194 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 195 195 <a href="../../www/mailing-list.html">Mailing Lists</a> • 196 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>196 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 197 197 </span> 198 198 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/shear.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ -->126 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/api/stream.html
r288 r300 209 209 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 210 210 <a href="../../www/mailing-list.html">Mailing Lists</a> • 211 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>211 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 212 212 </span> 213 213 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/transform.html
r292 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 127 127 </div> 128 128 <div class="sponsor"> … … 498 498 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 499 499 <a href="../../www/mailing-list.html">Mailing Lists</a> • 500 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>500 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 501 501 </span> 502 502 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/api/version.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/architecture.html
r296 r300 238 238 <p>When the pixel cache is initialized, pixels are scaled from whatever bit depth they originated from to that required by the pixel cache. For example, a 1-channel 1-bit monochrome PBM image is scaled to a 4 channel 8-bit RGBA image, if you are using the Q8 version of ImageMagick, and 16-bit RGBA for the Q16 version. You can determine which version you have using the <a href="../www/command-line-options.html#version">‑version</a> option, as with this command: </p> 239 239 240 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6- 82009-10-01 Q16 http://www.imagemagick.org</span></p>240 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6-9 2009-10-01 Q16 http://www.imagemagick.org</span></p> 241 241 <p>As you can see, the convenience of the pixel cache sometimes comes with a trade-off in storage (e.g. storing a 1-bit monochrome image as 16-bit RGBA is wasteful) and speed (i.e. storing the entire image in memory is generally slower than accessing one scanline of pixels at a time).</p> 242 242 </div> … … 1221 1221 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1222 1222 <a href="../www/mailing-list.html">Mailing Lists</a> • 1223 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1223 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1224 1224 </span> 1225 1225 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/binary-releases.html
r296 r300 174 174 175 175 <tr> 176 <td valign="top">ImageMagick-6.5.6- 8.i386.rpm</td>177 <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/i386/ImageMagick-6.5.6- 8.i386.rpm">download</a></td>178 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/i386/ImageMagick-6.5.6- 8.i386.rpm">download</a></td>176 <td valign="top">ImageMagick-6.5.6-9.i386.rpm</td> 177 <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/i386/ImageMagick-6.5.6-9.i386.rpm">download</a></td> 178 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/i386/ImageMagick-6.5.6-9.i386.rpm">download</a></td> 179 179 <td valign="top">Fedora Core 10 i386 RPM</td> 180 180 </tr> 181 181 182 182 <tr> 183 <td valign="top">ImageMagick-6.5.6- 8.x86_64.rpm</td>184 <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/x86_64/ImageMagick-6.5.6- 8.x86_64.rpm">download</a></td>185 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/x86_64/ImageMagick-6.5.6- 8.x86_64.rpm">download</a></td>183 <td valign="top">ImageMagick-6.5.6-9.x86_64.rpm</td> 184 <td valign="top"><a href= "http://www.imagemagick.org/download/linux/fedora/x86_64/ImageMagick-6.5.6-9.x86_64.rpm">download</a></td> 185 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/fedora/x86_64/ImageMagick-6.5.6-9.x86_64.rpm">download</a></td> 186 186 <td valign="top">Fedora Core 10 x86_64 RPM</td> 187 187 </tr> … … 220 220 <p>ImageMagick RPM's are self-installing. Simply type the following command and you're ready to start using ImageMagick:</p> 221 221 222 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>rpm -Uvh ImageMagick-6.5.6- 8.i386.rpm</span></p>222 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>rpm -Uvh ImageMagick-6.5.6-9.i386.rpm</span></p> 223 223 <p>For other systems, create (or choose) a directory to install the package into and change to that directory, for example:</p> 224 224 … … 302 302 303 303 <p>The Windows version of ImageMagick is self-installing. Simply click on the appropriate version below and it will launch itself and ask you a few installation questions. Versions with <em>Q8</em> in the name are 8 bits-per-pixel component (e.g. 8-bit red, 8-bit green, etc.), whereas, <em>Q16</em> in the filename are 16 bits-per-pixel component. A Q16 version permits you to read or write 16-bit images without losing precision but requires twice as much resources as the Q8 version. Versions with <em>dll</em> in the filename include ImageMagick libraries as <a href="http://www.answers.com/topic/dll">dynamic link libraries</a>. If you are not sure which version is appropriate, choose 304 <a href='http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6- 8-Q16-windows-dll.exe' >ImageMagick-6.5.6-8-Q16-windows-dll.exe</a>.</p>304 <a href='http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-dll.exe' >ImageMagick-6.5.6-9-Q16-windows-dll.exe</a>.</p> 305 305 306 306 <table class="doc"> … … 314 314 315 315 <tr> 316 <td valign="top">ImageMagick-6.5.6- 8-Q16-windows-dll.exe</td>317 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6- 8-Q16-windows-dll.exe">download</a></td>318 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6- 8-Q16-windows-dll.exe">download</a></td>316 <td valign="top">ImageMagick-6.5.6-9-Q16-windows-dll.exe</td> 317 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-dll.exe">download</a></td> 318 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q16-windows-dll.exe">download</a></td> 319 319 <td valign="top">Win32 dynamic at 16 bits-per-pixel</td> 320 320 </tr> 321 321 322 322 <tr> 323 <td valign="top">ImageMagick-6.5.6- 8-Q16-windows-static.exe</td>324 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6- 8-Q16-windows-static.exe">download</a></td>325 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6- 8-Q16-windows-static.exe">download</a></td>323 <td valign="top">ImageMagick-6.5.6-9-Q16-windows-static.exe</td> 324 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-static.exe">download</a></td> 325 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q16-windows-static.exe">download</a></td> 326 326 <td valign="top">Win32 static at 16 bits-per-pixel</td> 327 327 </tr> 328 328 329 329 <tr> 330 <td valign="top">ImageMagick-6.5.6- 8-Q16-windows-x64-static.exe</td>331 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6- 8-Q16-windows-x64-static.exe">download</a></td>332 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6- 8-Q16-windows-x64-static.exe">download</a></td>330 <td valign="top">ImageMagick-6.5.6-9-Q16-windows-x64-static.exe</td> 331 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q16-windows-x64-static.exe">download</a></td> 332 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q16-windows-x64-static.exe">download</a></td> 333 333 <td valign="top">x64 static at 16 bits-per-pixel</td> 334 334 </tr> 335 335 336 336 <tr> 337 <td valign="top">ImageMagick-6.5.6- 8-Q8-windows-dll.exe</td>338 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6- 8-Q8-windows-dll.exe">download</a></td>339 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6- 8-Q8-windows-dll.exe">download</a></td>337 <td valign="top">ImageMagick-6.5.6-9-Q8-windows-dll.exe</td> 338 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q8-windows-dll.exe">download</a></td> 339 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q8-windows-dll.exe">download</a></td> 340 340 <td valign="top">Win32 dynamic at 8 bits-per-pixel</td> 341 341 </tr> 342 342 343 343 <tr> 344 <td valign="top">ImageMagick-6.5.6- 8-Q8-windows-static.exe</td>345 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6- 8-Q8-windows-static.exe">download</a></td>346 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6- 8-Q8-windows-static.exe">download</a></td>344 <td valign="top">ImageMagick-6.5.6-9-Q8-windows-static.exe</td> 345 <td valign="top"><a href= "http://www.imagemagick.org/download/binaries/ImageMagick-6.5.6-9-Q8-windows-static.exe">download</a></td> 346 <td valign="top"><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-6.5.6-9-Q8-windows-static.exe">download</a></td> 347 347 <td valign="top">Win32 static at 8 bits-per-pixel</td> 348 348 </tr> … … 374 374 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 375 375 <a href="../www/mailing-list.html">Mailing Lists</a> • 376 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>376 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 377 377 </span> 378 378 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/changelog.html
r296 r300 152 152 <div class="main"> 153 153 154 <ul><dt>2009-10-03 6.5.6-8 Nick Wellnhofer <wellnhofer@aevum...></dt> 154 <ul><dt>2009-10-04 6.5.6-9 Cristy <quetzlzacatenango@image...></dt> 155 <li> Use GetCacheViewAuthenticPixels() rather than QueueCacheViewAuthenticPixels() for the CopyComposite OP optimization.</li><br /> 156 <dt>2009-10-03 6.5.6-8 Nick Wellnhofer <wellnhofer@aevum...></dt> 155 157 <li> Add missing libraries to the LIBADD entries in coders/Makefile.am, filters/Makefile.am and wand/Makefile.am.</li> 156 158 <li> Use LIBS rather than LDFLAGS in configure.ac for the Freetype delegate library.</li><br /> … … 1257 1259 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1258 1260 <a href="../www/mailing-list.html">Mailing Lists</a> • 1259 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1261 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1260 1262 </span> 1261 1263 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/cipher.html
r296 r300 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.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 128 128 </div> 129 129 <div class="sponsor"> -
ImageMagick/trunk/www/color.html
r292 r300 125 125 <div class="sponsbox"> 126 126 <div class="sponsor"> 127 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->127 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 128 128 </div> 129 129 <div class="sponsor"> … … 5023 5023 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 5024 5024 <a href="../www/mailing-list.html">Mailing Lists</a> • 5025 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>5025 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 5026 5026 </span> 5027 5027 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/command-line-processing.html
r288 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/command-line-tools.html
r296 r300 154 154 <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> 155 155 156 <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="1 940742972">gimp</a> or <a href="http://www.adobe.com" target="1715473380">Photoshop</a>. However, a GUI is not always convenient. Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image. For these types of operations, the command-line image processing utility is appropriate.</p>156 <p>ImageMagick includes a number of command-line utilities for manipulating images. Most of you are probably accustomed to editing images one at a time with a graphical user interface (GUI) with such programs as <a href="http://www.gimp.org" target="115054636">gimp</a> or <a href="http://www.adobe.com" target="2000875006">Photoshop</a>. However, a GUI is not always convenient. Suppose you want to process an image dynamically from a web script or you want to apply the same operations to many images or repeat a specific operation at different times to the same or different image. For these types of operations, the command-line image processing utility is appropriate.</p> 157 157 158 158 <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> 159 159 160 <p>In the paragraphs below, find a short description for each command-line tool. Click on the program name to get details about the program usage and a list of command-line options that alters how the program behaves. If you are just getting acquainted with ImageMagick, start with the <a href="#convert">convert</a> program. Be sure to peruse Anthony Thyssen's tutorial on how to use ImageMagick utilities to <a href="http://www.imagemagick.org/Usage/" target=" 1276075228">convert, compose, or edit</a> images from the command-line.</p>160 <p>In the paragraphs below, find a short description for each command-line tool. Click on the program name to get details about the program usage and a list of command-line options that alters how the program behaves. If you are just getting acquainted with ImageMagick, start with the <a href="#convert">convert</a> program. Be sure to peruse Anthony Thyssen's tutorial on how to use ImageMagick utilities to <a href="http://www.imagemagick.org/Usage/" target="2061591059">convert, compose, or edit</a> images from the command-line.</p> 161 161 162 162 <div style="margin: auto;"> … … 233 233 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 234 234 <a href="../www/mailing-list.html">Mailing Lists</a> • 235 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>235 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 236 236 </span> 237 237 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/compare.html
r296 r300 397 397 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 398 398 <a href="../www/mailing-list.html">Mailing Lists</a> • 399 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>399 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 400 400 </span> 401 401 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/contact.html
r296 r300 169 169 </ul> 170 170 171 <p>You will receive a reply within 24-48 hours if your submission is any of these topics. For all other topics, do not expect a reply. Instead post your message to the <a href="http://www.imagemagick.org/discourse-server" target=" 1378790826">discourse server</a> or the <a href="../www/mailing-list.html">mailing list</a>.</p>171 <p>You will receive a reply within 24-48 hours if your submission is any of these topics. For all other topics, do not expect a reply. Instead post your message to the <a href="http://www.imagemagick.org/discourse-server" target="823643252">discourse server</a> or the <a href="../www/mailing-list.html">mailing list</a>.</p> 172 172 <fieldset> 173 173 <legend>Contact the Wizards</legend> -
ImageMagick/trunk/www/convert.html
r296 r300 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><!-- 20090501000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 1261 1261 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1262 1262 <a href="../www/mailing-list.html">Mailing Lists</a> • 1263 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1263 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1264 1264 </span> 1265 1265 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/download.html
r296 r300 154 154 <p class="navigation-index"></p> 155 155 <p>ImageMagick source and binary distributions are available from a variety of FTP and Web mirrors around the world listed below. ImageMagick stable and development source releases are also available from <a href="../www/subversion.html">Subversion</a>. Before you download, you may want to review recent <a href="../www/changelog.html">changes</a> to the ImageMagick distribution.</p> 156 <p>The latest release of ImageMagick is version 6.5.6- 8.</p>156 <p>The latest release of ImageMagick is version 6.5.6-9.</p> 157 157 <dl class="doc"> 158 158 <dt class="doc">Australia</dt> … … 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/escape.html
r296 r300 442 442 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 443 443 <a href="../www/mailing-list.html">Mailing Lists</a> • 444 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>444 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 445 445 </span> 446 446 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/examples.html
r296 r300 152 152 <div class="main"> 153 153 154 <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="1 477298571">examples.pl</a>.</p><br />154 <p>Here are a few examples of what you can do with an image using ImageMagick from the command line, a program interface, or script. You can generate this image yourself with this <a href="../www/perl-magick.html">PerlMagick</a> script, <a href="../www/source/examples.pl" target="1911247333">examples.pl</a>.</p><br /> 155 155 156 156 <div class="viewport"> … … 165 165 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 166 166 <a href="../www/mailing-list.html">Mailing Lists</a> • 167 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>167 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 168 168 </span> 169 169 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/fx.html
r292 r300 467 467 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 468 468 <a href="../www/mailing-list.html">Mailing Lists</a> • 469 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>469 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 470 470 </span> 471 471 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/high-dynamic-range.html
r292 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 183 183 <p>To verify HDRI is properly configured, look for "HDRI" in the version string:</p> 184 184 185 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6- 82009-10-01 Q16 HDRI http://www.imagemagick.org</span></p>185 <p class='crt'><span class="crtprompt"> $magick> </span><span class='crtin'>identify -version</span><span class='crtout'>Version: ImageMagick 6.5.6-9 2009-10-01 Q16 HDRI http://www.imagemagick.org</span></p> 186 186 </div> 187 187 -
ImageMagick/trunk/www/history.html
r296 r300 163 163 <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> 164 164 165 <p>I did not work alone for long. Anthony Thyssen contacted me about deficiencies in the ImageMagick command line programs. He pointed out that the command line was confusing when dealing with more than one image. He suggested an orderly, well-defined method for dealing with the command line, and this became ImageMagick version 6 (the current release). His efforts are detailed on his web pages, <a href="http://www.imagemagick.org/Usage/" target=" 2660943">Examples of ImageMagick Usage</a>. I highly recommend that you peruse his site. He has illustrated the power of ImageMagick in ways that even I did not know were possible.</p>165 <p>I did not work alone for long. Anthony Thyssen contacted me about deficiencies in the ImageMagick command line programs. He pointed out that the command line was confusing when dealing with more than one image. He suggested an orderly, well-defined method for dealing with the command line, and this became ImageMagick version 6 (the current release). His efforts are detailed on his web pages, <a href="http://www.imagemagick.org/Usage/" target="1936219239">Examples of ImageMagick Usage</a>. I highly recommend that you peruse his site. He has illustrated the power of ImageMagick in ways that even I did not know were possible.</p> 166 166 167 167 <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> … … 176 176 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 177 177 <a href="../www/mailing-list.html">Mailing Lists</a> • 178 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>178 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 179 179 </span> 180 180 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/identify.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 222 222 Filesize: 3.97266kb <br/> 223 223 Number pixels: 3.14453kb <br/> 224 Version: ImageMagick 6.5.6- 82009-10-01 Q16 http://www.imagemagick.org</span></p>224 Version: ImageMagick 6.5.6-9 2009-10-01 Q16 http://www.imagemagick.org</span></p> 225 225 <p>To get the print size in inches of an image at 72 DPI, use:</p> 226 226 -
ImageMagick/trunk/www/import.html
r296 r300 496 496 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 497 497 <a href="../www/mailing-list.html">Mailing Lists</a> • 498 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>498 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 499 499 </span> 500 500 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/license.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> … … 275 275 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 276 276 <a href="../www/mailing-list.html">Mailing Lists</a> • 277 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>277 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 278 278 </span> 279 279 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/links.html
r296 r300 160 160 </div> 161 161 <ul> 162 <dt><a href="http://www.imagemagick.org/Usage/" target=" 951163468">Examples of ImageMagick Usage</a></dt>163 <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="1 470334522">Advanced image editing from the command line with ImageMagick</a></dt>164 <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target=" 2040256510">Best Open Source Software for the Macintosh</a></dt>165 <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target=" 1055085231">Command-line animations using ImageMagick</a></dt>166 <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="1 636926421">Convert Images with Open Source ImageMagick</a></dt>167 <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target=" 420345466">Enchanting Pictures with ImageMagick</a></dt>168 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1 017193527">Graphics from the Command Line</a></dt>169 <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target=" 46206454">Image creation, conversion and manipulation with ImageMagick</a></dt>170 <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target=" 475283858">Image Editing for Power Users on the Mac</a></dt>171 <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target=" 1575513128">ImageMagick: A graphics wizard for the command line</a></dt>172 <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target=" 2108632825">ImageMagick command line examples - part 1</a></dt>173 <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target=" 953657430">ImageMagick command line examples - part 2</a></dt>174 <dt><a href="http://www.rabuser.info/jmagick.html" target="1 308074626">ImageMagick & Java</a></dt>175 <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="1 76551860">ImageMagick, Part One</a></dt>176 <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target=" 1213339532">ImageMagick, Part Two</a></dt>177 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target=" 1141061495">More Graphics from the Command Line</a></dt>178 <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target=" 1943367520">Ubuntu Firefox Themes</a></dt>162 <dt><a href="http://www.imagemagick.org/Usage/" target="2088316950">Examples of ImageMagick Usage</a></dt> 163 <dt><a href="http://software.newsforge.com/article.pl?sid=05/04/29/1358220" target="13863096">Advanced image editing from the command line with ImageMagick</a></dt> 164 <dt><a href="http://www.applematters.com/index.html/section/comments/1113/" target="778659528">Best Open Source Software for the Macintosh</a></dt> 165 <dt><a href="http://software.newsforge.com/article.pl?sid=05/07/01/1959251" target="298209209">Command-line animations using ImageMagick</a></dt> 166 <dt><a href="http://www.builderau.com.au/program/linux/soa/Convert_images_with_open_source_ImageMagick/0,339028299,339271774,00.htm" target="1182288660">Convert Images with Open Source ImageMagick</a></dt> 167 <dt><a href="http://polishlinux.org/apps/graphics/enchanting-pictures-with-imagemagick/" target="1054206174">Enchanting Pictures with ImageMagick</a></dt> 168 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf/?ca=dnt-428" target="1909324005">Graphics from the Command Line</a></dt> 169 <dt><a href="http://www.ars-informatica.ca/article.html?article=22" target="2108911522">Image creation, conversion and manipulation with ImageMagick</a></dt> 170 <dt><a href="http://www.applematters.com/index.html/section/comments/2104/" target="1835185877">Image Editing for Power Users on the Mac</a></dt> 171 <dt><a href="http://applications.linux.com/article.pl?sid=05/03/29/1525217" target="715426805">ImageMagick: A graphics wizard for the command line</a></dt> 172 <dt><a href="http://www.ioncannon.net/linux/81/5-imagemagick-command-line-examples-part-1/" target="1105134420">ImageMagick command line examples - part 1</a></dt> 173 <dt><a href="http://www.ioncannon.net/linux/72/5-imagemagick-command-line-examples-part-2/" target="668655310">ImageMagick command line examples - part 2</a></dt> 174 <dt><a href="http://www.rabuser.info/jmagick.html" target="1031609228">ImageMagick & Java</a></dt> 175 <dt><a href="http://www.jpeek.com/articles/linuxmag/0606.pdf" target="1338783448">ImageMagick, Part One</a></dt> 176 <dt><a href="http://www.jpeek.com/articles/linuxmag/0607.pdf" target="336372605">ImageMagick, Part Two</a></dt> 177 <dt><a href="http://www-106.ibm.com/developerworks/library/l-graf2/?ca=dgr-lnxw15GraphicsLine" target="572764192">More Graphics from the Command Line</a></dt> 178 <dt><a href="http://www.ffnn.nl/pages/projects/ubuntu-firefox-themes.html" target="371580483">Ubuntu Firefox Themes</a></dt> 179 179 </ul> 180 180 … … 184 184 185 185 <ul> 186 <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target=" 807860880">Create Mosaic Images with Perl and ImageMagick</a></dt>187 <dt><a href="http://builder.com.com/5100-6371-5924990.html" target=" 69533382">Convert images for printing with MagickWand for PHP</a></dt>188 <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target=" 396299769">Create Dynamic Images with ImageMagick</a></dt>189 <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="1 828165735">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt>190 <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target=" 1371355629">How to compile ImageMagick for PHP by hand</a></dt>191 <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target=" 1204770030">MagickWand Examples in C</a></dt>192 <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target=" 307970038">PHP Extensions: MagickWand for PHP</a></dt>193 <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="150 357617">PHP frontend to ImageMagick</a></dt>194 <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target=" 28743435">PHP ImageMagick MagickWand Examples</a></dt>195 <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target=" 578784628">RVG - Ruby Vector Graphics</a></dt>196 <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1 673906397">Security Images with PHP and ImageMagick</a></dt>197 <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1 144158757">Simple Uses of PHP and ImageMagick</a></dt>186 <dt><a href="http://www-128.ibm.com/developerworks/openwww/source/library/os-mosaic/?ca=dgr-lnxw09MosaicImages" target="923532534">Create Mosaic Images with Perl and ImageMagick</a></dt> 187 <dt><a href="http://builder.com.com/5100-6371-5924990.html" target="863136572">Convert images for printing with MagickWand for PHP</a></dt> 188 <dt><a href="http://www.sitepoint.com/article/dynamic-images-imagemagick" target="207432497">Create Dynamic Images with ImageMagick</a></dt> 189 <dt><a href="http://www.clearimageonline.com/builder/pdf/imageservices.pdf" target="1726371418">Image Services Add-on for Aestiva's HTML/OS and H2O</a></dt> 190 <dt><a href="http://www.ioncannon.net/php/75/how-to-compile-imagemagick-for-php-by-hand/" target="481809795">How to compile ImageMagick for PHP by hand</a></dt> 191 <dt><a href="http://members.shaw.ca/el.supremo/MagickWand/" target="851093783">MagickWand Examples in C</a></dt> 192 <dt><a href="http://www.html-editors.com/contest/1/82-read.html" target="1374709890">PHP Extensions: MagickWand for PHP</a></dt> 193 <dt><a href="http://www.evolt.org/article/PHP_frontend_to_ImageMagick/17/55650/" target="1501411565">PHP frontend to ImageMagick</a></dt> 194 <dt><a href="http://www.ioncannon.net/php/61/php-imagemagick-magickwand-examples/" target="11403944">PHP ImageMagick MagickWand Examples</a></dt> 195 <dt><a href="http://www.imagemagick.org/RMagick/doc/rvgtut.html" target="1534899984">RVG - Ruby Vector Graphics</a></dt> 196 <dt><a href="http://www.devshed.com/c/a/PHP/Security-Images-with-PHP-and-ImageMagick/" target="1276495291">Security Images with PHP and ImageMagick</a></dt> 197 <dt><a href="http://www.rubblewebs.co.uk/imagemagick/" target="1050042170">Simple Uses of PHP and ImageMagick</a></dt> 198 198 </ul> 199 199 … … 203 203 204 204 <ul> 205 <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target=" 1323316274">Installing ImageMagick on Mac OS X</a></dt>206 <dt><a href="http://www.cloudgoessocial.net/2009/06/09/imagemagick-on-iphone-with-jpeg-png/" target=" 1290737576">ImageMagick on iPhone</a></dt>207 <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target=" 2095322225">ImageMagick on iPhone - Xcode</a></dt>205 <dt><a href="http://beta.bigmedium.com/blog/imagemagick-install-osx.shtml" target="547453956">Installing ImageMagick on Mac OS X</a></dt> 206 <dt><a href="http://www.cloudgoessocial.net/2009/06/09/imagemagick-on-iphone-with-jpeg-png/" target="803728224">ImageMagick on iPhone</a></dt> 207 <dt><a href="http://www.cloudgoessocial.net/2009/07/09/imagemagick-on-iphone-xcode/" target="990875472">ImageMagick on iPhone - Xcode</a></dt> 208 208 </ul> 209 209 … … 213 213 214 214 <ul> 215 <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target=" 646167148">Down-sampling Methods</a></dt>215 <dt><a href="http://www.xs4all.nl/%7Ebvdwolf/main/foto/down_sample/down_sample.htm" target="561317052">Down-sampling Methods</a></dt> 216 216 </ul> 217 217 … … 220 220 </div> 221 221 <ul> 222 <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="1 183510438">Book review: ImageMagick Tricks</a></dt>223 <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1 002923808">The Definitive Guide To ImageMagick</a></dt>222 <dt><a href="http://www.linux.com/article.pl?sid=06/09/29/1917210" target="1582387753">Book review: ImageMagick Tricks</a></dt> 223 <dt><a href="http://books.slashdot.org/books/06/03/13/1442239.shtml" target="1289084681">The Definitive Guide To ImageMagick</a></dt> 224 224 </ul> 225 225 … … 228 228 </div> 229 229 <ul> 230 <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="1 35609921">ImageMagick Users List</a></dt>231 <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target=" 1603855904">ImageMagick Developers List</a></dt>232 <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target=" 2020117336">ImageMagick Bugs List</a></dt>230 <dt><a href="http://www.archivesat.com/ImageMagick_Users_List/" target="1743605712">ImageMagick Users List</a></dt> 231 <dt><a href="http://www.archivesat.com/ImageMagick_Developer_List/" target="489110279">ImageMagick Developers List</a></dt> 232 <dt><a href="http://www.archivesat.com/ImageMagick_Defect_Support/" target="1050925038">ImageMagick Bugs List</a></dt> 233 233 </ul> 234 234 … … 238 238 <dl> 239 239 <dt>Denmark</dt> 240 <dd><a href="http://imagemagick.europnews.de" target="1 81816375">http://imagemagick.europnews.de</a></dd><br />240 <dd><a href="http://imagemagick.europnews.de" target="1705033587">http://imagemagick.europnews.de</a></dd><br /> 241 241 <dt>Germany</dt> 242 <dd><a href="http://imagemagick.linux-mirror.org" target=" 2079139763">http://imagemagick.linux-mirror.org</a></dd><br />242 <dd><a href="http://imagemagick.linux-mirror.org" target="176812508">http://imagemagick.linux-mirror.org</a></dd><br /> 243 243 <dt>Ireland</dt> 244 <dd><a href="http://imagemagick.oss-mirror.org" target="1 448146816">http://imagemagick.oss-mirror.org</a></dd><br />244 <dd><a href="http://imagemagick.oss-mirror.org" target="1766351844">http://imagemagick.oss-mirror.org</a></dd><br /> 245 245 <dt>United States</dt> 246 <dd><a href="http://www.imagemagick.org" target=" 142965553">http://www.imagemagick.org</a></dd>246 <dd><a href="http://www.imagemagick.org" target="662684359">http://www.imagemagick.org</a></dd> 247 247 </dl> 248 248 … … 252 252 253 253 <ul> 254 <dt><a href="http://gmic.sourceforge.net/" target="8 85313545">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt>255 <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="6 08737795">Image Commander</a>: bulk picture processing with a GUI</dt>254 <dt><a href="http://gmic.sourceforge.net/" target="845467818">G'MIC</a>: convert, manipulate and visualize generic 1D/2D/3D multi-spectral image files</dt> 255 <dt><a href="http://www.beesoft.org/index.html?id=imagicom" target="650477424">Image Commander</a>: bulk picture processing with a GUI</dt> 256 256 </ul> 257 257 … … 260 260 </div> 261 261 <ul> 262 <dt><a href="http://www.wizards-toolkit.org" target=" 319517413">Wizard's Toolkit</a></dt>263 <dt><a href="http://www.multipole.org" target=" 2098653077">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt>262 <dt><a href="http://www.wizards-toolkit.org" target="2001467808">Wizard's Toolkit</a></dt> 263 <dt><a href="http://www.multipole.org" target="1181840424">Computational Simulation of Multi-Body Interactions with O(n) Scaling</a></dt> 264 264 </ul> 265 265 -
ImageMagick/trunk/www/magick-vector-graphics.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/mailing-list.html
r296 r300 155 155 156 156 <div style="margin: auto;"> 157 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target=" 1123307674">Magick Users</a></h2>157 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-users" target="838815120">Magick Users</a></h2> 158 158 </div> 159 159 … … 161 161 162 162 <div style="margin: auto;"> 163 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target=" 141332949">Magick Developers</a></h2>163 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-developers" target="63016602">Magick Developers</a></h2> 164 164 </div> 165 165 … … 167 167 168 168 <div style="margin: auto;"> 169 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target=" 295906815">Magick Bugs</a></h2>169 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-bugs" target="170585385">Magick Bugs</a></h2> 170 170 </div> 171 171 … … 173 173 174 174 <div style="margin: auto;"> 175 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target=" 1834948415">Magick Announce</a></h2>175 <h2><a href="http://www.imagemagick.org/mailman/listinfo/magick-announce" target="239556186">Magick Announce</a></h2> 176 176 </div> 177 177 … … 185 185 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 186 186 <a href="../www/mailing-list.html">Mailing Lists</a> • 187 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>187 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 188 188 </span> 189 189 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/miff.html
r280 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.hygi.de">Reinigungsmittel</a><!-- 201002000400+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/mirrors.html
r296 r300 155 155 <dl class="magick-mirror"> 156 156 <dt>France</dt> 157 <dd><a href="http://imagemagick.europnews.de/" target="1 607798299">http://imagemagick.europnews.de/</a></dd><br />157 <dd><a href="http://imagemagick.europnews.de/" target="1559436707">http://imagemagick.europnews.de/</a></dd><br /> 158 158 <dt>Unites States</dt> 159 <dd><a href="http://www.imagemagick.org/" target=" 1779081055">http://www.imagemagick.org/</a></dd>159 <dd><a href="http://www.imagemagick.org/" target="702202216">http://www.imagemagick.org/</a></dd> 160 160 </dl> 161 161 <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> … … 168 168 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 169 169 <a href="../www/mailing-list.html">Mailing Lists</a> • 170 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>170 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 171 171 </span> 172 172 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/mogrify.html
r288 r300 1259 1259 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 1260 1260 <a href="../www/mailing-list.html">Mailing Lists</a> • 1261 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>1261 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 1262 1262 </span> 1263 1263 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/montage.html
r296 r300 699 699 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 700 700 <a href="../www/mailing-list.html">Mailing Lists</a> • 701 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>701 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 702 702 </span> 703 703 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/resources.html
r296 r300 406 406 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 407 407 <a href="../www/mailing-list.html">Mailing Lists</a> • 408 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>408 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 409 409 </span> 410 410 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/search.html
r292 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200-->126 <a href="http://www.buerodruck.de/stempel-service/index.html">Stempel bestellen</a><!-- 200910000035+ --> 127 127 </div> 128 128 <div class="sponsor"> -
ImageMagick/trunk/www/sitemap.html
r296 r300 163 163 <dd><a href="../www/index.html">Introduction</a>: convert, edit, and compose images from the command-line or program interface.</dd> 164 164 <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> 165 <dd><a href="http://www.imagemagick.org/Usage/" target=" 889171836">Anthony Thyssen's examples of ImageMagick usage</a>: a comprehensive tutorial of using ImageMagick from the command line.</dd>165 <dd><a href="http://www.imagemagick.org/Usage/" target="1475425552">Anthony Thyssen's examples of ImageMagick usage</a>: a comprehensive tutorial of using ImageMagick from the command line.</dd> 166 166 <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> 167 167 <dd><a href="../www/resources.html">Resources</a>: ImageMagick depends on external resources including configuration files, loadable modules, fonts, and environment variables.</dd> … … 177 177 <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> 178 178 <ul> 179 <dd><a href="http://www.imagemagick.org/download" target=" 999145295">Unix source</a>: Unix source distributions.</dd>180 <dd><a href="http://www.imagemagick.org/download/windows" target=" 723098820">Windows source</a>: Windows source distributions.</dd>181 <dd><a href="http://www.imagemagick.org/download/binaries" target=" 1445430945">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd>179 <dd><a href="http://www.imagemagick.org/download" target="1278670951">Unix source</a>: Unix source distributions.</dd> 180 <dd><a href="http://www.imagemagick.org/download/windows" target="1458336295">Windows source</a>: Windows source distributions.</dd> 181 <dd><a href="http://www.imagemagick.org/download/binaries" target="624367800">Unix and Windows binaries</a>: Unix and Windows binary distributions.</dd> 182 182 <dd><a href="../www/subversion.html">Subversion repository</a>: stable and development source releases.</dd> 183 <dd><a href="http://www.magickwand.org/" target="8 9977546">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>184 <dd><a href="http://www.imagemagick.org/download/delegates" target=" 2083026310">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd>183 <dd><a href="http://www.magickwand.org/" target="84582885">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd> 184 <dd><a href="http://www.imagemagick.org/download/delegates" target="717444054">Delegate libraries</a>: ImageMagick depends on a number of optional delegate libraries to extend its functionality.</dd> 185 185 </ul> 186 186 </dl> … … 221 221 <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> 222 222 <dd><a href="../www/fx.html">Fx</a>: apply a mathematical expression to an image or image channels.</dd> 223 <dd><a href="http://www.fmwconcepts.com/imagemagick/" target=" 102073700">Fred's ImageMagick Scripts</a>: a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd>223 <dd><a href="http://www.fmwconcepts.com/imagemagick/" target="296954923">Fred's ImageMagick Scripts</a>: a plethora of command-line scripts that perform geometric transforms, blurs, sharpens, edging, noise removal, and color manipulations.</dd> 224 224 </dl> 225 225 … … 231 231 <dd><a href="../www/api.html">Program interfaces</a>: application programming interfaces.</dd> 232 232 <ul> 233 <dd><a href="http://www.imagemagick.org/ChMagick" target=" 236449655">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="700463759">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd>234 <dd><a href="http://common-lisp.net/project/cl-magick/" target=" 51561262">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd>235 <dd><a href="https://gna.org/projects/g2f/" target=" 1016194645">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd>236 <dd><a href="http://www.imagemagick.org/Magick++" target="1 507563536">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd>237 <dd><a href="http://pecl.html.net/package/imagick" target=" 764486091">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd>238 <dd><a href="http://www.yeo.id.au/jmagick/" target="1 035596461">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd>233 <dd><a href="http://www.imagemagick.org/ChMagick" target="75994825">ChMagick</a>: is a <a href="http://www.softintegration.com/" target="138449277">Ch</a> an embeddable MagickCore C/C++ interpreter for cross-platform scripting.</dd> 234 <dd><a href="http://common-lisp.net/project/cl-magick/" target="965387274">CL-Magick</a>: provides a Common Lisp interface to the ImageMagick library.</dd> 235 <dd><a href="https://gna.org/projects/g2f/" target="25283007">G2F</a>: implements an Ada 95 binding to a subset of the low-level MagickCore library.</dd> 236 <dd><a href="http://www.imagemagick.org/Magick++" target="1465400971">Magick++</a>: provides an object-oriented C++ interface to ImageMagick.</dd> 237 <dd><a href="http://pecl.html.net/package/imagick" target="1949647065">IMagick</a>: is a native PHP extension to create and modify images using the ImageMagick API.</dd> 238 <dd><a href="http://www.yeo.id.au/jmagick/" target="1572842895">JMagick</a>: provides an object-oriented Java interface to ImageMagick.</dd> 239 239 <dd><a href="../www/magick-core.html">MagickCore</a>: C API, recommended for wizard-level developers.</dd> 240 240 <dd><a href="../www/magick-wand.html">MagickWand</a>: convert, compose, and edit images from the C language.</dd> 241 <dd><a href="http://www.magickwand.org/" target=" 692586301">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd>242 <dd><a href="http://code.google.com/p/nmagick" target=" 153260947">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd>243 <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target=" 872479369">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd>241 <dd><a href="http://www.magickwand.org/" target="1572461883">MagickWand for PHP</a>: a native PHP-extension to the ImageMagick MagickWand API.</dd> 242 <dd><a href="http://code.google.com/p/nmagick" target="402102050">nMagick</a>: is a port of the ImageMagick library to the haXe and Neko platforms.</dd> 243 <dd><a href="http://wiki.lazarus.freepascal.org/index.html/PascalMagick" target="291711713">PascalMagick</a>: a Pascal binding for the MagickWand API and also the low-level MagickCore library.</dd> 244 244 <dd><a href="../www/perl-magick.html">PerlMagick</a>: convert, compose, and edit images from the Perl language.</dd> 245 <dd><a href="http://www.imagemagick.org/download/python/" target=" 2063702174">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd>246 <dd><a href="http://rmagick.rubyforge.org/" target="1 042519416">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd>247 <dd><a href="http://tclmagick.sourceforge.net/" target=" 2033730762">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd>245 <dd><a href="http://www.imagemagick.org/download/python/" target="1813078939">PythonMagick</a>: an object-oriented Python interface to ImageMagick.</dd> 246 <dd><a href="http://rmagick.rubyforge.org/" target="1358814093">RMagick</a>: is an interface between the Ruby programming language and ImageMagick.</dd> 247 <dd><a href="http://tclmagick.sourceforge.net/" target="196024793">TclMagick</a>: a native Tcl-extension to the ImageMagick MagickWand API.</dd> 248 248 </ul> 249 249 </dl> … … 263 263 264 264 <dl> 265 <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=" 545821720">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd>266 <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=" 555309702">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd>265 <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&camp=1789&tag=imagemagick-20&creative=9325&path=tg/detail/-/1590595904/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="1128968254">Definitive Guide to ImageMagick</a>: this book explains ImageMagick in a practical, learn-by-example fashion.</dd> 266 <dd><a href="http://www.amazon.com/exec/obidos/redirect?link_code=ur2&camp=1789&tag=imagemagick-20&creative=9325&path=tg/detail/-/1904811868/qid=1123551819/sr=8-1/ref=pd_bbs_sbs_1?v=glance%26s=books%26n=507846" target="2124992614">ImageMagick Tricks</a>: this book is packed with examples of photo manipulations, logo creation, animations, and complete web projects.</dd> 267 267 <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> 268 268 <dd><a href="../www/mailing-list.html">Mailing list</a>: get help from fellow ImageMagick users and developers, post to these mailing lists.</dd> … … 275 275 276 276 <dl> 277 <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target=" 35542994">Report bugs and vulnerabilities</a>: our highest priority is to fix security defects and bug reports, usually within 48 hours of your report. The bug discourse server requires that you register. If you do not want to register, you can <a href="contact.html">contact the ImageMagick developers</a> with a convenient web form.</dd>277 <dd><a href="http://www.imagemagick.org/discourse-server/viewforum.html?f=3" target="230119486">Report bugs and vulnerabilities</a>: our highest priority is to fix security defects and bug reports, usually within 48 hours of your report. The bug discourse server requires that you register. If you do not want to register, you can <a href="contact.html">contact the ImageMagick developers</a> with a convenient web form.</dd> 278 278 <dd><a href="../www/sponsors.html">Sponsor ImageMagick</a>: contribute bug fixes, enhancements, hardware, funds, etc. to ensure the ImageMagick project thrives.</dd> 279 279 <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> … … 299 299 </div> 300 300 <dl> 301 <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target=" 224561458">Fast Fourier Transforms Toolkit</a></dd>302 <dd><a href="http://www.fmwconcepts.com/misc_tests/FFT_tests/" target="1 851953270">Tests Of FFT Processing</a></dd>301 <dd><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/sandbox" target="372739043">Fast Fourier Transforms Toolkit</a></dd> 302 <dd><a href="http://www.fmwconcepts.com/misc_tests/FFT_tests/" target="1423117402">Tests Of FFT Processing</a></dd> 303 303 </dl> 304 304 … … 311 311 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 312 312 <a href="../www/mailing-list.html">Mailing Lists</a> • 313 <a href="http:// www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a>313 <a href="http://studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 314 314 </span> 315 315 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/sponsors.html
r296 r300 124 124 <div class="sponsbox"> 125 125 <div class="sponsor"> 126 <a href="http://www. hygi.de">Reinigungsmittel</a><!-- 201002000400+-->126 <a href="http://www.abi-stoff.de/abizeitung/" title="Abibuch">Abizeitung</a><!-- 20090501000200 --> 127 127 </div> 128 128 <div class="sponsor"> … … 240 240 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 241 241 <a href="../www/mailing-list.html">Mailing Lists</a> • 242 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>242 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 243 243 </span> 244 244 <span id="linkbar-east"> </span> -
ImageMagick/trunk/www/stream.html
r296 r300 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><!-- 20090501000200 --> 128 128 </div> 129 129 <div class="sponsor"> … … 342 342 <a href="http://www.imagemagick.org/discourse-server/">Discourse Server</a> • 343 343 <a href="../www/mailing-list.html">Mailing Lists</a> • 344 <a href="http:// studio.webbyland.com/ImageMagick/MagickStudio/scripts/MagickStudio.cgi">Studio</a>344 <a href="http://www.imagemagick.org/MagickStudio/scripts/MagickStudio.cgi">Studio</a> 345 345 </span> 346 346 <span id="linkbar-east"> </span>
