14 Star 71 Fork 21

Gitee 极速下载/ImageMagick

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/ImageMagick/ImageMagick
克隆/下载
Install-mac.txt 2.90 KB
一键复制 编辑 原始数据 按行查看 历史
Mac OS X-specific Build instructions
In order to install ImageMagick on OSX, you will first need Apple's "Xcode",
which you can get by going to the AppStore and searching for "Xcode" and
installing it.
Next, you will need to install the "Xcode Command Line Tools" which includes
the compiler. You can install those by running the following command in the
Terminal:
xcode-select --install
Now that you have the necessary tools, you have a choice of how to install
ImageMagick. The simplest method is to use "homebrew", and that method is shown
first below. The alternative method is to install from source, which is shown
afterwards.
################################################################################
Method 1: Using "homebrew"
################################################################################
Go to http://brew.sh and copy the one-liner that installs "homebrew".
Paste that into the Terminal and run it.
For the very simplest, fastest, most basic ImageMagick installation, run:
brew install imagemagick
Test your installation by running:
identify -version
If you want to add support for extra features, such as HDRI, Perl, JPEG2000,
pango,fftw, TIFF or rsvg etc. you can configure the necessary switches by running:
brew edit imagemagick
then find the options you need and apply them like this:
brew reinstall -s imagemagick
If you have any problems with "homebrew", simply run:
brew doctor
and follow the doctor's advice.
################################################################################
Method 2: Compile from source - not necessary if you used "homebrew" method
################################################################################
Perform these steps as an administrator or with the sudo command:
Install MacPorts. Download and install http://www.macports.org/ and type the
following commands:
$magick> sudo port -v install freetype +bytecode
$magick> sudo port -v install librsvg
$magick> sudo port -v install graphviz +gs +wmf +jbig +jpeg2 +lcms
This installs many of the delegate libraries ImageMagick will utilize such as
JPEG and FreeType.
Use the port command to install any delegate libraries you require, for example:
$magick> sudo port install jpeg
Now let's build ImageMagick:
Download the ImageMagick source distribution and verify the distribution
against its message digest.
Unpack and change into the top-level ImageMagick directory:
$magick> tar xvfz ImageMagick-7.0.7-0.tar.gz
$magick> cd ImageMagick-7.0.7
Configure ImageMagick:
$magick> ./configure --prefix=/opt --with-quantum-depth=16 \
--disable-dependency-tracking --without-perl
Build ImageMagick:
$magick> make
Install ImageMagick:
$magick> sudo make install
To verify your install, type
$magick> /opt/local/bin/identify -list font
to list all the fonts ImageMagick knows about.
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/mirrors/ImageMagick.git
git@gitee.com:mirrors/ImageMagick.git
mirrors
ImageMagick
ImageMagick
main

搜索帮助