ImageMagick e OpenJPEG2

3

Estou tentando instalar o ImageMagick com compatibilidade JP2, mas não consigo fazer isso.

Eu instalei o delegado OPenJPEG2 do link , fiz o download do ImageMagick mais recente e quando eu corro ./configure eu recebo o seguinte:

 Delegate Library Configuration:
  BZLIB             --with-bzlib=yes            yes
  Autotrace         --with-autotrace=no         no
  DJVU              --with-djvu=yes             no
  DPS               --with-dps=yes              no
  FFTW              --with-fftw=yes             no
  FlashPIX          --with-fpx=yes              no
  FontConfig        --with-fontconfig=yes       no
  FreeType          --with-freetype=yes         yes
  Ghostscript lib   --with-gslib=no             no
  Graphviz          --with-gvc=yes              no
  JBIG              --with-jbig=yes             yes
  JPEG v1           --with-jpeg=yes             yes
  LCMS              --with-lcms=yes             no
  LQR               --with-lqr=yes              no
  LTDL              --with-ltdl=yes             no
  LZMA              --with-lzma=yes             yes
  Magick++          --with-magick-plus-plus=yes yes
  OpenEXR           --with-openexr=yes          no
  OpenJP2           --with-openjp2=yes          no
  PANGO             --with-pango=yes            no
  PERL              --with-perl=no              no
  PNG               --with-png=yes              yes
  RAQM              --with-raqm=yes             no
  RSVG              --with-rsvg=no              no
  TIFF              --with-tiff=yes             yes
  WEBP              --with-webp=yes             yes
  WMF               --with-wmf=yes              yes
  X11               --with-x=                   yes
  XML               --with-xml=yes              yes
  ZLIB              --with-zlib=yes             yes

Não tenho certeza do que estou fazendo errado, mas sempre recebo OpenJP2 --with-openjp2=yes no

Por favor, alguém pode explicar como eu posso instalar o ImageMagick com suporte ao OpenJP2 no Ubuntu 14.04?

    
por Zaid Amir 27.03.2016 / 12:16

1 resposta

1

Googleing, descobri que isso está relacionado ao openjpeg 2.1

Eu tenho agora o openjp2 YES . Se não estou perdendo nada, os passos que eu dei foram:

sudo apt-get install cmake
wget https://github.com/uclouvain/openjpeg/archive/version.2.1.tar.gz
tar xzf version.2.1.tar.gz
cd openjpeg-version.2.1/
cmake -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr
make
sudo make install


wget http://www.imagemagick.org/download/ImageMagick.tar.gz
tar xzf ImageMagick.tar.gz
cd ImageMagick-6.9.3-8
./configure --prefix=/usr --with-modules --with-perl=/usr/bin/perl --with-jp2 --enable-shared --disable-static --without-magick-plus-pus
make
sudo make install

convert -list configure | grep DELEGATES
    
por 12.04.2016 / 14:37