From: Cristy Date: Sat, 30 Jul 2016 21:25:22 +0000 (-0400) Subject: ... X-Git-Tag: 7.0.2-7~7 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e07797114766b2d2a3304d94ca0cbb051d5b182b;p=imagemagick ... --- diff --git a/www/ImageMagickObject.html b/www/ImageMagickObject.html index d54f6fa26..db367257a 100644 --- a/www/ImageMagickObject.html +++ b/www/ImageMagickObject.html @@ -114,6 +114,7 @@ regsvr32 /u /s ImageMagickObject.dll

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -128,3 +129,4 @@ regsvr32 /u /s ImageMagickObject.dll + \ No newline at end of file diff --git a/www/advanced-unix-installation.html b/www/advanced-unix-installation.html index 85ed7288d..384299635 100644 --- a/www/advanced-unix-installation.html +++ b/www/advanced-unix-installation.html @@ -77,7 +77,7 @@ tar xvzf ImageMagick.tar.gz

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:

-
 cd ImageMagick-7.0.2-0 ./configure
+
 cd ImageMagick-7.0.2-6 ./configure

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:

@@ -534,7 +534,7 @@ sudo port install jpeg

Download the ImageMagick source distribution and verify the distribution against its message digest.

Unpack and change into the top-level ImageMagick directory:

-
 tar xvzf ImageMagick-7.0.2-0.tar.gz cd ImageMagick-7.0.2-0

Configure ImageMagick:

+
 tar xvzf ImageMagick-7.0.2-6.tar.gz cd ImageMagick-7.0.2-6

Configure ImageMagick:

 ./configure --prefix=/opt --with-quantum-depth=16 \
   --disable-dependency-tracking --with-x=yes \
@@ -566,7 +566,7 @@ display -display :0
 
 

Although you can download and install delegate libraries yourself, many are already available in the GnuWin32 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,

-
 tar jxvf ImageMagick-7.0.2-?.tar.bz2
cd ImageMagick-7.0.2-0
export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"
export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"
./configure --without-perl
make
sudo make install
+
 tar jxvf ImageMagick-7.0.2-?.tar.bz2
cd ImageMagick-7.0.2-6
export CPPFLAGS="-Ic:/Progra~1/GnuWin32/include"
export LDFLAGS="-Lc:/Progra~1/GnuWin32/lib"
./configure --without-perl
make
sudo make install

Dealing with Unexpected Problems

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

@@ -621,6 +621,7 @@ identify -list format

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -635,3 +636,4 @@ identify -list format + \ No newline at end of file diff --git a/www/advanced-windows-installation.html b/www/advanced-windows-installation.html index f41fa11a7..ef6e2ee6f 100644 --- a/www/advanced-windows-installation.html +++ b/www/advanced-windows-installation.html @@ -330,7 +330,7 @@ dmake release

  1. Double-click on - VisualMagick/bin/ImageMagick-7.0.2-0-Q16-windows-dll.exe + VisualMagick/bin/ImageMagick-7.0.2-6-Q16-windows-dll.exe to launch the ImageMagick binary distribution.
  2. Complete the installer screens to install ImageMagick on your system.
@@ -385,6 +385,7 @@ _MAGICKMOD_

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -399,3 +400,4 @@ _MAGICKMOD_ + \ No newline at end of file diff --git a/www/animate.html b/www/animate.html index f496f5eec..d34ada7a0 100644 --- a/www/animate.html +++ b/www/animate.html @@ -516,6 +516,7 @@ transparent, extract, background, or shape the alpha channel

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -530,3 +531,4 @@ transparent, extract, background, or shape the alpha channel + \ No newline at end of file diff --git a/www/api.html b/www/api.html index a39516e7d..88dec27d2 100644 --- a/www/api.html +++ b/www/api.html @@ -164,6 +164,7 @@

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -178,4 +179,4 @@ - \ No newline at end of file + \ No newline at end of file diff --git a/www/architecture.html b/www/architecture.html index 479aacb2b..85d7e04d1 100644 --- a/www/architecture.html +++ b/www/architecture.html @@ -134,7 +134,7 @@ if (image == (Image *) NULL)

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 ‑version option:

-
 identify -versionVersion: ImageMagick 7.0.2-0 2016-06-08 Q16 http://www.imagemagick.org
+
 identify -versionVersion: ImageMagick 7.0.2-6 2016-06-08 Q16 http://www.imagemagick.org

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.

Access the Pixel Cache

