在Perl中安装GD.pm时启用PNG支持

时间:2014-07-25 13:07:16

标签: perl gd osx-mavericks cpan circos

我已经安装了GD.pm.我想确保它支持PNG。 所以要检查我是否这样做:

$ perl -e 'use GD; $im=GD::Image->new(); print $im->can("png") ? "yes" : "no" , "\n";'
no

如你所见。它打印no。 然后我通过以下过程从CPAN下载最新的GD:

> wget http://search.cpan.org/CPAN/authors/id/L/LD/LDS/GD-2.53.tar.gz
> tar xvfz GD-2.53.tar.gz
> cd GD-2.44
> perl Makefile.PL 
> make
> make test
> make install

我希望它包含这样的行,这是已安装的PNG支持的标志:

Included Features:          GD_XPM GD_JPEG GD_FONTCONFIG GD_FREETYPE
GD_PNG GD_GIF GD_GIFANIM GD_OPENPOLYGON GD_UNCLOSEDPOLY GD_ANIMGIF
GD_FTCIRCLE VERSION_33

但我只得到了这个:

Included Features:          GD_GIF GD_GIFANIM GD_OPENPOLYGON

sudo perl Makefile.PL -options "JPEG,FT,PNG"我没有成功使用此命令。 它没有显示GD_PNG

使用PNG支持安装GD.pm的方法是什么?

我需要它来运行circos.

更新:

安装libpng并重建GD

$ brew update && brew upgrade
$ brew install gd
$ brew install libpng
$ sudo cpan 
  cpan > force install GD

据我所知,我收到了这个错误:

$ perl -e 'use GD; $im=GD::Image->new(); print $im->can("png") ? "yes" : "no" , "\n";'
Can't load '/Library/Perl/5.16/darwin-thread-multi-2level/auto/GD/GD.bundle' for module GD: dlopen(/Library/Perl/5.16/darwin-thread-multi-2level/auto/GD/GD.bundle, 1): Library not loaded: libpng15.15.dylib
  Referenced from: /usr/local/lib/libfreetype.6.dylib
  Reason: image not found at /System/Library/Perl/5.16/darwin-thread-multi-2level/DynaLoader.pm line 194.
 at -e line 1.
Compilation failed in require at -e line 1.
BEGIN failed--compilation aborted at -e line 1.

更新2: 最后我通过这样做fixed

$  locate libpng15.15.dylib
/anaconda/lib/libpng15.15.dylib
/anaconda/pkgs/libpng-1.5.13-1/lib/libpng15.15.dylib
/opt/X11/lib/libpng15.15.dylib
/opt/local/lib/libpng15.15.dylib

$ ln -s /opt/X11/lib/libpng15.15.dylib /usr/local/lib/libpng15.15.dylib

$ perl -e 'use GD; $im=GD::Image->new(); print $im->can("png") ? "yes" : "no" , "\n";'
  yes

1 个答案:

答案 0 :(得分:3)

在制作GD.pm之前,您需要库作为依赖项。在这个特殊情况下,libpng显然是缺失的。

由于这种依赖性,如果您的perl是您的操作系统附带的perl,我建议您使用包管理器,而不是CPAN:

  • OS X的MacPorts或自制程序
  • apt-get for Debian和Ubuntu。
  • yum for RHEL,Cent-OS。