]> granicus.if.org Git - imagemagick/commitdiff
...
authorCristy <urban-warrior@imagemagick.org>
Tue, 28 Mar 2017 09:59:57 +0000 (05:59 -0400)
committerCristy <urban-warrior@imagemagick.org>
Tue, 28 Mar 2017 09:59:57 +0000 (05:59 -0400)
69 files changed:
coders/pcx.c
www/ImageMagickObject.html
www/Magick++/Color.html
www/Magick++/Documentation.html
www/Magick++/Image++.html
www/Magick++/PixelPacket.html
www/Magick++/Pixels.html
www/advanced-unix-installation.html
www/advanced-windows-installation.html
www/animate.html
www/api/Image++.html
www/api/magick++-classes.html
www/architecture.html
www/changelog.html
www/cipher.html
www/color-management.html
www/color.html
www/command-line-options.html
www/command-line-processing.html
www/command-line-tools.html
www/compare.html
www/compose.html
www/composite.html
www/conjure.html
www/connected-components.html
www/convert.html
www/develop.html
www/display.html
www/distribute-pixel-cache.html
www/download.html
www/escape.html
www/examples.html
www/exception.html
www/export.html
www/formats.html
www/fx.html
www/gradient.html
www/high-dynamic-range.html
www/history.html
www/identify.html
www/import.html
www/index.html
www/install-source.html
www/jp2.html
www/license.html
www/links.html
www/magick++.html
www/magick-core.html
www/magick-script.html
www/magick-vector-graphics.html
www/magick-wand.html
www/magick.html
www/miff.html
www/mirror.html
www/mogrify.html
www/montage.html
www/motion-picture.html
www/opencl.html
www/openmp.html
www/perl-magick.html
www/porting.html
www/quantize.html
www/resources.html
www/security-policy.html
www/sitemap.html
www/stream.html
www/subversion.html
www/support.html
www/webp.html

index f280df5bc99b4a4f70ad78cddfaf0ed4145b0279..ed12378d2c48e445533fc893aaf37a9937304221 100644 (file)
@@ -337,10 +337,8 @@ static Image *ReadPCXImage(const ImageInfo *image_info,ExceptionInfo *exception)
     image->rows=(size_t) MagickAbsoluteValue((ssize_t) pcx_info.bottom-
       pcx_info.top)+1UL;
     if ((image->columns == 0) || (image->rows == 0) ||
-        ((pcx_info.bits_per_pixel != 1) &&
-         (pcx_info.bits_per_pixel != 2) &&
-         (pcx_info.bits_per_pixel != 4) &&
-         (pcx_info.bits_per_pixel != 8)))
+        ((pcx_info.bits_per_pixel != 1) && (pcx_info.bits_per_pixel != 2) &&
+         (pcx_info.bits_per_pixel != 4) && (pcx_info.bits_per_pixel != 8)))
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     image->depth=pcx_info.bits_per_pixel;
     image->units=PixelsPerInchResolution;
@@ -352,6 +350,8 @@ static Image *ReadPCXImage(const ImageInfo *image_info,ExceptionInfo *exception)
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     pcx_info.reserved=(unsigned char) ReadBlobByte(image);
     pcx_info.planes=(unsigned char) ReadBlobByte(image);
+    if (pcx_info.planes == 0)
+      ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     if ((pcx_info.bits_per_pixel*pcx_info.planes) >= 64)
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     one=1;
@@ -389,7 +389,7 @@ static Image *ReadPCXImage(const ImageInfo *image_info,ExceptionInfo *exception)
     if (HeapOverflowSanityCheck(image->rows, (size_t) pcx_info.bytes_per_line) != MagickFalse)
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     pcx_packets=(size_t) image->rows*pcx_info.bytes_per_line;
-    if (HeapOverflowSanityCheck(pcx_packets, (size_t)pcx_info.planes) != MagickFalse)
+    if (HeapOverflowSanityCheck(pcx_packets, (size_t) pcx_info.planes) != MagickFalse)
       ThrowReaderException(CorruptImageError,"ImproperImageHeader");
     pcx_packets=(size_t) pcx_packets*pcx_info.planes;
     if ((size_t) (pcx_info.bits_per_pixel*pcx_info.planes*image->columns) >
index 4e110f5d5bcd893929e8177379e87bceabd61ca4..a528aa646e5b60a1f9f72dddca6c1bfb79055f65 100644 (file)
@@ -130,4 +130,4 @@ regsvr32 /u /s ImageMagickObject.dll
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:54 -->
\ No newline at end of file
index 1e0047aa07bdcf2a9808f49e37893c6ccef46a77..4a38b9f9aa8fb569274ac4635625a655f08f32b1 100644 (file)
@@ -14,9 +14,9 @@
 
 The base type used to represent color samples in ImageMagick is the Quantum type. Pixels are represented by a structure of Quantum values. For example, an RGB pixel contains red, green, and blue quantums, while an RGBA pixel contains red, green, blue, and opacity quantums. The maximum value that a Quantum can attain is specified by a constant value represented by the MaxRGB define, which is itself determined by the number of bits in a Quantum. The QuantumDepth build option determines the number of bits in a Quantum.
 
-<h4>PixelPacket</h4>
+<h4>Quantum</h4>
 
-PixelPacket is the internal representation of a pixel in ImageMagick. ImageMagick may be compiled to support 32, 64, or 128 bit pixels of type PixelPacket. This is controlled by the value of the QuantumDepth define. The default is 32 bit pixels (QuantumDepth=8), which provides the best performance and the least resource consumption. If additional color precision or range is desired, then ImageMagick may be compiled with QuantumDepth=16 or QuantumDepth=32. The following table shows the relationship between QuantumDepth, the type of Quantum, and the overall PixelPacket size.
+Quantum is the internal representation of a pixel in ImageMagick. ImageMagick may be compiled to support 32, 64, or 128 bit pixels of type Quantum. This is controlled by the value of the QuantumDepth define. The default is 32 bit pixels (QuantumDepth=8), which provides the best performance and the least resource consumption. If additional color precision or range is desired, then ImageMagick may be compiled with QuantumDepth=16 or QuantumDepth=32. The following table shows the relationship between QuantumDepth, the type of Quantum, and the overall Quantum size.
 <p align="center" style="margin-bottom: 0cm"><b>Effect Of QuantumDepth Values</b></p>
 <center>
 <table width="361" border="1" cellpadding="2" cellspacing="3">
@@ -29,7 +29,7 @@ PixelPacket is the internal representation of a pixel in ImageMagick. ImageMagic
 <td width="121">
 <p align="center"><b>Quantum Typedef</b></p></td>
 <td width="111">
-<p align="center"><b>PixelPacket Size</b></p></td></tr>
+<p align="center"><b>Quantum Size</b></p></td></tr>
 <tr>
 <td width="102">
 <p align="center">8</p></td>
@@ -53,7 +53,7 @@ PixelPacket is the internal representation of a pixel in ImageMagick. ImageMagic
 <p align="center">128 bits</p></td></tr>
 </table></center>
 <h3><a name="Color"></a>Color Class</h3>
-<p>The Color base class is not intended to be used directly. Normally a user will construct a derived class or inherit from this class. Color arguments are must be scaled to fit the Quantum size. The Color class contains a pointer to a PixelPacket, which may be allocated by the Color class, or may refer to an existing pixel in an image.</p>
+<p>The Color base class is not intended to be used directly. Normally a user will construct a derived class or inherit from this class. Color arguments are must be scaled to fit the Quantum size. The Color class contains a pointer to a Quantum, which may be allocated by the Color class, or may refer to an existing pixel in an image.</p>
 <p>An alternate way to construct the class is via an SVG-compatible color specification string (e.g. Color("red") or Color ("#FF0000")). Since the class may be constructed from a string, convenient strings may be passed in place of an explicit Color object in methods which accept a reference to Color. Color may also be converted to a std::string for convenience in user interfaces, and for saving settings to a text file.</p>
 <div class="viewport">
 class Color 
@@ -107,14 +107,14 @@ class Color
     // Return SVG color specification string 
     /* virtual */ operator std::string() const;
 
-    // Return ImageMagick PixelPacket 
-    operator PixelPacket() const;
+    // Return ImageMagick Quantum 
+    operator Quantum() const;
 
-    // Construct color via ImageMagick PixelPacket 
-    Color ( const PixelPacket &amp;color_ );
+    // Construct color via ImageMagick Quantum 
+    Color ( const Quantum &amp;color_ );
 
-    // Set color via ImageMagick PixelPacket 
-    const Color&amp; operator= ( PixelPacket &amp;color_ ); 
+    // Set color via ImageMagick Quantum 
+    const Color&amp; operator= ( Quantum &amp;color_ ); 
 };
 </div>
 <p align="center" style="margin-bottom: 0cm"><b>Color Derived Classes</b></p>
