ImageMagick

Install ImageMagick from Source

www.imagemagick.org

Chances are, ImageMagick is already installed on your computer if you are using some flavor of Unix, but that it is not installed if you are using some form of Windows. In either case, you can type the following to find out.

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 orWindows. Before
installing from source, you may want to review recentchanges to the ImageMagick distribution.

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. DownloadImageMagick.tar.gz
fromwww.imagemagick.org or a mirrors and verify its message digest.

Unpack the distribution with this command:

Next configure and compile ImageMagick:

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

You may need to configure the dynamic linker run-time bindings:

Finally, verify the ImageMagick install worked properly, type

For a more comprehensive test, run the ImageMagick validation suite. Ghostscript is a prerequisite, otherwise the EPS, PS, and PDF tests will fail.

Congratulations, you have a working ImageMagick distribution and you are ready to use ImageMagick toconvert, compose, or edit your images or perhaps you'll want to use one of theApplication
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, inAdvanced 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.

时间: 2024-12-03 02:22:28

ImageMagick的相关文章

用php和imagemagick来处理图片文件的上传和缩放处理 (转贴)

上传 用php和imagemagick来处理图片文件的上传和缩放处理php处理文件的上传是很简便的,但是如果要对上传的图片进行缩放处理的话,虽说能用GD来做,但是要进行比较繁琐的处理.ImageMagick是一个图像处理包,一般的Linux软件包中都会有的.它包含了许多处理图像的工具,它可以进行图像文件格式的转化还可以对图像进行各种处理,其中我们将用到它的图像缩放功能.这个通过它的软件包中的工具convert来实现,这样来调用        convert -geometry 宽x高 源文件 缩

php 缩略图生成类:支持imagemagick及gd库两种处理

功能: 1.按比例缩小/放大 2.填充背景色 3.按区域裁剪 4.添加水印,包括水印的位置,透明度等 使用imagemagick/GD库实现,imagemagick地址:www.imagemagick.org 需要安装imagemagick,安装方法如下:点击查看 PicThumb.class.php <?php /** 缩略图生成类,支持imagemagick及gd库两种处理 * Date: 2013-07-15 * Author: fdipzone * Ver: 1.2 * * Func:

如何安装imagemagick

1.下载ImageMagick http://www.imagemagick.org/download/ 下载 ImageMagick-6.8.5-10.tar.gz ,下载完毕后开始进行安装. cd ./Downloads tar xzvf ImageMagick-6.8.5-10.tar.gz 2.安装第三方图片库 ImageMagick在处理图片时需要依赖jpeg,png等第三方图片库. 第三方图片库下载地址:http://www.imagemagick.org/download/dele

imagemagick使用指南

当你使用了ImageMagick,你将会发现,大部分的操作,你只要在终端下动动键盘即可,省得你用鼠标点来点去. 下面,我对ImageMagick的主要功能做一个简单的介绍,其中覆盖的大都是人们常用的一些功能,如果你要全面的了解它的知识,你可以看看它的man手册. convert convert顾名思义就是对图像进行转化,它主要用来对图像进行格式的转化,同时还可以做缩放.剪切.模糊.反转等操作. 格式转化 比如把 foo.jpg 转化为 foo.png: convert foo.jpg foo.p

ImageMagick图像魔术师基本使用指南

图像魔术师ImageMagick是一款命令行图像处理软件,某些在Photoshop之类的图像软件中要进行一系列步骤的繁琐操作,它只需要输入一行命令就可以解决,效率奇高.当然,命令行操作毕竟有着很大的局限性,只要把它作为一个辅助工具来看就可以. 因为ImageMagick是一个命令行程序,不容易看出程序安装是否正常,所以检测一下.单击"开始→运行",在打开的"运行"窗口中输入cmd,按回车键确定,打开Windows XP的命令提示符窗口.输入命令convert log

图片处理神器ImageMagick以及PHP的imagick扩展

ImageMagick是一套功能强大.稳定而且开源的工具集和开发包,可以用来读.写和处理超过89种基本格式的图片文件,包括流行的TIFF.JPEG.GIF. PNG.PDF以及PhotoCD等格式.利用ImageMagick,你可以根据web应用程序的需要动态生成图片, 还可以对一个(或一组)图片进行改变大小.旋转.锐化.减色或增加特效等操作,并将操作的结果以相同格式或其它格式保存,对图片的操作,即可以通过命令行进行,也可以用C/C++.Perl.Java.PHP.Python或Ruby编程来完

关于ImageMagick在windows下处理dcm图片的问题

问题描述 关于ImageMagick在windows下处理dcm图片的问题 各位大神,本人最近遇到一个问题,特来请教.需求:处理dcm(dicom3.0标准)图片,压缩到100K左右的web格式,转换为jpg,用java代码来操作.在linux上用ImageMagick来处理是可以用的,因为各种library加上之后,重新编译就可以运行成功,但现在业务上的需求是用java写一个客户端在客户的电脑上运行,一般说来是windows系统(xp更多),这个客户端直接在客户电脑上压缩和转换dcm图片为jp

ImageMagick命令行使用方法

这是 2010 年 1 月左右我发出的一篇译文, 现在原文应该稍有修改了. 本文是对官方网站上 Command Line Processing 这篇文档的翻译. 让我们开始吧. ImageMagick 的命令行形式有时非常的简单, 像下面这样: $ convert image.jpg image.png 可有时, 它也非常的复杂: $ convert label.gif +matte \ \( +clone -shade 110x90 -normalize -negate +clone -com

ImageMagick 与 JMagick

ImageMagick 官网 http://www.imagemagick.org/script/index.php JMagick 官网 http://www.jmagick.org/index.html (官网的源码svn:https://jmagick.svn.sourceforge.net/svnroot/jmagick) 1.  简介     ImageMagick 是一个功能很强的图片处理程序.可应用在多种操作系统平台上. Jmagick通过jni操作ImageMagick.    

有没谁在C#里面用过ImageMagick 进行图片格式转换啊

问题描述 要支持pdf,psd等格式转成png或jpg,有没谁在C#里面用过ImageMagick进行图片格式转换啊? 解决方案 解决方案二:用這個解决方案三:再來兩個