X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=www%2Finstall-source.html;h=a4f2dc06599b8032ebf3c861db82bc0c06245d24;hb=579a0cb1a9652cc055383231139537594ba44cdd;hp=356bb94961316ab13076f1565e39fbdc48a5c42f;hpb=29dc865bd0ebcc51ba89cbde1d57715a044d18ac;p=imagemagick diff --git a/www/install-source.html b/www/install-source.html index 356bb9496..a4f2dc065 100644 --- a/www/install-source.html +++ b/www/install-source.html @@ -1,55 +1,57 @@ + + + + - - - - ImageMagick: Install from Source - - - - - - - - - - - - - - - - - - - - - + + + + Install from Source @ ImageMagick + + + + + + + + + + + + + + + + + + + + + -
- + -
@@ -65,9 +67,11 @@ identify -version

If the identify program executes and identifies itself as ImageMagick, you may not need to install ImageMagick from source unless you want to add support for additional image formats or upgrade to a newer version. You also have the option of installing a pre-compiled binary release. However, if you still want to install from source, choose a platform, Unix or Windows. Before installing from source, you may want to review recent changes to the ImageMagick distribution.

+

The authoritative source code repository is http://git.imagemagick.org/repos/ImageMagick. We maintain a source code mirror at GitHub. We test and deploy ImageMagick with Travis CI and AppVeyor.

+

Install from Unix Source

-

ImageMagick builds on a variety of Unix and Unix-like operating systems including Linux, Solaris, FreeBSD, Mac OS X, and others. A compiler is required and fortunately almost all modern Unix systems have one. Download ImageMagick.tar.gz from www.imagemagick.org or a mirrors and verify its message digest.

+

ImageMagick builds on a variety of Unix and Unix-like operating systems including Linux, Solaris, FreeBSD, Mac OS X, and others. A compiler is required and fortunately almost all modern Unix systems have one. Download ImageMagick.tar.gz from www.imagemagick.org or a mirrors and verify its message digest.

Unpack the distribution with this command:

@@ -77,7 +81,7 @@ tar xvzf ImageMagick.tar.gz

Next configure and compile ImageMagick:

-
 cd ImageMagick-6.9.1
./configure
make
+
 cd ImageMagick-7.0.3
./configure
make

If ImageMagick configured and compiled without complaint, you are ready to install it on your system. Administrator privileges are required to install. To install, type

@@ -102,15 +106,15 @@ sudo ldconfig /usr/local/lib
 make check
 
-

Congratulations, you have a working ImageMagick distribution and you are ready to use ImageMagick to convert, compose, or edit your images or perhaps you'll want to use one of the Application Program Interfaces for C, C++, Perl, and others.

+

Congratulations, you have a working ImageMagick distribution and you are ready to use ImageMagick to convert, compose, or edit your images or perhaps you'll want to use one of the Application Program Interfaces for C, C++, Perl, and others.

-

The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you don't have administrator privileges and what if you don't want to install ImageMagick in the default /../usr/local folder? You will find the answer to these questions, and more, in Advanced Unix Source Installation.

+

The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you don't have administrator privileges and what if you don't want to install ImageMagick in the default /../usr/local folder? You will find the answer to these questions, and more, in Advanced Unix Source Installation.

Install from Windows Source

Building ImageMagick source for Windows requires a modern version of Microsoft Visual Studio IDE. Users have reported success with the Borland C++ compiler as well. If you don't have a compiler you can still install a self-installing binary release.

-

Download ImageMagick-windows.zip from www.imagemagick.org or a mirrors and verify its message digest.

+

Download ImageMagick-windows.zip from www.imagemagick.org or a mirrors and verify its message digest.

You can unpack the distribution with WinZip or type the following from any MS-DOS Command Prompt window:

@@ -118,56 +122,44 @@ make check unzip ImageMagick-windows.zip -

Next, launch your Visual Studio IDE and choose Open->Project. Select the configure workspace from the ImageMagick-6.9.1/VisualMagick/configure folder and press Open. Choose Build->Build Solution +

Next, launch your Visual Studio IDE and choose Open->Project. Select the configure workspace from the ImageMagick-7.0.3/VisualMagick/configure folder and press Open. Choose Build->Build Solution to compile the program and on completion run the program.

-

[configure]

+

[configure]

-

Press Next and click on the multi-threaded static build. If you are using the Visual Studio 6.0 IDE, make sure no check is next to the Generate Visual Studio 7 format option. Now press, on Next twice and finally Finish. The configuration utility just created a workspace required to build ImageMagick from source. Choose Open->Project and select the VisualStaticMT workspace from the ImageMagick-6.9.1/VisualMagick/ folder. Finally, choose Build->Build Solution to compile and build the ImageMagick distribution.

+

Press Next and click on the multi-threaded static build. If you are using the Visual Studio 6.0 IDE, make sure no check is next to the Generate Visual Studio 7 format option. Now press, on Next twice and finally Finish. The configuration utility just created a workspace required to build ImageMagick from source. Choose Open->Project and select the VisualStaticMT workspace from the ImageMagick-7.0.3/VisualMagick/ folder. Finally, choose Build->Build Solution to compile and build the ImageMagick distribution.

To verify ImageMagick is working properly, launch a MS-DOS Command Prompt window and type

-
 cd ImageMagick-6.9.1 convert logo: image.jpg
+
 cd ImageMagick-7.0.3
convert logo: image.jpg

For a more comprehensive test, run the ImageMagick validation suite:

 validate
 
-

Congratulations, you have a working ImageMagick distribution under Windows and you are ready to use ImageMagick to convert, compose, or edit your images or perhaps you'll want to use one of the Application Program Interfaces for C, C++, Perl, and others.

+

Congratulations, you have a working ImageMagick distribution under Windows and you are ready to use ImageMagick to convert, compose, or edit your images or perhaps you'll want to use one of the Application Program Interfaces for C, C++, Perl, and others.

-

The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you want to install ImageMagick in a place other than the ImageMagick-6.9.1/VisualMagick/bin folder? Or perhaps you want to build and install the ImageMagickObject COM+ component. You will find the answer to these questions, and more, in Advanced Windows Source Installation.

+

The above instructions will satisfy a great number of ImageMagick users, but we suspect a few will have additional questions or problems to consider. For example, what does one do if ImageMagick fails to configure or compile? Or what if you want to install ImageMagick in a place other than the ImageMagick-7.0.3/VisualMagick/bin folder? Or perhaps you want to build and install the ImageMagickObject COM+ component. You will find the answer to these questions, and more, in Advanced Windows Source Installation.

- - - + + + \ No newline at end of file