Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bb(1) [debian man page]

BB(1)							      General Commands Manual							     BB(1)

NAME
bb - an ASCII-art demo SYNOPSIS
bb [options] DESCRIPTION
bb is a high quality audio-visual demonstration for your text terminal. OPTIONS
A summary of options are included below. For a complete description type bb -help. -help Show summary of options. -loop Play demo in infinite loop. -driver Select driver. Available drivers: linux, slang, X11, stdout, stderr. -kbddriver Select keyboard driver. Available drivers: slang, X11, stdin. -mousedriver Select mouse driver. Available drivers: X11, gpm, dos. -width Set width. -height Set height. -minwidth Set minimum width. -minheight Set minimum height. -maxwidth Set maximum width. -maxheight Set maximum height. -recwidth Set recommended width. -recheight Set recommended height. -dim Enable usage of dim (half bright) attribute. -bold Enable usage of bold (double bright) attribute. -reverse Enable usage of reverse attribute. -normal Enable usage of normal attribute. -boldfont Enable usage of boldfont attribute. -no<attr> Disable attribute (i.e -nobold). -extended Use all 256 characters. -eight Use eight bit ASCII. -font <font> Select font. This option is used on hardware where aalib is unable to determine the current font. Available fonts: vga8, vga9, mda14, vga14, X8x13, X8x16, X8x13bold, vgagl8, line. -inverse Enable inverse rendering. -noinverse Disable inverse rendering. -bright <val> Set brightness (0-255). -contrast <val> Set contrast (0-255). -gamma <val> Set gamma correction value (0-1). -nodither Disable dithering. -floyd_steinberg Floyd-Steinberg dithering. -error_distribution Error distribution dithering. -random <val> Set random dithering value (0-inf). -dimmul <val> Multiply factor for dim attribute (5.3). -boldmul <val> Multiply factor for bold attribute (2.7). BUGS
Please report any bugs you find to Jan Hubicka <hubicka@freesoft.cz>. LICENCE
bb is covered by the GNU General Public License (GPL). SEE ALSO
aafire(1), aainfo(1), aasavefont(1), aatest(1), aview(1), asciiview(1), aaflip(1), aa3d(1), xaos(6), aatv(1). AUTHOR
Jan Hubicka <hubicka@freesoft.cz> This manual page was written by Michael Bramer <grisu@debian.org>, for the Debian GNU/Linux system (but may be used by others). December 16, 2001 BB(1)

Check Out this Related Man Page

Graphics::Primitive::Font(3pm)				User Contributed Perl Documentation			    Graphics::Primitive::Font(3pm)

NAME
Graphics::Primitive::Font - Text styling DESCRIPTION
Graphics::Primitive::Font represents the various options that are available when rendering text. The options here may or may not have an effect on your rendering. They represent a cross-section of the features provided by various drivers. Setting them should not break anything, but may not have an effect if the driver doesn't understand the option. SYNOPSIS
use Graphics::Primitive::Font; my $font = Graphics::Primitive::Font->new({ family => 'Arial', size => 12, slant => 'normal' }); METHODS
Constructor Attributes antialias_modes Set the antialiasing mode for this font. Possible values are default, none, gray and subpixel. family Set this font's family. hint_metrics Controls whether to hint font metrics. Hinting means quantizing them so that they are integer values in device space. This improves the consistency of letter and line spacing, however it also means that text will be laid out differently at different zoom factors. May not be supported by all drivers. hint_style Set the the type of hinting to do on font outlines. Hinting is the process of fitting outlines to the pixel grid in order to improve the appearance of the result. Since hinting outlines involves distorting them, it also reduces the faithfulness to the original outline shapes. Not all of the outline hinting styles are supported by all drivers. Options are default, none, slight, medium and full. size Set/Get the size of this font. slant Set/Get the slant of this font. Valid values are normal, italic and oblique. subpixel_order Set the order of color elements within each pixel on the display device when rendering with subpixel antialiasing. Value values are default, rgb, bgr, vrgb and vbgr. variant Set/Get the variant of this font. Valid values are normal or small-caps. weight Set/Get the weight of this font. Value valies are normal and bold. METHODS
new Creates a new Graphics::Primitive::Font. derive Clone this font but change one or more of it's attributes by passing in a hashref of options: my $new = $font->derive({ attr => $newvalue }); The returned font will be identical to the cloned one, save the attributes specified. AUTHOR
Cory Watson, "<gphat@cpan.org>" COPYRIGHT &; LICENSE Copyright 2008-2010 by Cory G Watson. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. perl v5.12.3 2010-08-21 Graphics::Primitive::Font(3pm)
Man Page