GraphicsMagick 号称图像处理领域的瑞士军刀

时间:2021-07-17 02:52:36
2012-09-13 10:15 2496人阅读 评论(0) 收藏 举报
GraphicsMagick 号称图像处理领域的瑞士军刀 分类:
java技术(52) GraphicsMagick 号称图像处理领域的瑞士军刀
简介 
        GraphicsMagick号称图像处理领域的瑞士军刀。 短小精悍的代码却提供了一个鲁棒、高效的工具和库集合,来处理图像的读取、写入和操作,支持超过88中图像格式,包括重要的DPX、GIF、JPEG、JPEG-2000、PNG、PDF、PNM和TIFF。 
        通过使用OpenMP可是利用多线程进行图片处理,增强了通过扩展CPU提高处理能力。GraphicsMagick可以再绝大多数的平台上使用,Linux、Mac、Windows都没有问题。

GraphicsMagick支持大图片的处理,并且已经做过GB级别的图像处理实验。GraphicsMagick能够动态的生成图片,特别适用于互联网的应用。可以用来处理调整尺寸、旋转、加亮、颜色调整、增加特效等方面。GaphicsMagick不仅支持命令行的模式,同时也支持C、C++、Perl、PHP、Tcl、Ruby等的调用。事实上,GraphicsMagick是从 ImageMagick 5.5.2 分支出来的,但是现在他变得更稳定和优秀,下面就是两个之间的一些比较。

安装

  • tar -xvf GraphicsMagick-1.3.12.tar
  • ./configure --without-prel --enable-shared --disable-openmp
  • make
  • make install

示例:GraphicsMagick+im4java压缩图片

  1. /**
  2. * 先缩放,后居中切割图片
  3. * @param srcPath 源图路径
  4. * @param desPath 目标图保存路径
  5. * @param rectw 待切割在宽度
  6. * @param recth 待切割在高度
  7. * @throws IM4JavaException
  8. * @throws InterruptedException
  9. * @throws IOException
  10. */
  11. public static void cropImageCenter(String srcPath, String desPath, int rectw, int recth) throws IOException, InterruptedException, IM4JavaException{
  12. IMOperation op = new IMOperation();
  13. op.addImage();
  14. op.resize(rectw, recth, '^').gravity("center").extent(rectw, recth);
  15. op.addImage();
  16. ConvertCmd convert = new ConvertCmd(true);
  17. convert.run(op, srcPath, desPath);
  18. }
  1. /**
  2. * 先缩放,后居中切割图片
  3. * @param srcPath 源图路径
  4. * @param desPath 目标图保存路径
  5. * @param rectw 待切割在宽度
  6. * @param recth 待切割在高度
  7. * @throws IM4JavaException
  8. * @throws InterruptedException
  9. * @throws IOException
  10. */
  11. public static void cropImageCenter(String srcPath, String desPath, int rectw, int recth) throws IOException, InterruptedException, IM4JavaException{
  12. IMOperation op = new IMOperation();
  13. op.addImage();
  14. op.resize(rectw, recth, '^').gravity("center").extent(rectw, recth);
  15. op.addImage();
  16. ConvertCmd convert = new ConvertCmd(true);
  17. convert.run(op, srcPath, desPath);
  18. }

问题 
        如果是windows环境安装则需要设置path环境配置,如D:\Program Files\GraphicsMagick-1.3.12-Q16;(此为GraphicsMagick的安装目录),各种版本官网下载

报错信息"gm convert: No decode delegate for this image format (abc.jpg)”系图片库缺失所致

引用
http://qing.weibo.com/1838939461/6d9bfd4533000j33.html 
./configure结果

GraphicsMagick is configured as follows. Please verify that this 
configuration matches your expectations.

Host system type : x86_64-unknown-linux-gnu 
Build system type : x86_64-unknown-linux-gnu

Option            Configure option              Configured value 
----------------------------------------------------------------- 
Shared libraries  --enable-shared=no            no 
Static libraries  --enable-static=yes           yes 
GNU ld            --with-gnu-ld=yes             yes 
Quantum depth     --with-quantum-depth=8        8

