Osdimage-plugin: Difference between revisions

From VDR Wiki
Jump to navigation Jump to search
(initial)
 
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 11: Line 11:
==Installation==
==Installation==
To install ImageMagick
To install ImageMagick
cd $SOURCEDIR
<pre>
tar jxvf ImageMagick-<VERSION>.tar.bz2
cd $SOURCEDIR
tar jxvf ImageMagick-<VERSION>.tar.bz2
cd ImageMagick-<VERSION>
./configure --prefix=/usr/local \
cd ImageMagick-<VERSION>
--without-perl \
./configure --prefix=/usr/local \
--without-perl \
--without-dps \
--without-dps \
--without-fpx \
--without-fpx \
--without-gslib \
--without-gslib \
--without-jbig \
--without-jbig \
--without-jp2 \
--without-jp2 \
--without-lcms \
--without-lcms \
--without-tiff \
--without-tiff \
--without-xml \
--without-xml \
--without-x
make
--without-x
make
make install
ldconfig
make install
ldconfig
</pre>


and netpbm
and netpbm
cd $SOURCEDIR
<pre>
tar xvzf netpbm-<VERSION>.tgz
cd $SOURCEDIR
tar xvzf netpbm-<VERSION>.tgz
cd netpbm-<VERSION>
./configure
cd netpbm-<VERSION>
make
./configure
make
make package
# install prefix (/usr/local/netpbm) ==> /usr/local
make package
^^^^^^^^^^
# install prefix (/usr/local/netpbm) ==> /usr/local
./installnetpbm
^^^^^^^^^^
rm -r /tmp/netpbm
./installnetpbm
rm -r /tmp/netpbm
</pre>


See [[plugin installation]].
See [[plugin installation]].
Line 70: Line 66:
| -d DIR || --directory=DIR || Image directory (required)
| -d DIR || --directory=DIR || Image directory (required)
|}
|}

==Problems==


==Links==
==Links==
Line 86: Line 80:
| http://netpbm.sourceforge.net
| http://netpbm.sourceforge.net
| Netpbm homepage
| Netpbm homepage
|-
| [4]
| http://home.pages.at/brougs78/comparison/index.htm
| Ein paar Beispiele wie es aussehen kann. Aber die Ausgabe auf dem Fernseher sollte noch besser aussehen.
|}
|}


[[Category:Plugins]]
[[Category:Outdated Plugins]]


{{i18n|osdimage-plugin}}
<!-- Link to german wiki page -->
[[de:Osdimage-plugin]]

Latest revision as of 11:51, 25 November 2013

Description

The OSDImage plugin is an image viewer for VDR. Unlike the image-plugin this plugin uses the OSD to display the images.

Hardware requirements

Software requirements

  • ImageMagick
  • Netpbm (optional)

Installation

To install 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

and netpbm

cd $SOURCEDIR
tar xvzf netpbm-<VERSION>.tgz
cd netpbm-<VERSION>
./configure
make
make package
# install prefix (/usr/local/netpbm) ==> /usr/local
                                         ^^^^^^^^^^
./installnetpbm
rm -r /tmp/netpbm

See plugin installation.

Options

Option Description
DEBUG = 1 Enable debug mode
HAVE_NETPBM = 1 Recommended for 16-color-OSD

Configuration

Parameter

Parameter (short) Parameter (long) Description
-d DIR --directory=DIR Image directory (required)

Links

[1] http://home.pages.at/brougs78 Plugin homepage
[2] http://www.imagemagick.org ImageMagick homepage
[3] http://netpbm.sourceforge.net Netpbm homepage