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
|
/*--------------------------------------------------------------------------
----- File: t1aaset.h
----- Author: Rainer Menzner (Rainer.Menzner@web.de)
----- Date: 2003-01-02
----- Description: This file is part of the t1-library. It contains
definitions and declarations for t1set.c.
----- Copyright: t1lib is copyrighted (c) Rainer Menzner, 1996-2003.
As of version 0.5, t1lib is distributed under the
GNU General Public Library Lincense. The
conditions can be found in the files LICENSE and
LGPL, which should reside in the toplevel
directory of the distribution. Please note that
there are parts of t1lib that are subject to
other licenses:
The parseAFM-package is copyrighted by Adobe Systems
Inc.
The type1 rasterizer is copyrighted by IBM and the
X11-consortium.
----- Warranties: Of course, there's NO WARRANTY OF ANY KIND :-)
----- Credits: I want to thank IBM and the X11-consortium for making
their rasterizer freely available.
Also thanks to Piet Tutelaers for his ps2pk, from
which I took the rasterizer sources in a format
independent from X11.
Thanks to all people who make free software living!
--------------------------------------------------------------------------*/
#ifdef T1AASET_C
GLYPH *T1_AASetChar( int FontID, char charcode,
float size, T1_TMATRIX *transform);
GLYPH *T1_AASetString( int FontID, char *string, int len,
long spaceoff, int modflag,
float size, T1_TMATRIX *transform);
GLYPH* T1_AASetRect( int FontID, float size,
float width, float height,
T1_TMATRIX *transform);
int T1_AASetGrayValues( unsigned long white,
unsigned long gray75,
unsigned long gray50,
unsigned long gray25,
unsigned long black);
int T1_AAHSetGrayValues( unsigned long *grayvals);
int T1_AANSetGrayValues( unsigned long fg, unsigned long bg);
int T1_AAGetGrayValues( long *pgrayvals);
int T1_AAHGetGrayValues( long *pgrayvals);
int T1_AANGetGrayValues( long *pgrayvals);
int T1_AASetBitsPerPixel( int bpp);
int T1_AAGetBitsPerPixel( void);
int T1_AASetLevel( int level);
int T1_AAGetLevel( void);
GLYPH *T1_AAFillOutline( T1_OUTLINE *path, int modflag);
int T1_AASetSmartLimits( float limit1, float limit2);
int T1_AASetSmartMode( int smart);
#else
extern GLYPH *T1_AASetChar( int FontID, char charcode,
float size, T1_TMATRIX *transform);
extern GLYPH *T1_AASetString( int FontID, char *string, int len,
long spaceoff, int modflag,
float size, T1_TMATRIX *transform);
extern GLYPH* T1_AASetRect( int FontID, float size,
float width, float height,
T1_TMATRIX *transform);
extern int T1_AASetGrayValues( unsigned long white,
unsigned long gray75,
unsigned long gray50,
unsigned long gray25,
unsigned long black);
extern int T1_AAHSetGrayValues( unsigned long *grayvals);
extern int T1_AANSetGrayValues( unsigned long bg, unsigned long fg);
extern int T1_AAGetGrayValues( long *pgrayvals);
extern int T1_AAHGetGrayValues( long *pgrayvals);
extern int T1_AANGetGrayValues( long *pgrayvals);
extern int T1_AASetBitsPerPixel( int bpp);
extern int T1_AAGetBitsPerPixel( void);
extern int T1_AASetLevel( int level);
extern int T1_AAGetLevel( void);
extern GLYPH *T1_AAFillOutline( T1_OUTLINE *path, int modflag);
extern int T1_AASetSmartLimits( float limit1, float limit2);
extern int T1_AASetSmartMode( int smart);
#endif
|