@@ -1406,6 +1406,7 @@ ModuleExport size_t analyzeImage(Image **images,const int argc,const char **argv

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -1420,3 +1421,4 @@ ModuleExport size_t analyzeImage(Image **images,const int argc,const char **argv + \ No newline at end of file diff --git a/www/binary-releases.html b/www/binary-releases.html index c60db1d44..934ab12f0 100644 --- a/www/binary-releases.html +++ b/www/binary-releases.html @@ -75,9 +75,9 @@ - ImageMagick-7.0.2-0.x86_64.rpm - download - download + ImageMagick-7.0.2-6.x86_64.rpm + download + download Redhat / CentOS 7.1 x86_64 RPM @@ -114,7 +114,7 @@

ImageMagick RPM's are self-installing. Simply type the following command and you're ready to start using ImageMagick:

-
 rpm -Uvh ImageMagick-7.0.2-0.x86_64.rpm
+
 rpm -Uvh ImageMagick-7.0.2-6.x86_64.rpm

For other systems, create (or choose) a directory to install the package into and change to that directory, for example:

@@ -147,7 +147,7 @@ export LD_LIBRARY_PATH
 

Finally, to verify ImageMagick is working properly, type the following on the command line:

-convert logo: logo.gif
+magick logo: logo.gif
 identify logo.gif
 display logo.gif
 
@@ -215,7 +215,7 @@ export DYLD_LIBRARY_PATH="$MAGICK_HOME/lib/"

Finally, to verify ImageMagick is working properly, type the following on the command line:

-convert logo: logo.gif
+magick logo: logo.gif
 identify logo.gif
 display logo.gif
 
@@ -249,7 +249,7 @@ display logo.gif
 ./imagemagick_compile.sh VERSION
 
-

where VERSION is the version of ImageMagick you want to compile (i.e.: 7.0.2-0, svn, ...)

+

where VERSION is the version of ImageMagick you want to compile (i.e.: 7.0.2-6, svn, ...)

This script compiles ImageMagick as a static library to be included in iOS projects and adds support for

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -878,3 +879,4 @@ round

+ \ No newline at end of file diff --git a/www/magick-wand.html b/www/magick-wand.html index b9395f6ee..eeb199479 100644 --- a/www/magick-wand.html +++ b/www/magick-wand.html @@ -367,6 +367,7 @@ int main(int argc,char **argv)

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -381,3 +382,4 @@ int main(int argc,char **argv) + \ No newline at end of file diff --git a/www/magick.html b/www/magick.html index 2c6d108bf..79e8be218 100644 --- a/www/magick.html +++ b/www/magick.html @@ -1308,6 +1308,7 @@ transparent, extract, background, or shape the alpha channel

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -1322,3 +1323,4 @@ transparent, extract, background, or shape the alpha channel + \ No newline at end of file diff --git a/www/miff.html b/www/miff.html index 77f89a289..0b8d4eda7 100644 --- a/www/miff.html +++ b/www/miff.html @@ -229,6 +229,7 @@ or fewer colors in the image, each byte of image data contains an index value. I

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -243,3 +244,4 @@ or fewer colors in the image, each byte of image data contains an index value. I + \ No newline at end of file diff --git a/www/mogrify.html b/www/mogrify.html index ca0ca6ff0..f66c711b7 100644 --- a/www/mogrify.html +++ b/www/mogrify.html @@ -728,11 +728,6 @@ transparent, extract, background, or shape the alpha channel add Netscape loop extension to your GIF animation - - -mask filename - associate a mask with the image - - -mattecolor color frame color @@ -913,6 +908,11 @@ transparent, extract, background, or shape the alpha channel random threshold the image + + -read-mask filename + associate a read mask with the image + + -red-primary point chromaticity red primary point @@ -1268,6 +1268,11 @@ transparent, extract, background, or shape the alpha channel write images to this file + + -write-mask filename + associate a write mask with the image + + @@ -1276,6 +1281,7 @@ transparent, extract, background, or shape the alpha channel

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -1290,3 +1296,4 @@ transparent, extract, background, or shape the alpha channel + \ No newline at end of file diff --git a/www/montage.html b/www/montage.html index 577b6c6d1..7a073b7d3 100644 --- a/www/montage.html +++ b/www/montage.html @@ -622,6 +622,7 @@ transparent, extract, background, or shape the alpha channel

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -636,3 +637,4 @@ transparent, extract, background, or shape the alpha channel + \ No newline at end of file diff --git a/www/motion-picture.html b/www/motion-picture.html index 392963958..92df42512 100644 --- a/www/motion-picture.html +++ b/www/motion-picture.html @@ -178,6 +178,7 @@ convert bluebells.dpx -define dpx:television.time.code=10:00:02:15 bluebells-001

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -192,3 +193,4 @@ convert bluebells.dpx -define dpx:television.time.code=10:00:02:15 bluebells-001 + \ No newline at end of file diff --git a/www/opencl.html b/www/opencl.html index fc6552027..15505c12e 100644 --- a/www/opencl.html +++ b/www/opencl.html @@ -106,6 +106,7 @@ InitImageMagickOpenCL(MAGICK_OPENCL_DEVICE_SELECT_USER, (void*)(myDevices+2), NU

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -120,3 +121,4 @@ InitImageMagickOpenCL(MAGICK_OPENCL_DEVICE_SELECT_USER, (void*)(myDevices+2), NU + \ No newline at end of file diff --git a/www/openmp.html b/www/openmp.html index 29ba7cde8..17dd0d303 100644 --- a/www/openmp.html +++ b/www/openmp.html @@ -85,6 +85,7 @@ Performance[8]: 40i 4.831ips 0.872e 15.680u 0:02.070

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -99,3 +100,4 @@ Performance[8]: 40i 4.831ips 0.872e 15.680u 0:02.070 + \ No newline at end of file diff --git a/www/perl-magick.html b/www/perl-magick.html index 7746efebd..f86d496c7 100644 --- a/www/perl-magick.html +++ b/www/perl-magick.html @@ -2589,6 +2589,7 @@ Image::Magick->QuantumDepth

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -2603,3 +2604,4 @@ Image::Magick->QuantumDepth + \ No newline at end of file diff --git a/www/porting.html b/www/porting.html index 682feaca9..b601b58bc 100644 --- a/www/porting.html +++ b/www/porting.html @@ -380,7 +380,7 @@ specific

Most algorithms update the red, green, blue, black (for CMYK), and alpha channels. Most operators will blend alpha the other color channels, but other operators (and situations) may require this blending to be disabled, and is -currently done by removing alpha from teh active channels via +currently done by removing alpha from the active channels via -channel option. (e.g. convert castle.gif -channel RGB -negate castle.png).

@@ -518,7 +518,7 @@ convert wizard.png mask.pgm -channel-fx '| gray=>read-mask' wizard-mask.png
prevent updates to image pixels specified by the mask
-region
-
not yet implemented in "magick". (very soon)
+
supported in ImageMagick 7.0.2-6 and above
-script {file}
In "magick", stop the processing of command line arguments as @@ -642,6 +642,7 @@ example "+annotate", "+resize", "+clut", and "+draw" .

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -656,3 +657,4 @@ example "+annotate", "+resize", "+clut", and "+draw" .

+ \ No newline at end of file diff --git a/www/quantize.html b/www/quantize.html index b74c1fc9d..6e9e8876f 100644 --- a/www/quantize.html +++ b/www/quantize.html @@ -186,6 +186,7 @@ while number of nodes with (n2 > 0) > required maximum number of colors

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -200,3 +201,4 @@ while number of nodes with (n2 > 0) > required maximum number of colors + \ No newline at end of file diff --git a/www/resources.html b/www/resources.html index b3e36e96d..1e263d1c4 100644 --- a/www/resources.html +++ b/www/resources.html @@ -367,6 +367,7 @@ $MAGICK_FONT_PATH

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -381,3 +382,4 @@ $MAGICK_FONT_PATH + \ No newline at end of file diff --git a/www/search.html b/www/search.html index 4cb3b447d..2d8a121c6 100644 --- a/www/search.html +++ b/www/search.html @@ -96,6 +96,7 @@

Donate • Sitemap • Related • + Security • Architecture

Back to top • diff --git a/www/security-policy.html b/www/security-policy.html index 2fa3ee7c0..cb2d48cfd 100644 --- a/www/security-policy.html +++ b/www/security-policy.html @@ -135,7 +135,7 @@ Path: ImageMagick/policy.xml value: 6 Policy: Cache name: shared-secret - value: My voice is my passport. Verify me. + value: replace with your secret phrase Policy: Path rights: None pattern: @* @@ -166,3 +166,4 @@ Path: [built-in] + \ No newline at end of file diff --git a/www/sitemap.html b/www/sitemap.html index 45e5cb601..25b35afaf 100644 --- a/www/sitemap.html +++ b/www/sitemap.html @@ -219,6 +219,7 @@

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -233,3 +234,4 @@ + \ No newline at end of file diff --git a/www/sponsors.html b/www/sponsors.html index 39cc17c69..89cb76838 100644 --- a/www/sponsors.html +++ b/www/sponsors.html @@ -40,7 +40,7 @@ Options Resources Develop - Search + Search Community diff --git a/www/stream.html b/www/stream.html index ded525718..1c84d281f 100644 --- a/www/stream.html +++ b/www/stream.html @@ -256,6 +256,7 @@ stream -map i -storage-type double 'image.tif[100x100+30+40]' gray.raw

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -270,3 +271,4 @@ stream -map i -storage-type double 'image.tif[100x100+30+40]' gray.raw + \ No newline at end of file diff --git a/www/subversion.html b/www/subversion.html index 67319ff02..29b0adb31 100644 --- a/www/subversion.html +++ b/www/subversion.html @@ -80,6 +80,7 @@ svn update

Donate • Sitemap • Related • + Security • Architecture

Back to top • @@ -94,3 +95,4 @@ svn update + \ No newline at end of file diff --git a/www/support.html b/www/support.html index 3fa4eb025..cd38e5fd4 100644 --- a/www/support.html +++ b/www/support.html @@ -81,7 +81,6 @@

ImageMagick support can take many forms. The following are some possibilities: