File: compface.3

package info (click to toggle)
libcompface 1%3A1.5.2-5
  • links: PTS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, squeeze, stretch, wheezy
  • size: 392 kB
  • ctags: 178
  • sloc: ansic: 1,577; makefile: 226; sh: 182; perl: 28
file content (57 lines) | stat: -rw-r--r-- 1,996 bytes parent folder | download | duplicates (3)
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
.TH COMPFACE 3 "25 January 1990"
.SH NAME
compface, uncompface \- compress and expand 48x48x1 face image files
.SH SYNOPSIS
.B compface (buf)
.LP
.B uncompface (buf)
.LP
.B char *buf
.SH DESCRIPTION
.IX  compface  ""  "\fLcompface\fP \(em compress face image files"
.IX  uncompface  ""  "\fLuncompface\fP \(em uncompress face image files"
.I compface
is a function for generating highly compressed representations of 48x48x1
face image files.
.I uncompface
is an inverse function which performs an inverse transformation with no
loss of data.
The algorithm used is highly tuned for its purpose and achieves better
than a five to one compression ratio on average.
In both functions, input is via a NULL terminated string and a NULL terminated
output string is written over the input string.
.I Buf
should therefore point to a block of 2K size or more to avoid buffer
overruns during output generation.
.LP
The input format for
.I compface
(and the output format for
.IR uncompface )
is 48 lines each of 3 sixteen bit hexadecimal integers, comma terminated in C
initialiser style.
The output format of
.I compface
(and the input format for
.IR uncompface )
is some number of lines made up of a space followed by printable
characters (in the range ``!'' to ``~'' inclusive).
The first line contains 72 characters and following lines contain
79 characters except that the last line may be short.
.LP
This version of compface has been patched to also be able to handle
normal XBM images.  uncompface will produce XBM output only if the -X 
switch is applied.
.LP
The amount of compression obtained varies between face image files but
the output of
.I compface
averages less than 200 characters.
The average number of output lines is three.
.SH DIAGNOSTICS
The return value is normally 0.
1 will be returned if extra input has been ignored during a compress operation.
-1 is returned in the case of an invalid input format.
-2 is returned if an internal buffer overrun occurs.
.SH SEE ALSO
Compface(1)