IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

Bibliothèques et frameworks PHP Discussion :

[ImageMagick] Installation d'ImageMagick


Sujet :

Bibliothèques et frameworks PHP

  1. #1
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut [ImageMagick] Installation d'ImageMagick
    Bonjour à tous, je débute dans l'administration réseau. Je possède un serveur WEB sous linux (sans interface) me permettant de déposer des fichiers PHP et d'avoir accès à une bdd.
    Je suis administrateur de ce serveur et j'utilise une console (putty) pour faire des commandes. (j'ai aussi un webmin)

    Je souhaiterai créer un reader de PDF. Pour cela, il faudrait transformer chaque page PDF en Jpg ou Gif. Une application existe : http://view.samurajdata.se/
    C'est exactement ce à quoi je dois arriver. Durant l'installation, j'ai vu que ce script à besoin de ces différents élément :
    Prerequisite software:
    - Apache/PHP
    - MySQL
    - wv (for viewing word documents)
    - ImageMagick (image conversion)
    - Ghostscript (for postscript and pdf)
    - Wget

    Apache/PHP et MySQL c'est OK.
    Qu'est ce que wv et wget? comment savoir s'ils sont installés?

    Pour ImageMagick, j'arrive (en ligne de commande) à le télécharger, le dézipper, je fais ./configure, make et maike install. Là, j'ai des erreurs qui s'affiche. (Je peux fournir la longue liste de l'install). Lorsque que je vais dans le dossier usr/locale/bin/ j'ai bien des fichier binaire comme convert conjure montage et d'autres. Je pense que peut être l'install a fonctionné.

    J'essaye donc cette page test.php que je met dans var/www/test.php qui a pour code
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    <?php
    exec("/usr/bin/convert  convert chapiteau.JPG -resize 50% chapiteau-pt.jpg");
    ?>
    Mais rien ne se passe. Comment savoir que ImageMagick fonctionne sur mon serveur? Doit-il apparaitre dans le phpinfo() ?

    Je m'attaquerai à Gostscript après l'install de ImageMagick. Car pour que ImageMagick convertisse un PDF, il lui faut Gostscript.

    Merci pour votre aide très précieuse car ce genre d'installation n'est pas très courante.

    PS: Cela fait 2 jours que je parcours les doc et les sites liée à ImageMagick mais je n'ai rien trouvé de concret

  2. #2
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    Bonjour,
    Normalement, si convert fonctionne bien, tu devrais pouvoir executer la commande suivante, depuis putty :
    convert -version
    Qui te donne la version de imagemagick.

    chez moi :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    $ convert -version
    Version: ImageMagick 6.0.7 03/07/07 Q16 http://www.imagemagick.org
    Copyright: Copyright (C) 1999-2004 ImageMagick Studio LLC
    Z.

  3. #3
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    Voici ma réponse

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
     
    root@srv-ubuntu:~# convert -version
    convert: error while loading shared libraries: libMagickCore.so.2: cannot open shared object file: No such file or directory
    root@srv-ubuntu:~#

  4. #4
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    Tu as trouvé ton erreur, enfin une.
    Bonne chance pour la résoudre car je n'en sais pas plus.
    Z.

  5. #5
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    Ah ok, merci quand même...

  6. #6
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    Ah oui, precision tout de meme, les fichiers .so sous linux, c'est un peu comme des dll sous windows, donc c'est important !

  7. #7
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    J'ai recommencer une installation :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    1.
     
     wget ftp://mirror.aarnet.edu.au/pub/ImageMagick/ImageMagick-6.5.5-9.tar.gz
     
    2.gunzip -c ImageMagick-6.5.5-9.tar.gz | tar xvf -
     
     
     
    3. 
    cd ImageMagick-6.5.5-9
     
     
    4.
    ./configure
     
    ImageMagick 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                        Value
    -------------------------------------------------------------------------------
    Shared libraries  --enable-shared=yes           yes
    Static libraries  --enable-static=yes           yes
    Module support    --with-modules=yes            yes
    GNU ld            --with-gnu-ld=yes             yes
    Quantum depth     --with-quantum-depth=16       16
    High Dynamic Range Imagery
                      --enable-hdri=no              no
     
    Delegate Configuration:
    BZLIB             --with-bzlib=yes              no
    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=no          no
    FreeType          --with-freetype=yes           no
    GhostPCL          None                          pcl6 (unknown)
    GhostXPS          None                          gxps (unknown)
    Ghostscript       None                          gs (unknown)
    Ghostscript fonts --with-gs-font-dir=default    none
    Ghostscript lib   --with-gslib=no               no
    Graphviz          --with-gvc=yes                no
    JBIG              --with-jbig=yes               no
    JPEG v1           --with-jpeg=yes               no
    JPEG-2000         --with-jp2=yes                no
    LCMS              --with-lcms=yes               no
    LQR               --with-lqr=yes                no
    Magick++          --with-magick-plus-plus=yes   yes
    OpenEXR           --with-openexr=yes            no
    PERL              --with-perl=yes               /usr/bin/perl
    PNG               --with-png=yes                no
    RSVG              --with-rsvg=no                no
    TIFF              --with-tiff=yes               no
    Windows fonts     --with-windows-font-dir=      none
    WMF               --with-wmf=yes                no
    X11               --with-x=                     no
    XML               --with-xml=no         no
    ZLIB              --with-zlib=yes               no
     
    X11 Configuration:
          X_CFLAGS        =
          X_PRE_LIBS      =
          X_LIBS          =
          X_EXTRA_LIBS    =
     
    Options used to compile and link:
      PREFIX          = /usr/local
      EXEC-PREFIX     = /usr/local
      VERSION         = 6.5.5
      CC              = gcc -std=gnu99
      CFLAGS          = -fopenmp -g -O2 -Wall -W -pthread
      MAGICK_CFLAGS   = -fopenmp -g -O2 -Wall -W -pthread
      CPPFLAGS        = -I/usr/local/include/ImageMagick
      PCFLAGS         = -fopenmp
      DEFS            = -DHAVE_CONFIG_H
      LDFLAGS         =
      MAGICK_LDFLAGS  = -L/usr/local/lib
      LIBS            = -lMagickCore -lm -lgomp -lpthread
      CXX             = g++
      CXXFLAGS        = -g -O2 -Wall -W -pthread
     
     
    5.
    make
     
    6.
    make install
    Magick.xs:2440: note: âsvâ was declared here
    Running Mkbootstrap for Image::Magick ()
    chmod 644 Magick.bs
    rm -f blib/arch/auto/Image/Magick/Magick.so
    LD_RUN_PATH="/root/ImageMagick-6.5.5-9/PerlMagick/../magick/.libs:/root/ImageMagick-6.5.5-9/PerlMagick/../wand/.libs" cc  -L../magick/.libs -lMagickCore -L../wand/.libs -lMagickWand -shared -O2 -g -L/usr/local/lib  Magick.o  -o blib/arch/auto/Image/Magick/Magick.so    \
               -L/root/ImageMagick-6.5.5-9/PerlMagick/../magick/.libs -lMagickCore -L/root/ImageMagick-6.5.5-9/PerlMagick/../wand/.libs -lMagickWand -lperl -lm  \
     
    /usr/bin/ld: cannot find -lperl
    collect2: ld a retourné 1 code d'état d'exécution
    make[3]: *** [blib/arch/auto/Image/Magick/Magick.so] Erreur 1
    make[3]: quittant le répertoire « /root/ImageMagick-6.5.5-9/PerlMagick »
    make[2]: *** [install-exec-perl] Erreur 2
    make[2]: quittant le répertoire « /root/ImageMagick-6.5.5-9 »
    make[1]: *** [install-am] Erreur 2
    make[1]: quittant le répertoire « /root/ImageMagick-6.5.5-9 »
    make: *** [install] Erreur 2
     
     
    7. 
    /ImageMagick-6.5.5-9# convert -version
    convert: error while loading shared libraries: libMagickCore.so.2: cannot open shared object file: No such file or directory

  8. #8
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    essais de trouver une réponse a tes erreurs via google :
    http://www.google.com/search?hl=en&q...meta=&aq=f&oq=

    Je ne peux pas t'aider plus, n'ayant jamais eut ce probleme.

    A verifier : que ce que demande l'install soi present, et que les dossiers ou l'install essait d'ecrire soient bien avec des droits en ecriture.

  9. #9
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    Bonjour solution quasi trouvé :

    il fallait faire apt-get install inmagemagick

    Je tape convert -version et j'ai bien :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    Version: ImageMagick 6.5.5-9 2009-09-11 Q16 OpenMP http://www.imagemagick.org
    Copyright: Copyright (C) 1999-2009 ImageMagick Studio LLC
    Cependant quand je fais
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    convert capFM.jpg capFM.png
    J'ai ces erreurs :
    convert: UnableToOpenConfigureFile `delegates.xml' @ configure.c/GetConfigureOpt ions/553.
    convert: NoDecodeDelegateForThisImageFormat `capFM.jpg' @ constitute.c/ReadImage /503.
    convert: MissingAnImageFilename `capFM.png' @ convert.c/ConvertImageCommand/2819.

    L'installation s'est mal passé?

  10. #10
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    acune idée :
    As tu eut des erreurs lors de l'installation ?

  11. #11
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    ben non...

    Est-ce du aux droits d'écriture des fichiers?

  12. #12
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    Il semblerait : http://www.imagemagick.org/discourse...09e3776#p43484

    Tape ca dans la console :
    identify -list configure

    identify -list format

  13. #13
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    identify -list format
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
       Format  Module    Mode  Description
    -------------------------------------------------------------------------------
     
    * native blob support
    r read support
    w write support
    + support for multiple images

    identify -list configure
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    identify: UnableToOpenConfigureFile `configure.xml' @ configure.c/GetConfigureOptions/553.

  14. #14
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    J'ai de plus ajouté un CHMOD 777 au dossier usr/lib/imagemagick/config et aux fichiers xml contenus.

  15. #15
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    j'ai un peu fouiné, et oui, ca pourrait etre une histoire de permission :
    Verifie les droits de /usr/local/lib/ImageMagick-6.4.5 et /usr/local/lib/ImageMagick-6.4.5/config.

    Si tu es en 64 bits : /usr/local/lib64/ImageMagick-6.4.5 et /usr/local/lib64/ImageMagick-6.4.5/config

    tu peux aussi essayer la commande :
    identify -debug configure -list configure

    Elle t'en dira plus !

    [EDIT] : je me suis trompé dans la commande :
    identify -debug trace,all -list configure

    [RE EDIT] : en faite, le 1er donne des infos sur la recherche du fichier de config :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    $ identify -debug configure -list configure
    17:21:10 0:01 0.000u 6.0.7 identify[18658]: configure.c/GetConfigureOptions/491/Configure
      Searching for configure file: "/usr/lib64/ImageMagick-6.0.7/config/configure.mgk"
    17:21:10 0:01 0.000u 6.0.7 identify[18658]: configure.c/GetConfigureOptions/491/Configure
      Searching for configure file: "/usr/share/ImageMagick-6.0.7/config/configure.mgk"
    17:21:10 0:01 0.000u 6.0.7 identify[18658]: configure.c/GetConfigureOptions/491/Configure
      Searching for configure file: "/usr/share/ImageMagick-6.0.7/configure.mgk"
    17:21:10 0:01 0.000u 6.0.7 identify[18658]: configure.c/GetConfigureOptions/491/Configure
      Searching for configure file: "/home/mig/XXXXXXXX/.magick/configure.mgk"
    17:21:10 0:01 0.000u 6.0.7 identify[18658]: configure.c/GetConfigureOptions/491/Configure
      Searching for configure file: "configure.mgk"
    17:21:10 0:01 0.000u 6.0.7 identify[18658]: configure.c/LoadConfigureList/897/Configure
      Loading configure file "/usr/lib64/ImageMagick-6.0.7/config/configure.mgk" ...
     
    Path: /usr/lib64/ImageMagick-6.0.7/config/configure.mgk

  16. #16
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    Voila pour le identify -debug trace,all -list configure

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
     
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: image.c/GetImageInfo/1889/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #ffffff
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #dfdfdf
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #bdbdbd
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #00000000
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: identify.c/IdentifyImageCommand/226/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: image.c/GetImageInfo/1889/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #ffffff
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #dfdfdf
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #bdbdbd
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: color.c/QueryMagickColor/3142/Trace
      #00000000
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: option.c/CloneImageOptions/1426/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: image.c/SetImageInfoFile/3778/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: image.c/SetImageInfoBlob/3743/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: utility.c/ExpandFilenames/694/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: utility.c/GetPathComponent/1179/Trace
      identify
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: utility.c/GetPathComponent/1179/Trace
      identify
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: utility.c/ExpandFilenames/867/Configure
      Command line: identify {-debug} {trace,all} {-list} {configure}
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: mogrify.c/MogrifyImageInfo/6061/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: mogrify.c/MogrifyImageInfo/6061/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: configure.c/GetConfigureInfoList/301/Trace
      *
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: configure.c/GetConfigureOptions/513/Trace
      configure.xml
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: configure.c/GetConfigurePaths/595/Trace
      configure.xml
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/ResetLinkedListIterator/1978/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: configure.c/GetConfigureOptions/528/Configure
      Searching for configure file: "/usr/local/share/ImageMagick-6.5.5/config/configure.xml"
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: configure.c/GetConfigureOptions/528/Configure
      Searching for configure file: "/usr/local/lib/ImageMagick-6.5.5/config/configure.xml"
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: configure.c/GetConfigureOptions/528/Configure
      Searching for configure file: "/usr/local/share/doc/ImageMagick-6.5.5/configure.xml"
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: configure.c/GetConfigureOptions/528/Configure
      Searching for configure file: "/usr/local/share/ImageMagick-6.5.5/configure.xml"
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: configure.c/GetConfigureOptions/528/Configure
      Searching for configure file: "/root/.magick/configure.xml"
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: configure.c/GetConfigureOptions/528/Configure
      Searching for configure file: "configure.xml"
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/DestroyLinkedList/422/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Exception identify[30447]: configure.c/GetConfigureOptions/553/Exception
      UnableToOpenConfigureFile `configure.xml'
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: utility.c/GetPathComponent/1179/Trace
      magick/configure.c
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: configure.c/DestroyConfigureOptions/166/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Configure identify[30447]: configure.c/LoadConfigureList/978/Configure
      Loading configure file "built-in" ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/AppendValueToLinkedList/165/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/IsLinkedListEmpty/1247/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetValueFromLinkedList/831/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNumberOfElementsInLinkedList/709/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/ResetLinkedListIterator/1978/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: image.c/DestroyImageInfo/1677/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: option.c/DestroyImageOptions/1549/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/ResetLinkedListIterator/1978/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    identify: UnableToOpenConfigureFile `configure.xml' @ configure.c/GetConfigureOptions/553.
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/GetNextValueInLinkedList/634/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/RemoveLastElementFromLinkedList/1884/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/RemoveLastElementFromLinkedList/1884/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: image.c/DestroyImageInfo/1677/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: option.c/DestroyImageOptions/1549/Trace
     
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/DestroyLinkedList/422/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: hashmap.c/DestroyLinkedList/422/Trace
      ...
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: module.c/UnregisterModule/1489/Trace
      [boot-strap]
    2009-09-16T23:16:47+02:00 0:01 0.000u 6.5.5 Trace identify[30447]: registry.c/DestroyImageRegistry/176/Trace
      ...
    Je dois mettre un chmod en 777 ?

  17. #17
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    ton as bien un fichier configure.xml ?
    Car tout porte a croire qu'il n'est pas trouvé, ou alors que les droits ne permettent pas d'y acceder.

    Aussi : mon fichier de fonfig n'a pas la meme extention que le tient.

    La derniere solution d'apres d'autres forums serait de revenir a une version antérieur.
    Z.

  18. #18
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    Oui j'ai bien /usr/lib/ImageMagick-6.4.5/config/configure.xml

    J'ai pourtant mis un chmod 777 à tout le dossier ImageMagick-6.4.5.

    Je vais me renseigner sur les permissions.

    Je ne sais pas comment revenir dans une verison précédente car j'ai juste fais un apt-get install imagemagick...

    Merci de votre aide!

  19. #19
    Membre du Club
    Profil pro
    Inscrit en
    Mars 2006
    Messages
    69
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2006
    Messages : 69
    Points : 45
    Points
    45
    Par défaut
    Le problème ne viendrais pas de la version? en effet j'ai une version ImageMagick 6.5.5-9 et mon dossier dans usr/lib/ s'appelle ImageMagick-6.4.5.

    Ca doit venir de là?

  20. #20
    Membre éclairé
    Profil pro
    Assistant recherche bioinformatique
    Inscrit en
    Novembre 2007
    Messages
    877
    Détails du profil
    Informations personnelles :
    Localisation : Canada

    Informations professionnelles :
    Activité : Assistant recherche bioinformatique

    Informations forums :
    Inscription : Novembre 2007
    Messages : 877
    Points : 835
    Points
    835
    Par défaut
    Tres possible :
    d'apres le script que tu as executé ci-dessus, le fichier de config est recherché dans un dossier ImageMagick-6.5.5/configure.xml.
    Tente le coup

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. Réponses: 5
    Dernier message: 13/05/2017, 02h31
  2. Windows server 2012 r2 installation de imageMagick
    Par surfeur2 dans le forum Serveurs (Apache, IIS,...)
    Réponses: 0
    Dernier message: 15/08/2016, 15h11
  3. [EasyPHP] php 5.4.14 et installation de imagemagick
    Par toulet dans le forum EDI, CMS, Outils, Scripts et API
    Réponses: 2
    Dernier message: 15/01/2014, 23h35
  4. Réponses: 2
    Dernier message: 23/03/2008, 22h22
  5. Installation d'ImageMagick
    Par rabobsky dans le forum Applications et environnements graphiques
    Réponses: 13
    Dernier message: 31/03/2005, 22h36

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo