1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
.\" WARNING! THIS FILE WAS GENERATED AUTOMATICALLY BY c2man!
.\" DO NOT EDIT! CHANGES MADE TO THIS FILE WILL BE LOST!
.TH "aa_render" 3 "8 September 1999" "c2man aalib.h"
.SH "NAME"
aa_render \- convert image buffer to ASCII-art.
.SH "SYNOPSIS"
.ft B
#include <aalib.h>
.sp
void aa_render
.br
(
.br
aa_context *c,
.br
const aa_renderparams *p,
.br
int x1,
.br
int y1,
.br
int x2,
.br
int y2
.br
);
.ft R
.SH "PARAMETERS"
.TP
.B "aa_context *c"
Specifies the AA-lib context to operate on.
.TP
.B "const aa_renderparams *p"
Rendering parametters used to specify brightness, gamma
correction and other usefull stuff. Use aa_defrenderparams
for default values.
.TP
.B "int x1"
Column of top left coner of rendered area
(in characters!).
.TP
.B "int y1"
Row of top left coner of rendered area.
.TP
.B "int x2"
Column of bottom right coner of rendered area.
.TP
.B "int y2"
Row of bottom right coner of rendered area.
.SH "DESCRIPTION"
This function does the trick of converting the emulated framebuffer
into high quality ASCII-art. If you want to be really fast, you might
use aa_fastrender. If you want to emulate palette, use aa_renderpalette.
Note that to see the effect you need to call aa_flush too.
First call to this function may take a while, because the rendering
tables are produced.
.SH "SEE ALSO"
save_d(3),
mem_d(3),
aa_help(3),
aa_formats(3),
aa_fonts(3),
aa_dithernames(3),
aa_drivers(3),
aa_kbddrivers(3),
aa_mousedrivers(3),
aa_kbdrecommended(3),
aa_mouserecommended(3),
aa_displayrecommended(3),
aa_defparams(3),
aa_defrenderparams(3),
aa_scrwidth(3),
aa_scrheight(3),
aa_mmwidth(3),
aa_mmheight(3),
aa_imgwidth(3),
aa_imgheight(3),
aa_image(3),
aa_text(3),
aa_attrs(3),
aa_currentfont(3),
aa_autoinit(3),
aa_autoinitkbd(3),
aa_autoinitmouse(3),
aa_recommendhi(3),
aa_recommendlow(3),
aa_init(3),
aa_initkbd(3),
aa_initmouse(3),
aa_close(3),
aa_uninitkbd(3),
aa_uninitmouse(3),
aa_fastrender(3),
aa_puts(3),
aa_printf(3),
aa_gotoxy(3),
aa_hidecursor(3),
aa_showcursor(3),
aa_getmouse(3),
aa_hidemouse(3),
aa_showmouse(3),
aa_registerfont(3),
aa_setsupported(3),
aa_setfont(3),
aa_getevent(3),
aa_getkey(3),
aa_resize(3),
aa_resizehandler(3),
aa_parseoptions(3),
aa_edit(3),
aa_createedit(3),
aa_editkey(3),
aa_putpixel(3),
aa_recommendhikbd(3),
aa_recommendlowkbd(3),
aa_recommendhimouse(3),
aa_recommendlowmouse(3),
aa_recommendhidisplay(3),
aa_recommendlowdisplay(3)
|