Delegate Configuration: 
BZLIB             --with-bzlib=yes              no 
DPS               --with-dps=yes                no 
FlashPIX          --with-fpx=no                 no 
FreeType 2.0      --with-ttf=yes                no 
Ghostscript       None                          gs (unknown) 
Ghostscript fonts --with-gs-font-dir=default    none 
Ghostscript lib   --with-gslib=no               no 
JBIG              --with-jbig=yes               no 
JPEG v1           --with-jpeg=yes               no (需安装 jpeg delegate library) 
JPEG-2000         --with-jp2=yes                no 
LCMS              --with-lcms=yes               no 
Magick++          --with-magick-plus-plus=yes   yes 
PERL              --with-perl=no                no 
PNG               --with-png=yes                no(需安装 png delegate library) 
TIFF              --with-tiff=yes               no 
TRIO              --with-trio=yes               no 
Windows fonts     --with-windows-font-dir=      none 
WMF               --with-wmf=yes                no 
X11               --with-x=                     no 
XML               --with-xml=yes                no 
ZLIB              --with-zlib=yes               yes 
make 
sudo make install 
Delegate Library安装

JPEG delegate library 
> gm convert 470f1bb8c5a98.jpg -resize 100x100 out.jpg 
gm convert: No decode delegate for this image format (470f1bb8c5a98.jpg). 
官方建议:This exception indicates that an external delegate library or its headers were not available when ImageMagick was built. To add support for the image format, download and install the requisite delegate library and its header files and reconfigure, rebuild, and reinstall ImageMagick. As an example, lets add support for the JPEG image format. First we install the JPEG RPMS: 
原因是没有安装jpeg的包,这个可以在之前configure的结果中看出来,此时GraphicsMagick需要重新configure及build。 
1)在GraphicsMagick官方网站提供的delegates下载页面中找到jpeg的包:libjpeg-6b.tar.gz。 
2)安装jpeg delegate library. configure -> make -> sudo make install 
3)重新安装GraphicsMagick (configure时会发现jpeg已安装)

PNG delegate library 
gm convert: No decode delegate for this image format (ben3.png). 
1)在sourceforge下载libpng-1.4.7.tar.gz  (libpng-1.5.2.tar.gz 版本装上后,GraphicsMagick 在make时会报一个‘去引用’的错,原因未知) 
2)安装png delegate library. configure -> make -> sudo make install 
3)重新安装GraphicsMagick (configure时会发现png已安装) 
注: 由于之前安装过一次libpng-1.5.2,rm /usr/local/lib/libpng*,在重新安装了1.4.7后,仍有错误:gm: error while loading shared libraries: libpng14.so.14: cannot open shared object file: No such file or directory. 
运行sudo ldconfig进行自动清理。

资料 
IM4JAVA+GraphicsMagick处理网站图片:http://javantsky.iteye.com/blog/747807 
关于GraphicsMagick+im4java的研究心得:http://yunduxiaocheng-gmail-com.iteye.com/blog/919457 
GraphicsMagick+im4java图片处理方法:http://www.beiqiu.com/article/106.html 
GraphicsMagick官网:http://www.graphicsmagick.org/index.html 
GraphicsMagick官网delegates下载页面:ftp://ftp.graphicsmagick.org/pub/GraphicsMagick/delegates/

