如何查看libpng版本

时间:2015-11-10 16:07:56

标签: imagemagick libpng

我正在使用imagemagick并且据我所知,它将png文件的处理委托给libpng库,所以我想知道如何检查libpng版本是什么使用

3 个答案:

答案 0 :(得分:6)

最简单的方法是运行

convert -list format | grep PNG

identify -list format | grep PNG

报告正在使用的libpng和zlib版本。

有时你会看到像

这样的东西
  

PNG * rw-便携式网络图形(libpng 1.6.17,1.6.18)

这意味着ImageMagick是使用libpng-1.6.17编译的,并且运行时使用较新的共享库libpng-1.6.18。这是无害的,除非它显示两个不兼容的版本,例如(libpng-1.2.44,1.6.18)。

在Ubuntu和其他* nix平台上,您还可以从

获取有用的信息
ldd `which convert`

如果后一个命令显示两个或更多libpngNN实例,请不要感到困惑;如果你已经安装了freetype,那么coders / png.c正在使用一个解码PNG而另一个在freetype中使用。

答案 1 :(得分:1)

您可以尝试以下任一方法:

convert -debug coder xc: a.png 2>&1 | grep version

  IM version     = 6.9.2-5
  Libpng version = 1.6.18
  Zlib version   = 1.2.5

或者,这个

identify -list configure| grep CFLAGS

CFLAGS         -I/usr/include/libxml2 -I/usr/local/Cellar/libpng/1.6.18/include/libpng16 -I/usr/local/Cellar/freetype/2.6_1/include/freetype2 -I/usr/local/Cellar/fontconfig/2.11.1/include -I/usr/local/Cellar/freetype/2.6_1/include/freetype2 -I/usr/local/Cellar/pixman/0.32.8/include/pixman-1 -I/usr/local/Cellar/glib/2.46.1_1/include/glib-2.0 -I/usr/local/Cellar/glib/2.46.1_1/lib/glib-2.0/include -I/usr/local/opt/gettext/include -I/usr/local/Cellar/cairo/1.14.4/include/cairo -D_REENTRANT -I/usr/local/Cellar/libpng/1.6.18/include/libpng16 -I/usr/local/Cellar/freetype/2.6_1/include/freetype2 -I/usr/local/Cellar/fontconfig/2.11.1/include -I/usr/local/Cellar/freetype/2.6_1/include/freetype2 -I/usr/local/Cellar/pixman/0.32.8/include/pixman-1 -I/usr/local/Cellar/glib/2.46.1_1/include/glib-2.0 -I/usr/local/Cellar/glib/2.46.1_1/lib/glib-2.0/include -I/usr/local/opt/gettext/include -I/usr/local/Cellar/cairo/1.14.4/include/cairo -I/usr/local/Cellar/gdk-pixbuf/2.32.1/include/gdk-pixbuf-2.0 -I/usr/local/Cellar/librsvg/2.40.11/include/librsvg-2.0 -I/usr/local/Cellar/libpng/1.6.18/include/libpng16 -I/usr/local/Cellar/xz/5.2.2/include -I/usr/local/Cellar/freetype/2.6_1/include/freetype2 -I/usr/local/Cellar/freetype/2.6_1/include/freetype2 -I/usr/local/Cellar/fontconfig/2.11.1/include -I/usr/local/Cellar/freetype/2.6_1/include/freetype2    -g -O2 -Wall -mtune=core2 -fexceptions -D_FORTIFY_SOURCE=0 -D_THREAD_SAFE -pthread -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16
PCFLAGS        -DMAGICKCORE_HDRI_ENABLE=0 -DMAGICKCORE_QUANTUM_DEPTH=16

或者,在Ubuntu上

strace  convert xc: a.png 2>&1 | grep open | grep libpng

答案 2 :(得分:0)

这个Ruby单行只显示数字:

ruby -e 'im_formats = `convert -list format`; mdata = /(\(libpng\s)([^)]+)([)])/.match(im_formats); puts mdata[2];'
=> 1.6.34