index 8feb532f53ace0de45447fc5af383899eec8c4b4..4076cf00c5c5fa5666a128435a3c0b322058f006 100644 (file)
@@ -4,7 +4,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Magick++ API Documentation</title>
-<link rel="stylesheet" href="magick.css" type="text/css" />
+<link rel="stylesheet" href="http://www.imagemagick.org/Magick++/magick.css" type="text/css" />
 </head>
 <body>
 <p class="image"><img src="Magick++.png" name="Graphic1" align="bottom" width="464" height="134" border="0" /></p>
index 32e8acc0b5daca891dd655066f33aebf883d73aa..e3f02eaf4f3131ed1c3d9c0b152eef81ce76cb9d 100644 (file)
@@ -4,7 +4,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Magick++ API: Working with Images</title>
-<link rel="stylesheet" href="magick.css" type="text/css" />
+<link rel="stylesheet" href="http://www.imagemagick.org/Magick++/magick.css" type="text/css" />
 </head>
 <body>
 <div class="doc-section">
@@ -2947,7 +2947,7 @@ or to capture image from</font></td>
 <center>
 <h3> <a name="Raw Image Pixel Access"></a> Low-Level Image Pixel Access</h3>
 </center>
-Image pixels (of type <i><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> </i>)
+Image pixels (of type <i><a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a> </i>)
 may be accessed directly via the <i>Image Pixel Cache</i> .&#160; The
 image pixel cache is a rectangular window into the actual image pixels
 (which may be in memory, memory-mapped from a disk file, or entirely on
@@ -2993,11 +2993,11 @@ image.modifyImage();
 image.type(TrueColorType);
 // Request pixel region with size 60x40, and top origin at 20x30 
 ssize_t columns = 60; 
-PixelPacket *pixel_cache = image.getPixels(20,30,columns,40); 
+Quantum *pixel_cache = image.getPixels(20,30,columns,40); 
 // Set pixel at column 5, and row 10 in the pixel cache to red. 
 ssize_t column = 5; 
 ssize_t row = 10; 
-PixelPacket *pixel = pixel_cache+row*columns+column; 
+Quantum *pixel = pixel_cache+row*columns+column; 
 *pixel = Color("red"); 
 // Save changes to underlying image .
 image.syncPixels();
@@ -3026,7 +3026,7 @@ image.write("horse.png");
       <td>
       <center><a name="getConstPixels"></a> <font size="-1">getConstPixels</font></center>
       </td>
-      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>
 *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
@@ -3081,7 +3081,7 @@ images, the indexes are used to contain the alpha channel.</font></td>
       <td>
       <center><a name="getPixels"></a> <font size="-1">getPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Transfers pixels from the image to the pixel
@@ -3096,7 +3096,7 @@ user.</font><font size="-1"></font></td>
       <td>
       <center><a name="setPixels"></a> <font size="-1">setPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/Quantum.html">Quantum</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Allocates a pixel cache region to store image
index 2ee56af91bb028fb59055aacca038cee598e4afd..ca738ef872f825d7639c79f0028973bd97d88a96 100644 (file)
@@ -4,7 +4,7 @@
 <head>
 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
 <title>Magick++ API: PixelPacket</title>
-<link rel="stylesheet" href="https://www.imagemagick.org/Magick++/magick.css" type="text/css" />
+<link rel="stylesheet" href="http://www.imagemagick.org/Magick++/magick.css" type="text/css" />
 </head>
 <body>
 <div class="doc-section">
 <p align="center"><b>Interpretation</b></p></td></tr>
 <tr>
 <td width="102">
-<p align="center"><a href="Enumerations.html#ColorspaceType">RGBColorspace</a></p></td>
+<p align="center"><a href="http://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType">RGBColorspace</a></p></td>
 <td width="152">
-<p align="center"><a href="Enumerations.html#ColorspaceType">RGBColorspace</a> + <a href="https://www.imagemagick.org/Magick++/Image++.html#matte">matte</a></p></td>
+<p align="center"><a href="http://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType">RGBColorspace</a> + <a href="Image++.html#matte">matte</a></p></td>
 <td width="119">
-<p align="center"><a href="Enumerations.html#ColorspaceType">CMYKColorspace</a></p></td></tr>
+<p align="center"><a href="http://www.imagemagick.org/Magick++/Enumerations.html#ColorspaceType">CMYKColorspace</a></p></td></tr>
 <tr>
 <td width="58">
 <p><font size="2">red</font></p></td>
index aa689716eaf56d981125c2935e689a8456418829..3b38b60c208aafa4235ec5485f09f6b7f61326d6 100644 (file)
@@ -10,7 +10,7 @@
 <div class="doc-section">
 <h1 align="center">Magick::Pixels</h1>
 <p>The <i>Pixels</i> class provides efficient access to raw image
-pixels. Image pixels (of type <a href="PixelPacket.html"><i>PixelPacket</i></a>)
+pixels. Image pixels (of type <a href="https://www.imagemagick.org/Magick++/Quantum.html"><i>Quantum</i></a>)
 may be accessed directly via the <i>Image Pixel Cache</i>. The image
 pixel cache is a rectangular window (a view) into the actual image
 pixels (which may be in memory, memory-mapped from a disk file, or
@@ -33,7 +33,7 @@ method should be invoked to reduce the reference count on the underlying
 image to one. If this is not done, then it is possible for a previous
 generation of the image to be modified due to the use of reference
 counting when copying or constructing an Image. </p>
-<p>The <i>PixelPacket</i>* returned by the <i>set</i> and <i>get</i>
+<p>The <i>Quantum</i>* returned by the <i>set</i> and <i>get</i>
 methods, and the <i>IndexPacket</i>* returned by the <i>indexes</i>
 method point to pixel data managed by the <i>Pixels</i> class. The <i>Pixels</i>
 class is responsible for releasing resources associated with the pixel
@@ -61,7 +61,7 @@ right (minus lines and text): </p>
  // Set all pixels in region anchored at 38x36, with size 160x230 to green. 
  size_t columns = 196; size_t rows = 162; 
  Color green("green"); 
PixelPacket *pixels = view.get(38,36,columns,rows); 
Quantum *pixels = view.get(38,36,columns,rows); 
  for ( ssize_t row = 0; row &lt; rows ; ++row ) 
    for ( ssize_t column = 0; column &lt; columns ; ++column ) 
      *pixels++=green; 
@@ -108,7 +108,7 @@ methods: </p>
       <p align="center"><a name="get"></a><font size="2">get</font></p>
                </td>
                <td>                    
-      <p><font size="2"><a href="PixelPacket.html">PixelPacket</a>*</font></p>
+      <p><font size="2"><a href="https://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>*</font></p>
                </td>
                <td>                    
       <p><font size="2">const ssize_t x_, const ssize_t y_, const size_t
@@ -127,7 +127,7 @@ the                         pixel cache as defined by the specified rectangular region.
       <p align="center"><a name="getConst"></a><font size="2">getConst</font></p>
                </td>
                <td>                    
-      <p><font size="2">const <a href="PixelPacket.html">PixelPacket</a>*</font></p>
+      <p><font size="2">const <a href="https://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>*</font></p>
                </td>
                <td>                    
       <p><font size="2">const ssize_t x_, const ssize_t y_, const size_t
@@ -143,7 +143,7 @@ the                         pixel cache as defined by the specified rectangular region.</font></p>
       <p align="center"><a name="set"></a><font size="2">set</font></p>
                </td>
                <td>                    
-      <p><font size="2"><a href="PixelPacket.html">PixelPacket</a>*</font></p>
+      <p><font size="2"><a href="https://www.imagemagick.org/Magick++/Quantum.html">Quantum</a>*</font></p>
                </td>
                <td>                    
       <p><font size="2">const ssize_t x_, const ssize_t y_, const size_t
index b06b424829a268f05b821b695eb65bc1c4b120c4..5cb34b454a6dba9bb8065ad96d1fcc393a9deb99 100644 (file)
@@ -78,7 +78,7 @@ tar xvzf ImageMagick.tar.gz
 
 <p>The configure script looks at your environment and decides what it can cobble together to get ImageMagick compiled and installed on your system.  This includes finding a compiler, where your compiler header files are located (e.g. stdlib.h), and if any delegate libraries are available for ImageMagick to use (e.g. JPEG, PNG, TIFF, etc.).  If you are willing to accept configure's default options, and build from within the source directory, you can simply type:</p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-0</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>./configure</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-4</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>./configure</span></pre>
 <p>Watch the configure script output to verify that it finds everything that
  you think it should.  Pay particular attention to the last lines of the script output.  For example, here is a recent report from our system:</p>
 
@@ -534,7 +534,7 @@ sudo port install jpeg
 
          <p><a href="download.html">Download</a> the ImageMagick source distribution and verify the distribution against its <a href="https://www.imagemagick.org/download/digest.rdf">message digest</a>.</p>
          <p>Unpack and change into the top-level ImageMagick directory:</p>
-               <pre><span class="crtprompt"> </span><span class='crtin'>tar xvzf ImageMagick-7.0.5-0.tar.gz</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-0</span></pre>    <p>Configure ImageMagick:</p>
+               <pre><span class="crtprompt"> </span><span class='crtin'>tar xvzf ImageMagick-7.0.5-4.tar.gz</span><span class='crtout'></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-4</span></pre>    <p>Configure ImageMagick:</p>
 <pre>
 ./configure --prefix=/opt --with-quantum-depth=16 \
   --disable-dependency-tracking --with-x=yes \
@@ -566,7 +566,7 @@ display -display :0
 
 <p>Although you can download and install delegate libraries yourself, many are already available in the <a href="http://gnuwin32.sourceforge.net/">GnuWin32</a> distribution.  Download and install whichever delegate libraries you require such as JPEG, PNG, TIFF, etc.  Make sure you specify the development headers when you install a package.  Next type,</p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>tar jxvf ImageMagick-7.0.5-?.tar.bz2</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-0</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>./configure --without-perl</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>make</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>sudo make install</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>tar jxvf ImageMagick-7.0.5-?.tar.bz2</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>cd ImageMagick-7.0.5-4</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>./configure --without-perl</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>make</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>sudo make install</span></pre>
 <h2 class="magick-header"><a id="problems"></a>Dealing with Unexpected Problems</h2>
 
 <p>Chances are the download, configure, build, and install of ImageMagick went flawlessly as it is intended, however, certain systems and environments may cause one or more steps to fail.  We discuss a few problems we've run across and how to take corrective action to ensure you have a working release of ImageMagick</p>
@@ -636,4 +636,4 @@ identify -list format
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:32 -->
\ No newline at end of file
index a3de7bf164a179a71cb10a8dfd8f6ee5f3dc2483..c177f7c18e6203c54b2fce7b13cdb4551b73c273 100644 (file)
@@ -331,7 +331,7 @@ dmake release
 
        <ol>
        <li>Double-click on
-       <code>VisualMagick/bin/ImageMagick-7.0.5-0-Q16-windows-dll.exe</code>
+       <code>VisualMagick/bin/ImageMagick-7.0.5-4-Q16-windows-dll.exe</code>
        to launch the ImageMagick binary distribution.</li>
        <li>Complete the installer screens to install ImageMagick on your system.</li>
        </ol>
@@ -401,4 +401,4 @@ _MAGICKMOD_
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:26 -->
\ No newline at end of file
index 75310ac4ae075678d4f60f9b0d2f2be49b41af60..6d2e9940cde72076ce1219989760ff719ae37c73 100644 (file)
@@ -532,4 +532,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
index 516c96ec8184fd1322a5977a1cd7e740569bfef7..5628a3c31b53af50d92754ee354f041686df9b07 100644 (file)
@@ -608,7 +608,7 @@ matte differ from the current image.</font><br>
       <td style="text-align: center;" rowspan="3">
       <center><a name="composite"></a> <font size="-1">composite</font></center>
       </td>
-      <td><font size="-1">const <a href="../Magick++/Image.html">Image</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Image.html">Image</a>
 &amp;compositeImage_, ssize_t xOffset_, ssize_t yOffset_, <a
  href="http://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator"> CompositeOperator</a>
 compose_ = <i>InCompositeOp</i></font></td>
@@ -617,7 +617,7 @@ offset specified by <i>xOffset_</i>, <i>yOffset_ </i>using the
 composition algorithm specified by <i>compose_</i>. </font></td>
     </tr>
     <tr>
-      <td><font size="-1">const <a href="../Magick++/Image.html">Image</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Image.html">Image</a>
 &amp;compositeImage_, const <a href="http://www.imagemagick.org/Magick++/Geometry.html">Geometry</a>
 &amp;offset_, <a href="http://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator">CompositeOperator</a>
 compose_ = <i>InCompositeOp</i></font></td>
@@ -626,7 +626,7 @@ offset specified by <i>offset_</i> using the composition algorithm
 specified by <i>compose_</i> . </font></td>
     </tr>
     <tr>
-      <td><font size="-1">const <a href="../Magick++/Image.html">Image</a>
+      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/Image.html">Image</a>
 &amp;compositeImage_, <a href="http://www.imagemagick.org/Magick++/Enumerations.html#GravityType">GravityType</a>
 gravity_, <a href="http://www.imagemagick.org/Magick++/Enumerations.html#CompositeOperator">CompositeOperator</a>
 compose_ = <i>InCompositeOp</i></font></td>
@@ -2989,7 +2989,7 @@ or to capture image from</font></td>
 </div>
 <h2> <a name="Raw Image Pixel Access"></a> Low-Level Image Pixel Access</h2>
 <div class="doc-section">
-Image pixels (of type <i><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> </i>)
+Image pixels (of type <i><a href="../Magick++/PixelPacket.html">PixelPacket</a> </i>)
 may be accessed directly via the <i>Image Pixel Cache</i> .  The
 image pixel cache is a rectangular window into the actual image pixels
 (which may be in memory, memory-mapped from a disk file, or entirely on
@@ -3069,7 +3069,7 @@ image.write("horse.png");
       <td>
       <center><a name="getConstPixels"></a> <font size="-1">getConstPixels</font></center>
       </td>
-      <td><font size="-1">const <a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a>
+      <td><font size="-1">const <a href="../Magick++/PixelPacket.html">PixelPacket</a>
 *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
@@ -3124,7 +3124,7 @@ images, the indexes are used to contain the alpha channel.</font></td>
       <td>
       <center><a name="getPixels"></a> <font size="-1">getPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="../Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Transfers pixels from the image to the pixel
@@ -3139,7 +3139,7 @@ user.</font><font size="-1"></font></td>
       <td>
       <center><a name="setPixels"></a> <font size="-1">setPixels</font></center>
       </td>
-      <td><font size="-1"><a href="http://www.imagemagick.org/Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
+      <td><font size="-1"><a href="../Magick++/PixelPacket.html">PixelPacket</a> *</font></td>
       <td><font size="-1">const ssize_t x_, const ssize_t y_, const size_t
 columns_, const size_t rows_</font></td>
       <td><font size="-1">Allocates a pixel cache region to store image
index 45d1e0d1732a72be53983dccc3c8840c79bf7935..2b803618ecef6899d84aa128956b9af4774769a4 100644 (file)
@@ -92,7 +92,7 @@
 <tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/Geometry.html">Geometry</a></td>
 <td>Geometry specification.</td>
 </tr>
-<tr><td><a class="reference external" href="../Magick++/Image.html">Image</a></td>
+<tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/Image.html">Image</a></td>
 <td>Image frame.  This is the primary object in <em>Magick++</em>.</td>
 </tr>
 <tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/Montage.html">Montage</a></td>
@@ -107,7 +107,7 @@ containers of image frames.</td>
 </tr>
 <tr><td><a class="reference external" href="http://www.imagemagick.org/Magick++/TypeMetric.html">TypeMetric</a></td>
 <td>Container for font type metrics (use with
-<a class="reference external" href="../Magick++/Image.html#fonttypemetrics">Image::fontTypeMetrics</a>).</td>
+<a class="reference external" href="http://www.imagemagick.org/Magick++/Image.html#fonttypemetrics">Image::fontTypeMetrics</a>).</td>
 </tr>
 </tbody>
 </table>
index 19e6449ef9edc65ee7f1e32e48a3c4ca69844429..7b1863ad52d4f35d78dfcb29c6c60e2eaaf7c62e 100644 (file)
@@ -135,7 +135,7 @@ if (image == (Image *) NULL)
 
 <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 8-bit gray 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 with the <a href="command-line-options.html#version">&#x2011;version</a> option: </p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>identify -version</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>Version: ImageMagick 7.0.5-0 2017-02-18 Q16 https://www.imagemagick.org</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>identify -version</span><span class='crtout'><br/></span><span class="crtprompt"> </span><span class='crtin'>Version: ImageMagick 7.0.5-4 2017-03-18 Q16 https://www.imagemagick.org</span></pre>
 <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 is wasteful) and speed (i.e. storing the entire image in memory is generally slower than accessing one scanline of pixels at a time).  In most cases, the benefits of the pixel cache typically outweigh any disadvantages.</p>
 
 <h3><a id="authentic-pixels"></a>Access the Pixel Cache</h3>
@@ -1423,4 +1423,4 @@ ModuleExport size_t analyzeImage(Image **images,const int argc,const char **argv
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 6f2d70c4db7feb6d7d3193e962eaa694943b4d7c..112cbef7c40c570186f8cc08fd2704d2c6a61d81 100644 (file)
   </div>
 </div>
 <div class="container">
-<div class="magick-header"><dl><dt>2017-02-20  7.0.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+<div class="magick-header"><dl><dt>2017-03-24  7.0.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Release ImageMagick version 7.0.5-4, GIT revision 19754:350fff3:20170324.</li>
+<dt>2017-03-21  7.0.5-4 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Respect -loop option for animate -window (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31619).</li>
+<dt>2017-03-17  7.0.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Release ImageMagick version 7.0.5-3, GIT revision 19741:070c3fb:20170317.</li>
+<dt>2017-03-14  7.0.5-3 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Support namespaces for the security policy.</li>
+  <li> Support the -authenticate option for PDF (reference    Counting objects: 7, done.g/discourse-server/viewtopic.html?f=3&amp;t=31530).</li>
+<dt>2017-03-11  7.0.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Release ImageMagick version 7.0.5-2, GIT revision 19696:da91a7c:20170311.</li>
+<dt>2017-03-06  7.0.5-2 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Respect throttle policy (reference    https://github.com/ImageMagick/ImageMagick/issues/393).</li>
+  <li> Return proper minima / maxima (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31377).</li>
+<dt>2017-03-03  7.0.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Release ImageMagick version 7.0.5-1, GIT revision 19662:b7f455a:20170303.</li>
+<dt>2017-02-21  7.0.5-1 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
+  <li> Fix Spurious memory allocation message (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31438).</li>
+  <li> Identical images should return inf for PSNR (reference    https://www.imagemagick.org/discourse-server/viewtopic.html?f=3&amp;t=31487).</li>
+<dt>2017-02-20  7.0.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Release ImageMagick version 7.0.5-0, GIT revision 19616:505fea9:20170220.</li>
 <dt>2017-02-20  7.0.5-0 Cristy  &lt;quetzlzacatenango@image...&gt;</dt>
   <li> Fix transient bug with -separate option (reference    https://github.com/ImageMagick/ImageMagick/issues/385).</li>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:33 -->
\ No newline at end of file
index 8d11bb699a720e38756b5d19a91ff9681b3bc14d..bff28c529b20afe371ea459e3695b631b9da67a1 100644 (file)
@@ -140,4 +140,4 @@ Examples <a href="https://www.imagemagick.org/Usage/transform/#encipher"
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 5d0e8bbd6d66893bbc14878ee8ae52b7a0fa7cbc..a8357f99c975a95a3e1a79cad3a3caad36344788 100644 (file)
@@ -150,4 +150,4 @@ convert myimage_channels_*.png -set colorspace HSL -combine -colorspace RGB -set
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index cfbbb30b881f3612ce2e8804a7bce339c3831121..9c95c0c753daa4748eb9f2ec37e2596c297ca941 100644 (file)
@@ -4951,4 +4951,4 @@ device-cmyk(0.11, 0.48, 0.83, 0.00)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
index d68a0d8f73ea509b5dcf99c2ef60d12713a9bc7b..c51ff66b06fedb5b170c2c194236c8b29720086a 100644 (file)
@@ -1924,6 +1924,11 @@ available:</p>
     <code>neato</code>).</td>
   </tr>
 
+  <tr>
+    <td>exr:color-type=<var>value</var></td>
+     <td>Specifies the color type for the EXR format: RGB, RGBA, YC, YCA, Y, YA, R, G, B, A).</td>
+  </tr>
+
   <tr>
     <td>filter:option=<var>value</var></td>
      <td>Set a filter option for use with <a href="command-line-options.html#resize">-resize</a>.
@@ -1953,6 +1958,16 @@ available:</p>
     (requires a 256x256 input image).</td>
   </tr>
 
+  <tr>
+    <td>identify:locate=<var>minimum|maximum</var></td>
+     <td>Locates the coordinates of one or more image minimum or maximum</td>
+  </tr>
+
+  <tr>
+    <td>identify:limit=<var>number</var></td>
+     <td>Locates the coordinates for the number of minima or maxima specified</td>
+  </tr>
+
   <tr>
     <td>jp2:layer-number=<var>value</var></td>
      <td>Sets the maximum number of quality layers to decode. Same for JPT, JC2,
@@ -2120,6 +2135,16 @@ available:</p>
     <td> </td>
   </tr>
 
+  <tr>
+    <td>pdf:stop-on-error=<var>true</var></td>
+    <td> </td>
+  </tr>
+
+  <tr>
+    <td>pdf:pdf:page-direction=<var>right-to-left</var></td>
+    <td> </td>
+  </tr>
+
   <tr>
     <td>phash:colorspaces=<var>colorspace,colorspace,...</var></td>
     <td>the perceptual hash defaults to the sRGB and HCLp colorspaces.  When 
@@ -2409,8 +2434,8 @@ available:</p>
   </tr>
 
   <tr>
-    <td>tiff:exif-properties=<var>false</var></td>
-    <td>Skips reading the EXIF properties.</td>
+    <td>tiff:exif-properties=<var>true</var></td>
+    <td>Enables reading the EXIF properties.</td>
   </tr>
 
   <tr>
@@ -2448,6 +2473,21 @@ available:</p>
     <td>type:hinting=<var>off</var></td>
     <td> </td>
   </tr>
+
+  <tr>
+    <td>txt:compliance=<var>css</var></td>
+    <td> </td>
+  </tr>
+
+  <tr>
+    <td>x:screen=<var>true</var></td>
+    <td>Obtains the image from the root window </td>
+  </tr>
+
+  <tr>
+    <td>x:silent=<var>true</var></td>
+    <td>Turns off the beep when importing an image </td>
+  </tr>
 </table>
 
 <p>For example, to create a postscript file that will render only the black
@@ -8054,4 +8094,4 @@ but with strict boolean masking. </p>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
index 8d61a028472e8285676965fdb55bdd510fc53295..44316f14b88d13099466630932222339a6b57609 100644 (file)
@@ -688,4 +688,4 @@ magick -define stream:buffer-size=0 logo: gif:- | display gif:-
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:35 -->
\ No newline at end of file
index 1eafd1cd930b31850af4fbe254f7d852103ec611..2bff4a32b9c503efda6ca28b7e478f53b4dad2cf 100644 (file)
@@ -107,4 +107,4 @@ magick convert logo: logo.jpg
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:36 -->
\ No newline at end of file
index fa11f16247e92b5078a1b85aa2bf20284b518e2f..7265d1508a7934ed9ae652e52c661b667e7780ed 100644 (file)
@@ -365,4 +365,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:56 -->
\ No newline at end of file
index 925feceafd6d979f3f1312f72272521d4e16176c..86068e5bb17563ccaaba030954fe6be84bdf1c27 100644 (file)
@@ -644,3 +644,4 @@ href="https://www.imagemagick.org/script/command-line-options.html#list">-list c
 </div>
 </body>
 </html>
+<!-- Magick Cache 26th March 2017 15:59 -->
\ No newline at end of file
index b73715887dbd11b2e8077cf222cae547afc10f29..ac5c8e7df60e04a6d36323a77fb4f68ebc6d5c89 100644 (file)
@@ -526,4 +526,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 15fd21dc5a4de2fca8938399d248bb0ae418b247..87f149dcf8bfc0e81f58d732725ed6284cc1aed0 100644 (file)
@@ -1138,4 +1138,4 @@ fill="color name", channel="All, Default, Alpha, Black, Blue, CMYK, Cyan, Gray,
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:20 -->
\ No newline at end of file
index 67c22c6d15b79c48772393ad7344a502fe984ce9..262c33a7a8f585f3413b90bcceeccf84318ac0f0 100644 (file)
@@ -121,4 +121,4 @@ Objects (id: bounding-box centroid area mean-color):
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index ab925644c4b7688f4ade024ebc28939b9a0b8d26..55b65644e923889e503abb04f0a613dd469a96ef 100644 (file)
@@ -1322,4 +1322,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
index d6262a6e7df4a17473443a439a68c2d277d5ed65..936255c668ea2ffd9b4279a463bbe566e5d9b1ed 100644 (file)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:36 -->
\ No newline at end of file
index b21e98669ee16bfbc326cd3c029f355108b84ca8..006b22ff0eaf1796c28c30cc0584152ba15a6e4f 100644 (file)
@@ -569,4 +569,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
index a721312232e2ef93cd65f8e61194ca38133a1d1f..6be1855653f79665cc832ac6ffd3442a4e55a206 100644 (file)
@@ -89,4 +89,4 @@ convert -limit memory 1GiB -limit map 2GiB -limit disk 4GiB \
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index f144a15abdb28be54e50982e25bc95e26d36f47d..55af15b943dad890dc0c7e679e024b467c4cb985 100644 (file)
   </tr>
 
   <tr>
-      <td>ImageMagick-7.0.5-0.x86_64.rpm</td>
-      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-7.0.5-0.x86_64.rpm">download</a></td>
-    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-7.0.5-0.x86_64.rpm">download</a></td>
+      <td>ImageMagick-7.0.5-4.x86_64.rpm</td>
+      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-7.0.5-4.x86_64.rpm">download</a></td>
+    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-7.0.5-4.x86_64.rpm">download</a></td>
     <td>Redhat / CentOS 7.1 x86_64 RPM</td>
   </tr>
 
   <tr>
-      <td>ImageMagick-libs-7.0.5-0.x86_64.rpm</td>
-      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-0.x86_64.rpm">download</a></td>
-    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-0.x86_64.rpm">download</a></td>
+      <td>ImageMagick-libs-7.0.5-4.x86_64.rpm</td>
+      <td><a href= "https://www.imagemagick.org/download/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-4.x86_64.rpm">download</a></td>
+    <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/linux/CentOS/x86_64/ImageMagick-libs-7.0.5-4.x86_64.rpm">download</a></td>
     <td>Redhat / CentOS 7.1 x86_64 RPM</td>
   </tr>
 
 
 <p>ImageMagick RPM's are self-installing.  Simply type the following command and you're ready to start using ImageMagick:</p>
 
-<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-7.0.5-0.x86_64.rpm</span></pre><p>You'll need the libraries as well:</p>
-<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-libs-7.0.5-0.x86_64.rpm</span></pre>
+<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-7.0.5-4.x86_64.rpm</span></pre><p>You'll need the libraries as well:</p>
+<pre><span class="crtprompt"> </span><span class='crtin'>rpm -Uvh ImageMagick-libs-7.0.5-4.x86_64.rpm</span></pre>
 <p>For other systems, create (or choose) a directory to install the package into and change to that directory, for example:</p>
 
 <pre>
@@ -258,7 +258,7 @@ display logo.gif
 <pre>
 ./imagemagick_compile.sh <var>VERSION</var>
 </pre>
-<p>where <var>VERSION</var> is the version of ImageMagick you want to compile (i.e.: 7.0.5-0, svn, ...)</p>
+<p>where <var>VERSION</var> is the version of ImageMagick you want to compile (i.e.: 7.0.5-4, svn, ...)</p>
 
 <p>This script compiles ImageMagick as a static library to be included in iOS projects and adds support for</p>
 <ul>
@@ -307,9 +307,9 @@ display logo.gif
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x64-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-x64-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x64-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x64-dll.exe">download</a></td>
     <td>Win64 dynamic at 16 bits-per-pixel component</td>
   </tr>
 </table></div>
@@ -327,93 +327,93 @@ display logo.gif
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x64-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-x64-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x64-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x64-static.exe">download</a></td>
    <td>Win64 static at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x64-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q8-x64-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x64-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x64-dll.exe">download</a></td>
    <td>Win64 dynamic at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x64-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q8-x64-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x64-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x64-static.exe">download</a></td>
     <td>Win64 static at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-HDRI-x64-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-HDRI-x64-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-dll.exe">download</a></td>
     <td>Win64 dynamic at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-HDRI-x64-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x64-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-HDRI-x64-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x64-static.exe">download</a></td>
     <td>Win64 static at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x86-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-x86-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x86-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x86-dll.exe">download</a></td>
     <td>Win32 dynamic at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-x86-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-x86-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-x86-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-x86-static.exe">download</a></td>
     <td>Win32 static at 16 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x86-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q8-x86-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x86-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x86-dll.exe">download</a></td>
     <td>Win32 dynamic at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q8-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q8-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q8-x86-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q8-x86-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q8-x86-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q8-x86-static.exe">download</a></td>
     <td>Win32 static at 8 bits-per-pixel component</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-HDRI-x86-dll.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-dll.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-dll.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-HDRI-x86-dll.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-dll.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-dll.exe">download</a></td>
     <td>Win32 dynamic at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-Q16-HDRI-x86-static.exe</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-static.exe">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-Q16-HDRI-x86-static.exe">download</a></td>
+        <td>ImageMagick-7.0.5-4-Q16-HDRI-x86-static.exe</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-static.exe">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-Q16-HDRI-x86-static.exe">download</a></td>
     <td>Win32 static at 16 bits-per-pixel component with <a href="high-dynamic-range.html">high dynamic-range imaging</a> enabled</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-portable-Q16-x86.zip</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-portable-Q16-x86.zip">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-portable-Q16-x86.zip">download</a></td>
+        <td>ImageMagick-7.0.5-4-portable-Q16-x86.zip</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-portable-Q16-x86.zip">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-portable-Q16-x86.zip">download</a></td>
     <td>Portable Win32 static at 16 bits-per-pixel component.  Just copy to your host and run (no installer, no Windows registry entries).</td>
   </tr>
 
   <tr>
-        <td>ImageMagick-7.0.5-0-portable-Q16-x64.zip</td>
-        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-0-portable-Q16-x64.zip">download</a></td>
-      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-0-portable-Q16-x64.zip">download</a></td>
+        <td>ImageMagick-7.0.5-4-portable-Q16-x64.zip</td>
+        <td><a href= "https://www.imagemagick.org/download/binaries/ImageMagick-7.0.5-4-portable-Q16-x64.zip">download</a></td>
+      <td><a href="ftp://ftp.imagemagick.org/pub/ImageMagick/binaries/ImageMagick-7.0.5-4-portable-Q16-x64.zip">download</a></td>
     <td>Portable Win64 static at 16 bits-per-pixel component.  Just copy to your host and run (no installer, no Windows registry entries).</td>
   </tr>
 </table></div>
@@ -425,7 +425,7 @@ display logo.gif
 <pre>
 magick logo: logo.gif
 magick identify logo.gif
-magick display logo.gif
+magick logo.gif win:
 </pre>
 
 <p>If you have any problems, you likely need <code>vcomp120.dll</code>.  To install it, download <a href="https://www.microsoft.com/en-us/download/details.aspx?id=40784">Visual C++ 2013 Redistributable Package</a>.</p>
@@ -464,4 +464,4 @@ objShell.Exec("magick ""e:/myimages/image.png"" ""e:/myimages/image.jpg""")
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
index fdc6d59d9192163c994e24777e588bac66110303..5753c6b5d8e1c63c49a42d5b3996fa9581338c8d 100644 (file)
@@ -887,4 +887,4 @@ Post ObjectData Descriptor Record
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
index 759a788f24ee721435a60eaa27c895c85ee179cc..46b80f0bf301427a7487a0d11086b9afda84baca 100644 (file)
@@ -80,4 +80,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
index d7a8458d733d01490fc2c15a2761240d7d823b2f..1c0a7ae11645cfc5d659d5d1c055006549043bf1 100644 (file)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:41 -->
\ No newline at end of file
index 528e1ab509ac87fbe3611ce807d6e0bb1fd7a3d6..ad09d518845bc03613bc2703e3256ef140cc624b 100644 (file)
@@ -80,4 +80,4 @@
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:26 -->
\ No newline at end of file
index ea5589f5716afbabc8bfa951da3d8d492d2cb020..70ac81c66b25c6582bf95d4e336bfca379d51078 100644 (file)
@@ -724,7 +724,7 @@ convert \( -size 15x15 canvas:black canvas:white -append \) \
     <td>PCD</td>
     <td>RW</td>
     <td>Photo CD</td>
-    <td>The maximum resolution written is 768x512 pixels since larger images require huffman compression (which is not supported).</td>
+    <td>The maximum resolution written is 768x512 pixels since larger images require huffman compression (which is not supported). Use <a href="command-line-options.html#bordercolor">-bordercolor</a> to specify the border color (e.g. <code>-bordercolor black</code>).</td>
   </tr>
 
   <tr>
@@ -1967,4 +1967,4 @@ convert \( -size 15x15 canvas:black canvas:white -append \) \
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
index b290126535d640e617f651eeac3ae849844af142..b3e8474834e2793fae2649359e0fe3c6dc829cdf 100644 (file)
@@ -420,4 +420,4 @@ convert rose: -duplicate 29 -virtual-pixel Gray -distort SRT '%[fx:360.0*t/n]' \
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 4fce08ebd53724d8e458d7c8ae8f2acff5f87ed9..c6cfb1051643303fd5c9264c2565d8dfc63e723e 100644 (file)
@@ -241,4 +241,4 @@ convert -size 256x256 -define gradient:radii=128,64 -define gradient:angle=45 ra
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 863acc07cf00c473f365524f8a39514352c7ce2c..14c488fb8980728c2a8f71846d21f3aa589e74c4 100644 (file)
@@ -107,4 +107,4 @@ Features: HDRI
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
index ee5df5df7005db9c1c8db204cbf35b02b71e5c63..e415a73045bb340ff2421e76ca5241a2e99a1ed1 100644 (file)
@@ -97,4 +97,4 @@ I swear by my life and my love of it that I will never live for the sake of anot
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:26 -->
\ No newline at end of file
index 9c1b1cc323c82c95fc4ff3436b4251a91cd60e3f..4dd5d6d4ec20dfadfedb87fc4714f41ed2320013 100644 (file)
@@ -429,4 +429,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:37 -->
\ No newline at end of file
index a6f08fb3c771409cb2f5617a159548740cbbe562..5d2f138b47cc33f429af8c6295b7284178763551 100644 (file)
@@ -427,4 +427,4 @@ import -window root screen.ps
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index e52a13dbaec01c5d6625822a4bacc5025de5f963..93d1c814cf2ba41e16dd57665382df7baafcc422 100644 (file)
@@ -66,9 +66,9 @@ Use ImageMagick<sup><a href="http://tarr.uspto.gov/servlet/tarr?regser=serial&am
 <p>ImageMagick utilizes multiple computational threads to increase performance and can read, process, or write mega-, giga-, or tera-pixel image sizes.</p>
 <p>ImageMagick is free software delivered as a ready-to-run binary distribution or as source code that you may use, copy, modify, and distribute in both open and proprietary applications. It is distributed under the Apache 2.0 <a href="https://www.imagemagick.org/script/license.html">license</a>.</p>
 
-<p>The ImageMagick development process ensures a stable API and <a href="http://abi-laboratory.pro/tracker/timeline/imagemagick/">ABI</a>. Before each ImageMagick release, we perform a comprehensive security assessment that includes <a href="https://code.google.com/p/address-sanitizer/">memory error</a> and <a href="https://code.google.com/p/data-race-test/wiki/ThreadSanitizer">thread data race</a> detection to prevent security vulnerabilities.</p>
+<p>The ImageMagick development process ensures a stable API and <a href="http://abi-laboratory.pro/tracker/timeline/imagemagick/">ABI</a>. Before each ImageMagick release, we perform a comprehensive security assessment that includes <a href="https://github.com/google/sanitizers/wiki/AddressSanitizer">memory error</a> and <a href="https://github.com/google/sanitizers/wiki/ThreadSanitizer">thread data race</a> detection to prevent security vulnerabilities.</p>
 
-<p>The current release is ImageMagick <a href="https://www.imagemagick.org/script/download.html">7.0.5-0</a>.  It runs on <a href="https://www.imagemagick.org/script/download.html#unix">Linux</a>, <a href="https://www.imagemagick.org/script/download.html#windows">Windows</a>, <a href="https://www.imagemagick.org/script/download.html#macosx">Mac Os X</a>, <a href="https://www.imagemagick.org/script/download.html#iOS">iOS</a>, Android OS, and others.</p>
+<p>The current release is ImageMagick <a href="https://www.imagemagick.org/script/download.html">7.0.5-4</a>.  It runs on <a href="https://www.imagemagick.org/script/download.html#unix">Linux</a>, <a href="https://www.imagemagick.org/script/download.html#windows">Windows</a>, <a href="https://www.imagemagick.org/script/download.html#macosx">Mac Os X</a>, <a href="https://www.imagemagick.org/script/download.html#iOS">iOS</a>, Android OS, and others.</p>
 
 <p>The authoritative ImageMagick web site is <a href="https://www.imagemagick.org/">https://www.imagemagick.org</a>. The authoritative source code repository is <a href="http://git.imagemagick.org/repos/ImageMagick">http://git.imagemagick.org/repos/ImageMagick</a>.  We maintain a source code mirror at <a href="https://gitlab.com/ImageMagick/ImageMagick">GitLab</a> and <a href="https://github.com/ImageMagick/ImageMagick">GitHub</a>.</p>
 
@@ -239,4 +239,4 @@ Use ImageMagick<sup><a href="http://tarr.uspto.gov/servlet/tarr?regser=serial&am
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:24 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:32 -->
\ No newline at end of file
index 2964d0d791eb4456fcf1e38328bb63a3659f4c50..2bad9370104f7a0c790903cf2a3e58c4c12d7dd3 100644 (file)
@@ -162,4 +162,4 @@ validate
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:34 -->
\ No newline at end of file
index eaf9728cba195faec80a605fbe2a3ab1a437f7a1..e5ed762755eac2242502fc00272cba7185701745 100644 (file)
@@ -164,4 +164,4 @@ convert wizard.png -resize 4096x2160! -depth 12 wizard.jp2
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:35 -->
\ No newline at end of file
index 7b5d30db8e0c39d3969e327fb11f768983610652..5d4efefc06a0775a0fdf5eb10bf3fe4a914020e4 100644 (file)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:05 -->
\ No newline at end of file
index 50587f1f030171579b525ca1ab7fe4c37aa9bffb..3067fb6388b924917ed877394a07049d61034d3c 100644 (file)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
index 89e816385a3afac1b5d9146b99124aca2fc00c28..953dbf3ee5e9cbae21649e2579996151b7e3040c 100644 (file)
@@ -187,4 +187,4 @@ int main(int argc,char **argv)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:21 -->
\ No newline at end of file
index e784b7345434cb3dcf8dbe66de66155153b6c659..a37e156e81fa5138840db441f5438447d3803c71 100644 (file)
@@ -337,4 +337,4 @@ int main(int argc,char **argv)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:24 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:43 -->
\ No newline at end of file
index 58b9d9b3656618f025ee1c2a6d1b87d2531aa795..6a30bceb9660e6ae840fc31f59b2e988c0efd9e2 100644 (file)
@@ -1282,4 +1282,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 17:02 -->
\ No newline at end of file
index 4ff288ad1328fdb9d4e2aaa59e2a0b161f9fff63..31f349baad5991b1b4f50c42b8ed5d5e1d0f86b6 100644 (file)
@@ -881,4 +881,4 @@ round</pre></td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:17 -->
\ No newline at end of file
index 95454b9ba23cb210bed579f0daa1d1ea1830e599..bedc29ad18751e8417e8456b0a840c8eb4816832 100644 (file)
@@ -383,4 +383,4 @@ int main(int argc,char **argv)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:42 -->
\ No newline at end of file
index f30e684b4654d9a99a81fbdae9ddedda347bdfac..0a6834bbcea765b9c03e8194bbdbeca9bdee84dd 100644 (file)
@@ -1324,4 +1324,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:52 -->
\ No newline at end of file
index 2549007067cd5dce6201eea0d2a14046b7b911d1..92f357fcad93a50497ffbb9de63bc6bbe2c94c50 100644 (file)
@@ -245,4 +245,4 @@ or fewer colors in the image, each byte of image data contains an index value. I
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 18:07 -->
\ No newline at end of file
index babcfe6fb6233a88e183800a219328554ed7b30d..d6e61cfbf84717bf38f7d5b102da1c6182d6788c 100644 (file)
@@ -58,7 +58,7 @@
 <div class="container">
 <div class="magick-header">
 <p class="lead magick-description">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="http://git.imagemagick.org/repos/ImageMagick">Git</a>.  Before you download, you may want to review recent <a href="changelog.html">changes</a> to the ImageMagick distribution.  The authoritative source code repository is <a href="http://git.imagemagick.org/repos/ImageMagick">http://git.imagemagick.org/repos/ImageMagick</a>.</p>
-<p>The latest release of ImageMagick is version 7.0.5-0.</p>
+<p>The latest release of ImageMagick is version 7.0.5-4.</p>
 <dl class="dl-horizontal">
   <dt>Germany</dt>
     <dd><a href="http://mirror.checkdomain.de/imagemagick/">http://mirror.checkdomain.de/imagemagick/</a></dd>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
index 961034538d7c09a0f46b73051f06029c8f75a882..b4b55059ee1641b091000fe493f1ed9888a8c923 100644 (file)
@@ -1297,4 +1297,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:41 -->
\ No newline at end of file
index cb33b0e99099c62cb515f133d93c3624833ba0a4..16691698b62ef2f0deda457708d735fd4066e8d5 100644 (file)
@@ -638,4 +638,4 @@ transparent, extract, background, or shape the alpha channel</td>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 3eb0e7d1d9a4c032ef52dae5cd7109d5f16a60a1..4b1619cc4483ad9ba74137b475436a019ea3d4f8 100644 (file)
@@ -194,4 +194,4 @@ convert bluebells.dpx -define dpx:television.time.code=10:00:02:15 bluebells-001
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
index a23ffafea761f040fae139b389ade6bb60f391d9..f31dd0f8f7b50431418d3a20cf41bf8345f76c71 100644 (file)
@@ -122,4 +122,4 @@ InitImageMagickOpenCL(MAGICK_OPENCL_DEVICE_SELECT_USER, (void*)(myDevices+2), NU
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 29fa510d9eaa7542d8623f607287d03508b7008d..18179e5f3d83b9c84b3f068b3a1ce8042c7ced05 100644 (file)
@@ -101,4 +101,4 @@ Performance[8]: 40i 4.831ips 0.872e 15.680u 0:02.070
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:47 -->
\ No newline at end of file
index 337e4c64fc3f938d42a46b910c5b340da7e5f73a..e4a5fd738d31ce56747c3235eb3fed0ba2d71953 100644 (file)
@@ -2611,4 +2611,4 @@ Image::Magick-&gt;QuantumDepth
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:49 -->
\ No newline at end of file
index 3dded98eec1a7ccd5a0d70cb6531946d3475688f..432d636152839205e8e56344b058f52d5b0322f3 100644 (file)
@@ -664,4 +664,4 @@ example "+annotate", "+resize", "+clut", and "+draw" .</p>
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
index 911bb59516b6cb6f01b437ed6092616b39860139..6d1a2a895ee63348fd1b576f9687a621d153e9b4 100644 (file)
@@ -202,3 +202,4 @@ while number of nodes with (n2 &gt; 0) &gt; required maximum number of colors
 </div>
 </body>
 </html>
+<!-- Magick Cache 26th March 2017 18:27 -->
\ No newline at end of file
index 5028509e55e4e6d3b540b73153a9cc0e4d9761d4..a3f6f12148dc4aed2e44ca55f92c14e097166b09 100644 (file)
@@ -128,7 +128,7 @@ file or data stream.
   By default any coder, delegate, filter, or file path is permitted.  Use a policy to deny access to, for example, the MPEG video delegate, or permit reading images from a file system but deny writing to that same file system.  Or use the resource policy to set resource limits.  Policies are useful for multi-user servers that want to limit the overall impact ImageMagick has on the system.  For example, to limit the maximum image size in memory to 100MB:
 
 <pre>
-&lt;policy domain="resource" name="area" value="100MB"/>
+&lt;policy domain="resource" name="area" value="100KP"/>
 </pre>
 
 Any image larger than this area limit is cached to disk rather than memory.
@@ -144,7 +144,7 @@ To limit the elapsed time of any ImageMagick command to 5 minutes, use this poli
 <pre>
 &lt;policy domain="resource" name="time" value="300"/>
 </pre>
-Define arguments for the memory, map, area, and disk resources with SI prefixes (.e.g 100MB).  In addition, resource policies are maximums for each instance of ImageMagick (e.g. policy memory limit 1GB, the <code>-limit 2GB</code> option exceeds policy maximum so memory limit is 1GB). </dd>
+Define arguments for the memory, map, and disk resources with SI prefixes (.e.g 100MB).  In addition, resource policies are maximums for each instance of ImageMagick (e.g. policy memory limit 1GB, the <code>-limit 2GB</code> option exceeds policy maximum so memory limit is 1GB). </dd>
 
 <dt><a href="https://www.imagemagick.org/source/quantization-table.xml">quantization-table.xml</a></dt>
   <dd>Custom JPEG quantization tables. Activate with <code>-define:q-table=quantization-table.xml</code>.</dd>
@@ -383,4 +383,4 @@ $MAGICK_FONT_PATH
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:46 -->
\ No newline at end of file
index 12722205fd16ecc51921cf6b160e722239a9c42a..cb89b9cf1be584a37be1f91ef62d12adc5fda097 100644 (file)
@@ -71,7 +71,7 @@
   &lt;policy domain="resource" name="map" value="512MiB"/>
   &lt;policy domain="resource" name="width" value="8KP"/>
   &lt;policy domain="resource" name="height" value="8KP"/>
-  &lt;policy domain="resource" name="area" value="128MB"/>
+  &lt;policy domain="resource" name="area" value="16KP"/>
   &lt;policy domain="resource" name="disk" value="1GiB"/>
   &lt;policy domain="resource" name="file" value="768"/>
   &lt;policy domain="resource" name="thread" value="2"/>
@@ -104,9 +104,9 @@ convert: no images defined `wizard.jpg'
   &lt;policy domain="coder" rights="read|write" pattern="{GIF,JPEG,PNG,WEBP}" />
 </pre>
 
-<p>As of ImageMagick 7.0.4-10, you can allocate the pixel cache with anonymous memory mapping rather than from heap.  As a consequence, the pixels are initialized to zero.  You can also shred any temporary files for increased security.  The value is the number of times to shred a temporary file.  For example,</p>
+<p>As of ImageMagick 7.0.5-4, you can allocate the pixel cache with anonymous memory mapping rather than from heap.  As a consequence, the pixels are initialized to zero.  You can also shred any temporary files for increased security.  The value is the number of times to shred a temporary file.  For example,</p>
 <pre>
-  &lt;policy domain="system" name="pixel-cache-memory" value="anonymous"/>
+  &lt;policy domain="cache" name="memory-map" value="anonymous"/>
   &lt;policy domain="system" name="shred" value="1"/>
 </pre>
 
@@ -138,7 +138,7 @@ Path: ImageMagick/policy.xml
     value: 256MiB
   Policy: Resource
     name: area
-    value: 128MB
+    value: 16KP
   Policy: Resource
     name: height
     value: 8KP
@@ -196,4 +196,4 @@ Path: [built-in]
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
index f46e39cdb2b7ab6780de24720c2670857e9c5cc7..69def95358f656edf3c53146f80b94dedbfe107d 100644 (file)
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
index d9df78f23cfbc30423b1cc5883d9edac409f3b65..1e862628b2032e287e1e81ef2fc571ca20c8592b 100644 (file)
@@ -272,4 +272,4 @@ stream -map i -storage-type double 'image.tif[100x100+30+40]' gray.raw
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:07 -->
\ No newline at end of file
index 3353c6f95c662d5121351fdffca942b957304b60..3f91b7a956405d0192c80dc3e38fbccdaf7a7333 100644 (file)
@@ -96,4 +96,4 @@ svn update
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:26 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 17:58 -->
\ No newline at end of file
index 53eefb28c7401049a86a655362abbbb281b7a4cf..9e167798adf40efb0a8446826bd446b81a6b1d8d 100644 (file)
@@ -155,4 +155,4 @@ USA
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 15:48 -->
\ No newline at end of file
index 16ae0511c3dbea380e0b5687044f62b04b95100c..724ce2be06f415df6a44294546e3da3988265c81 100644 (file)
@@ -182,4 +182,4 @@ convert wizard.png -quality 50 -define webp:lossless=true wizard.webp
 </div>
 </body>
 </html>
-<!-- Magick Cache 3rd March 2017 19:25 -->
\ No newline at end of file
+<!-- Magick Cache 26th March 2017 16:38 -->
\ No newline at end of file