You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Matteo Bernardini 86105ea1cc graphics/fbpic: Mirror download url. 8 years ago
..
README graphics/fbpic: Updated website info. 14 years ago
doinst.sh graphics/fbpic: VERSION override, i486=>i586, install doinst.sh. 9 years ago
fbpic.SlackBuild graphics/fbpic: VERSION override, i486=>i586, install doinst.sh. 9 years ago
fbpic.info graphics/fbpic: Mirror download url. 8 years ago
slack-desc various: Fix slack-desc formatting and comment nit picks. 12 years ago

README

FBpic is a simple command to view ppm files on the linux frame buffer.
There are no command line switches, the ppm file is just read in from
stdin. You must have your framebuffer set up to display graphics (@16bpp).


EXAMPLES:

To display the image /fancyboot/images/main.ppm on the console:

cat '/fancyboot/images/main.ppm'|fbpic

To scale and display a jpg on the console via Imagemagik:

convert /fancyboot/images/ntpd.png -scale 1024x768! ppm:-|fbpic

Simple one line slideshow:

setterm -cursor off;find /path/to/pics/*.jpg|while read; \
do convert -scale 1024x768! ppm:-|fbpic;sleep 2;done;setterm -cursor on

Change "scale" to your frame buffer resolution, change /path/to/pics/
to point to a folder of jpgs and sleep for the delay.