Osdimage-plugin
Aus VDR Wiki
(Unterschied zwischen Versionen)
(==Links==) |
(==Installation==) |
||
| Zeile 6: | Zeile 6: | ||
* Netpbm (optional) | * Netpbm (optional) | ||
==Installation== | ==Installation== | ||
| − | + | Tip: Es sollte alles was mit ImageMagick zu tun hat vorher deinstalliert werden. Bei einer RPM basierten Distri (e.g: [[SuSE]]) wären das folgende Befehle: | |
| + | <pre> | ||
| + | rpm -e --nodeps ImageMagick-Magick++ | ||
| + | rpm -e --nodeps ImageMagick-devel | ||
| + | rpm -e --nodeps ImageMagick | ||
| + | </pre> | ||
| + | <pre> | ||
| + | cd $SOURCEDIR | ||
| + | tar jxvf ImageMagick-<VERSION>.tar.bz2 | ||
| + | cd ImageMagick-<VERSION> | ||
| + | ./configure --prefix=/usr/local \ | ||
| + | --without-perl \ | ||
| + | --without-dps \ | ||
| + | --without-fpx \ | ||
| + | --without-gslib \ | ||
| + | --without-jbig \ | ||
| + | --without-jp2 \ | ||
| + | --without-lcms \ | ||
| + | --without-tiff \ | ||
| + | --without-xml \ | ||
| + | --without-x | ||
| + | make | ||
| + | make install | ||
| + | ldconfig | ||
| + | cd - | ||
| + | tar xvzf netpbm-<VERSION>.tgz | ||
| + | cd netpbm-<VERSION> | ||
| + | ./configure | ||
| + | make | ||
| + | make package | ||
| + | # install prefix (/usr/local/netpbm) ==> /usr/local | ||
| + | ^^^^^^^^^^ | ||
| + | ./installnetpbm | ||
| + | rm -r /tmp/netpbm | ||
| + | </pre> | ||
==Probleme== | ==Probleme== | ||
==Parameter== | ==Parameter== | ||
Version vom 27. Oktober 2004, 21:23 Uhr
Inhaltsverzeichnis |
Beschreibung
Hardwareanforderungen
Softwareanforderungen
- ImageMagick
- Netpbm (optional)
Installation
Tip: Es sollte alles was mit ImageMagick zu tun hat vorher deinstalliert werden. Bei einer RPM basierten Distri (e.g: SuSE) wären das folgende Befehle:
rpm -e --nodeps ImageMagick-Magick++ rpm -e --nodeps ImageMagick-devel rpm -e --nodeps ImageMagick
cd $SOURCEDIR
tar jxvf ImageMagick-<VERSION>.tar.bz2
cd ImageMagick-<VERSION>
./configure --prefix=/usr/local \
--without-perl \
--without-dps \
--without-fpx \
--without-gslib \
--without-jbig \
--without-jp2 \
--without-lcms \
--without-tiff \
--without-xml \
--without-x
make
make install
ldconfig
cd -
tar xvzf netpbm-<VERSION>.tgz
cd netpbm-<VERSION>
./configure
make
make package
# install prefix (/usr/local/netpbm) ==> /usr/local
^^^^^^^^^^
./installnetpbm
rm -r /tmp/netpbm
Probleme
Parameter
| Parameter (kurz) | Parameter (lang) | Beschreibung |
|---|---|---|
| -d DIR | --directory=DIR | picture-directory (REQUIRED) |
Links
| [1] | http://www.imagemagick.org | imagemagick Homepage |
| [2] | http://netpbm.sourceforge.net | Netpbm Projektseite |
| [3] | http://home.pages.at/brougs78 | Homepage des Plugins |