Graphics Magick installieren: Unterschied zwischen den Versionen

Aus Hostsharing Wiki
Zur Navigation springen Zur Suche springen
Keine Bearbeitungszusammenfassung
KKeine Bearbeitungszusammenfassung
Zeile 8: Zeile 8:
Will man diese Version verwenden, muss man die Binaries in das home-Verzeichnis kopieren, auf das der Paket-Admin (z.B. xyz00), unter dem die Domain läuft, zugreifen kann, und diese mit dem tar-Befehl extrahieren:
Will man diese Version verwenden, muss man die Binaries in das home-Verzeichnis kopieren, auf das der Paket-Admin (z.B. xyz00), unter dem die Domain läuft, zugreifen kann, und diese mit dem tar-Befehl extrahieren:


xyz00@hopi:~$ tar xvfpz GraphicsMagick-LATEST.tar.gz  
<syntaxhighlight lang=shell>
xyz00@hopi:~$ tar xvfpz GraphicsMagick-LATEST.tar.gz  
</syntaxhighlight>


Die Installation vorbereiten   
Die Installation vorbereiten   
 
 
cd bin/ GraphicsMagick-1.3.5
./configure --prefix=/home/pacs/xyz00 --enable-magick-compat


<syntaxhighlight lang=shell>
cd bin/ GraphicsMagick-1.3.5
./configure --prefix=/home/pacs/xyz00 --enable-magick-compat
</syntaxhighlight>


Programm installieren
Programm installieren


make
<syntaxhighlight lang=shell>
make install
make
make install
</syntaxhighlight>


Überprüfen ob alles richtig installiert ist mit
Überprüfen ob alles richtig installiert ist mit


cd ~/bin
<syntaxhighlight lang=shell>
cd ~/bin
xyz00@hopi:~/bin$ls -l
 
total 8925
xyz00@hopi:~/bin$ls -l
drwxr-xr-x  2 root root    1024 Feb 11 10:57 .
total 8925
drwxr-xr-x  12 root root    1024 Jan 14 11:46 ..
drwxr-xr-x  2 root root    1024 Feb 11 10:57 .
-rwxr-xr-x  1 root root    1223 Feb 11 10:57 GraphicsMagick++-config
drwxr-xr-x  12 root root    1024 Jan 14 11:46 ..
-rwxr-xr-x  1 root root    1266 Feb 11 10:57 GraphicsMagick-config
-rwxr-xr-x  1 root root    1223 Feb 11 10:57 GraphicsMagick++-config
-rwxr-xr-x  1 root root    1250 Feb 11 10:57 GraphicsMagickWand-config
-rwxr-xr-x  1 root root    1266 Feb 11 10:57 GraphicsMagick-config
-rwxr-xr-x  1 root root 5209711 Feb 11 10:57 PerlMagick
-rwxr-xr-x  1 root root    1250 Feb 11 10:57 GraphicsMagickWand-config
lrwxrwxrwx  1 root root      2 Feb 11 10:57 animate -> gm
-rwxr-xr-x  1 root root 5209711 Feb 11 10:57 PerlMagick
lrwxrwxrwx  1 root root      2 Feb 11 10:57 composite -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 animate -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 conjure -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 composite -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 convert -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 conjure -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 display -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 convert -> gm
-rwxr-xr-x  1 root root 3891115 Feb 11 10:57 gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 display -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 identify -> gm
-rwxr-xr-x  1 root root 3891115 Feb 11 10:57 gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 import -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 identify -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 mogrify -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 import -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 montage -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 mogrify -> gm
lrwxrwxrwx  1 root root      2 Feb 11 10:57 montage -> gm
</syntaxhighlight>


===  Für TYPO3 braucht man nur folgende Variablen zu setzen ===
===  Für TYPO3 braucht man nur folgende Variablen zu setzen ===


    * [im_combine_filename] = 'combine' setzen
* <code>[im_combine_filename] = 'combine'</code> setzen
    * [TTFdpi] = '96' setzen
* <code>[TTFdpi] = '96'</code> setzen
    * [gif_compress] ='' setzen
* <code>[gif_compress] = ''</code> setzen


   
   

Version vom 1. Juli 2024, 12:07 Uhr

GraphicsMagick

Seit 2002 ist GraphicsMagick die GPL Version von ImageMagick. GraphicsMagick ist aus der damaligen ImageMagick Version 5.5.2. hervorgegangen.

Die jetzige Version ist 1.3.5. Die letzte Version kann man vom FTP server herunterladen.

Will man diese Version verwenden, muss man die Binaries in das home-Verzeichnis kopieren, auf das der Paket-Admin (z.B. xyz00), unter dem die Domain läuft, zugreifen kann, und diese mit dem tar-Befehl extrahieren:

xyz00@hopi:~$ tar xvfpz GraphicsMagick-LATEST.tar.gz

Die Installation vorbereiten

cd bin/ GraphicsMagick-1.3.5
./configure --prefix=/home/pacs/xyz00 --enable-magick-compat

Programm installieren

make
make install

Überprüfen ob alles richtig installiert ist mit

cd ~/bin

xyz00@hopi:~/bin$ls -l
total 8925
drwxr-xr-x   2 root root    1024 Feb 11 10:57 .
drwxr-xr-x  12 root root    1024 Jan 14 11:46 ..
-rwxr-xr-x   1 root root    1223 Feb 11 10:57 GraphicsMagick++-config
-rwxr-xr-x   1 root root    1266 Feb 11 10:57 GraphicsMagick-config
-rwxr-xr-x   1 root root    1250 Feb 11 10:57 GraphicsMagickWand-config
-rwxr-xr-x   1 root root 5209711 Feb 11 10:57 PerlMagick
lrwxrwxrwx   1 root root       2 Feb 11 10:57 animate -> gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 composite -> gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 conjure -> gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 convert -> gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 display -> gm
-rwxr-xr-x   1 root root 3891115 Feb 11 10:57 gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 identify -> gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 import -> gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 mogrify -> gm
lrwxrwxrwx   1 root root       2 Feb 11 10:57 montage -> gm

Für TYPO3 braucht man nur folgende Variablen zu setzen

  • [im_combine_filename] = 'combine' setzen
  • [TTFdpi] = '96' setzen
  • [gif_compress] = setzen