GraphicsMagick 号称图像处理领域的瑞士军刀的更多相关文章

  1. Htop/Glances/Dstat性能测试系统监控工具领域的瑞士军刀

    原文链接:https://mp.weixin.qq.com/s/TvfzIy4uXHPOFQ1h5Q4KWg 建议点击原文链接查看 续上篇分享的[性能测试工具],今天整理了常用的系统监控工具,当然有特 ...

  2. GraphicsMagick为图片添加水印

    GraphicsMagick号称图像处理领域的瑞士军刀.提供了健壮及高效的图像处理工具包和库,支持超过88种主流图片格式包括:BMP,GIF,JPEG,JPEG-2000,PNG,PDF,PNM,TI ...

  3. 转:GraphicsMagick介绍及安装

    原文来自于:http://www.cnblogs.com/cocowool/archive/2010/08/16/1800954.html GraphicsMagick 当前稳定版本:1.3.12(发 ...

  4. 安装 GraphicsMagick

    yum -y install GraphicsMagick GraphicsMagick-devel 实际试了试,上面yum的方式不好使,下面是我实际安装过程: 1.下载最新版 wget ftp:// ...

  5. Python10个图像处理工具

    原文地址:https://cloud.tencent.com/developer/article/1498116 译者 | 小韩 来源 | towardsdatascience [磐创AI导读]:本篇 ...

  6. 十个python图像处理工具

    介绍 如今的世界存在了大量的数据,图像数据是重要的组成部分.如果要利用这些图片,需要对图像进行处理,提高图片质量或提取图片内容信息. 图像处理的常见操作包括图像显示,基本操作如裁剪,翻转,旋转等,图像 ...

  7. 图像处理、计算机视觉与模式识别“SCI期刊和*会议”总结

    期刊: best (1) IEEE Transactions on Pattern Analysis and Machine Intelligence,IEEE模式分析与机器智能汇刊,简称PAMI,是 ...

  8. MATLAB数字图像处理(一)基础操作和傅立叶变换

    数字图像处理是一门集计算机科学.光学.数学.物理学等多学科的综合科学.随着计算机科学的发展,数字图像处理技术取得了巨大的进展,呈现出强大的生命力,已经在多种领域取得了大量的应用,推动了社会的发展.其中 ...

  9. 计算机视觉和模式识别领域SCI期刊介绍

    原帖地址: http://blog.sciencenet.cn/blog-370458-750306.html 关于计算机视觉和模式识别领域的期刊并不是很多,下面我收集了一些该领域的代表性期刊,并介绍 ...

随机推荐

  1. 基于 Koa平台Node.js开发的KoaHub.js连接打印机的代码

    最近好多小伙伴都在做微信商城的项目,那就给大家分享一个基于 Koa.js 平台的 Node.js web 开发的框架连接微信易联云打印机接口的代码,供大家学习.koahub-yilianyun 微信易 ...

  2. 去除IE10自带的清除按钮

    最近在工作中碰到了一个问题,原本在IE8,IE9下正常的input表单,在IE10下会出现清除按钮,即表单右侧会出现一个可以清除该表单内容的小叉.由于之前一直没有兼容过IE10,所以我专门搜了下原因. ...

  3. 机器学习之--kmeans聚类简单算法实例

    import numpy as np import sklearn.datasets #加载原数据 import matplotlib.pyplot as plt import random #点到各 ...

  4. Java中string.equalsIgnoreCase("0")与"0".equalsIgnoreCase(string)的区别:

    string.equalsIgnoreCase("0"):如果string为null,会抛出java.lang.NullPointerException异常. "0&qu ...

  5. Python“Non-ASCII character 'xe5' in file”报错问题

    今天在编译一个Python程序的时候,一直出现“Non-ASCII character 'xe5' in file”报错问题 SyntaxError: Non-ASCII character '\xe ...

  6. go语言学习--go的临时对象池--sync.Pool

    一个sync.Pool对象就是一组临时对象的集合.Pool是协程安全的. Pool用于存储那些被分配了但是没有被使用,而未来可能会使用的值,以减小垃圾回收的压力.一个比较好的例子是fmt包,fmt包总 ...

  7. 利用 share code 插件同步代码片段

    利用 Settings Sync可以同步 VS code 配置,但它只能同步插件,利用  Settings Sync 再配合 share code 插件可以同步自定义代码片段,可以把 VS code ...

  8. 两条命令在Linux主机之间建立信任关系

    ssh-keygen -t rsa -P "" -f ~/.ssh/id_rsa //生成当前用户密钥 ssh-copy-id -i /root/.ssh/id_rsa.pub r ...

  9. B*树的定义

    B*树是B+树的变体,在B+树的非根和非叶子结点再增加指向兄弟的指针: B*树定义了非叶子结点关键字个数至少为(2/3)*M,即块的最低使用率为2/3(代替B+树的1/2). 所以,B*树分配新结点的 ...

  10. webpack踩过的坑(总结)

    使用process.argv 获取命令行使用的参数 // 判断是否带production参数,production会压缩js var isprod = false; for (var i in pro ...