]> www.fi.muni.cz Git - evince.git/blob - dvi/mdvi-lib/t1.c
bc2900b2049e6ce05126d3f48e3cebf43f056537
[evince.git] / dvi / mdvi-lib / t1.c
1 /*
2  * Copyright (C) 2000, Matias Atria
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 /* 
20  * Type1 font support for MDVI
21  *
22  * We use T1lib only as a rasterizer, not to draw glyphs.
23  */
24
25 #include "mdvi.h"
26
27 #ifdef WITH_TYPE1_FONTS
28
29 #include <stdio.h>
30 #include <t1lib.h>
31 #include "private.h"
32
33 static int      t1lib_initialized = 0;
34
35 typedef struct t1info {
36         struct t1info *next;
37         struct t1info *prev;
38         char    *fontname;      /* (short) name of this font */
39         int     t1id;           /* T1lib's id for this font */  
40         int     hasmetrics;     /* have we processed this font? */
41         TFMInfo *tfminfo;       /* TFM data is shared */
42         DviFontMapInfo mapinfo;
43         DviEncoding *encoding;
44 } T1Info;
45
46 static void  t1_font_remove __PROTO((T1Info *));
47 static int   t1_load_font __PROTO((DviParams *, DviFont *));
48 static int   t1_font_get_glyph __PROTO((DviParams *, DviFont *, int));
49 static void  t1_font_shrink_glyph 
50                 __PROTO((DviContext *, DviFont *, DviFontChar *, DviGlyph *));
51 static void  t1_free_data __PROTO((DviFont *));
52 static void  t1_reset_font __PROTO((DviFont *));
53 static char *t1_lookup_font __PROTO((const char *, Ushort *, Ushort *));
54
55 /* only symbol exported by this file */
56 DviFontInfo t1_font_info = {
57         "Type1",
58         1, /* scaling supported by format */
59         t1_load_font,
60         t1_font_get_glyph,
61         t1_font_shrink_glyph,
62         mdvi_shrink_glyph_grey,
63         t1_free_data,
64         t1_reset_font,
65         t1_lookup_font, /* lookup */
66         kpse_type1_format,
67         NULL
68 };
69
70 /* this seems good enough for most DVI files */
71 #define T1_HASH_SIZE    31
72
73 /* If these parameters change, we must delete all size information
74  * in all fonts, and reset the device resolutions in T1lib */
75 static int t1lib_xdpi = -1;
76 static int t1lib_ydpi = -1;
77
78 static ListHead t1fonts = {NULL, NULL, 0};
79 static DviHashTable t1hash;
80
81 /* Type1 fonts need their own `lookup' function. Here is how it works: 
82  * First we try to find the font by its given name. If that fails, we
83  * query the font maps. A typical font map entry may contain the line
84  * 
85  * ptmr8rn Times-Roman ".82 ExtendFont TeXBase1Encoding ReEncodeFont" <8r.enc <ptmr
86  *
87  * which means: If you're looking for the font `ptmr8rn' load `Times-Roman'
88  * which is in `ptmr' instead, and extend it by 0.82 points, then reencode
89  * it with the vector TeXBase1Encoding from the file `8r.enc'. This will
90  * fail if the entry looks like this:
91  *
92  * ptmr8rn Times-Roman ".82 ExtendFont TeXBase1Encoding ReEncodeFont" <8r.enc
93  *
94  * because to deal with this we would need to be able to locate the font file
95  * for the `Times-Roman' font ourselves, and that's beyond the scope of mdvi.
96  * But hey, we tried hard.
97  */
98 char    *t1_lookup_font(const char *name, Ushort *hdpi, Ushort *vdpi)
99 {
100         char    *filename;
101         char    *newname;
102         const char *ext;
103         DviFontMapInfo info;
104
105         DEBUG((DBG_TYPE1, "(t1) looking for `%s'\n", name));
106
107         /* first let's try the font we were asked for */
108         filename = kpse_find_file(name, kpse_type1_format, 1);
109         if(filename != NULL) {
110                 /* we got it */
111                 return filename;
112         }
113
114         DEBUG((DBG_TYPE1, "(t1) %s: not found, querying font maps\n", name));   
115         /* now query the fontmap */
116         if(mdvi_query_fontmap(&info, name) < 0) {
117                 /* it's not there either */
118                 return NULL;
119         }
120         
121         /* check what we got */
122         if(info.fullfile) {
123                 DEBUG((DBG_TYPE1, "(t1) %s: found `%s' (cached)\n",
124                         name, info.fullfile));
125                 /* this is a cached lookup */
126                 return xstrdup(info.fullfile);
127         }
128         
129         /* no file associated to this font? */
130         if(info.fontfile == NULL)
131                 return info.psname ? mdvi_ps_find_font(info.psname) : NULL;
132                 
133         /* let's extract the extension */
134         ext = file_extension(info.fontfile);
135         if(ext && !STREQ(ext, "pfa") && !STREQ(ext, "pfb")) {
136                 DEBUG((DBG_TYPE1, 
137                         "(t1) %s: associated name `%s' is not Type1\n",
138                         name, info.fontfile));
139                 /* it's not a Type1 font */
140                 return NULL;
141         }
142
143         /* get the `base' name */
144         if(ext) {
145                 newname = xstrdup(name);
146                 newname[ext - info.fontfile - 1] = 0;
147         } else
148                 newname = (char *)name; /* we don't modify this */
149
150         /* look it up */
151         DEBUG((DBG_TYPE1, "(t1) looking for `%s' on behalf of `%s'\n",
152                 newname, name));
153         filename = kpse_find_file(newname, kpse_type1_format, 1);
154
155         /* we don't need this anymore */
156         if(newname != name)
157                 xfree(newname);
158         if(filename == NULL) {
159                 DEBUG((DBG_TYPE1, "(t1) %s: not found\n", name));
160                 return NULL;
161         }
162         
163         DEBUG((DBG_TYPE1, "(t1) %s: found as `%s'\n", name, filename));
164         /* got it! let's remember this */
165         mdvi_add_fontmap_file(name, filename);
166         return filename;
167 }
168
169 static void t1_reset_resolution(int xdpi, int ydpi)
170 {
171         int     i;
172         int     nfonts;
173
174         DEBUG((DBG_TYPE1, "(t1) resetting device resolution (current: (%d,%d))\n",
175                 t1lib_xdpi, t1lib_ydpi));
176
177         nfonts = T1_Get_no_fonts();
178         for(i = 0; i < nfonts; i++)
179                 T1_DeleteAllSizes(i);
180         /* reset device resolutions */
181         if(T1_SetDeviceResolutions((float)xdpi, (float)ydpi) < 0)
182                 warning(_("(t1) failed to reset device resolution\n"));
183         else
184                 DEBUG((DBG_TYPE1, 
185                         "(t1) reset successful, new resolution is (%d, %d)\n",
186                         xdpi, ydpi));
187         t1lib_xdpi = xdpi;
188         t1lib_ydpi = ydpi;
189 }
190
191 static void t1_reset_font(DviFont *font)
192 {
193         T1Info *info = (T1Info *)font->private;
194         
195         if(info == NULL)
196                 return;
197         DEBUG((DBG_FONTS, "(t1) resetting font `%s'\n", font->fontname));
198         /* just mark the font as not having metric info. It will be reset
199          * automatically later */
200         info->hasmetrics = 0;
201 }
202
203 static void t1_transform_font(T1Info *info)
204 {
205         if(!info->hasmetrics && info->encoding != NULL) {
206                 DEBUG((DBG_TYPE1, "(t1) %s: encoding with vector `%s'\n",
207                         info->fontname, info->encoding->name));
208                 T1_DeleteAllSizes(info->t1id);
209                 if(T1_ReencodeFont(info->t1id, info->encoding->vector) < 0)
210                         warning(_("%s: could not encode font\n"), info->fontname);
211         }
212         if(info->mapinfo.slant) {
213                 DEBUG((DBG_TYPE1, "(t1) %s: slanting by %.3f\n", 
214                         info->fontname,
215                         MDVI_FMAP_SLANT(&info->mapinfo)));
216                 T1_SlantFont(info->t1id, 
217                         MDVI_FMAP_SLANT(&info->mapinfo));
218         }
219         if(info->mapinfo.extend) {
220                 DEBUG((DBG_TYPE1, "(t1) %s: extending by %.3f\n",
221                         info->fontname,
222                         MDVI_FMAP_EXTEND(&info->mapinfo)));
223                 T1_ExtendFont(info->t1id, 
224                         MDVI_FMAP_EXTEND(&info->mapinfo));
225         }               
226 }
227
228 /* if this function is called, we really need this font */
229 static int t1_really_load_font(DviParams *params, DviFont *font, T1Info *info)
230 {
231         int     i;
232         T1Info  *old;
233         int     t1id;
234         int     copied;
235         int     status;
236
237         DEBUG((DBG_TYPE1, "(t1) really_load_font(%s)\n", info->fontname));
238
239         /* if the parameters changed, reset T1lib */
240         if(t1lib_xdpi != params->dpi || t1lib_ydpi != params->vdpi)
241                 t1_reset_resolution(params->dpi, params->vdpi);
242
243         /* if we already have a T1lib id, do nothing */
244         if(info->t1id != -1) {
245                 info->hasmetrics = 1;
246                 /* apply slant and extend again */
247                 t1_transform_font(info);
248                 return 0;
249         }
250
251         /* before we even attempt to load the font, make sure we have metric
252          * data for it */
253         info->tfminfo = mdvi_ps_get_metrics(info->fontname);
254         if(info->tfminfo == NULL) {
255                 DEBUG((DBG_FONTS, 
256                         "(t1) %s: no metric data, font ignored\n",
257                         info->fontname));
258                 goto t1_error;
259         }
260         /* fix this */
261         font->design = info->tfminfo->design;
262
263         /* check if we have a font with this name (maybe at a different size) */
264         old = (T1Info *)mdvi_hash_lookup(&t1hash, info->fontname);
265         if(old == info) {
266                 /* let's avoid confusion */
267                 old = NULL;
268         }
269         if(old && old->t1id != -1) {
270                 /* let's take advantage of T1lib's font sharing */
271                 t1id = T1_CopyFont(old->t1id);
272                 DEBUG((DBG_TYPE1, "(t1) %s -> %d (CopyFont)\n", 
273                         info->fontname, t1id));
274                 copied = 1;
275         } else {
276                 t1id = T1_AddFont(font->filename);
277                 DEBUG((DBG_TYPE1, "(t1) %s -> %d (AddFont)\n",
278                         info->fontname, t1id));
279                 copied = 0;
280         }
281         if(t1id < 0)
282                 goto t1_error;
283         info->t1id = t1id;
284
285         /* 
286          * a minor optimization: If the old font in the hash table has
287          * not been loaded yet, replace it by this one, so we can use
288          * CopyFont later.
289          */
290         if(old && old->t1id == -1) {
291                 DEBUG((DBG_TYPE1, "(t1) font `%s' exchanged in hash table\n",
292                         info->fontname));
293                 mdvi_hash_remove(&t1hash, old->fontname);
294                 mdvi_hash_add(&t1hash, info->fontname, 
295                         info, MDVI_HASH_UNCHECKED);
296         }
297
298         /* now let T1lib load it */
299         if(!copied && T1_LoadFont(info->t1id) < 0) {
300                 DEBUG((DBG_TYPE1, "(t1) T1_LoadFont(%d) failed with error %d\n",
301                         info->t1id, T1_errno));
302                 goto t1_error;
303         }
304         DEBUG((DBG_TYPE1, "(t1) T1_LoadFont(%d) -> Ok\n", info->t1id));
305
306         /* get information from the fontmap */
307         status = mdvi_query_fontmap(&info->mapinfo, info->fontname);
308         if(!status && info->mapinfo.encoding)
309                 info->encoding = mdvi_request_encoding(info->mapinfo.encoding);
310         t1_transform_font(info);
311
312         i = info->tfminfo->hic - info->tfminfo->loc + 1;
313         if(i != font->hic - font->loc + 1) {
314                 /* reset to optimal size */
315                 font->chars = xrealloc(font->chars, i * sizeof(DviFontChar));
316         }
317
318         /* get the scaled characters metrics */
319         get_tfm_chars(params, font, info->tfminfo, 0);
320         info->hasmetrics = 1;
321         
322         DEBUG((DBG_TYPE1, "(t1) font `%s' really-loaded\n", info->fontname));
323         return 0;
324
325 t1_error:
326         /* some error does not allows us to use this font. We need to reset
327          * the font structure, so the font system can try to read this
328          * font in a different class */
329         
330         /* first destroy the private data */
331         t1_font_remove(info);
332         /* now reset all chars -- this is the important part */
333         xfree(font->chars);
334         font->chars = NULL;
335         font->loc = font->hic = 0;
336         return -1;
337 }
338
339 static int init_t1lib(DviParams *params)
340 {
341         int     t1flags;
342
343 #ifdef WORD_LITTLE_ENDIAN
344         /* try making T1lib use bitmaps in our format, but if this
345          * fails we'll convert the bitmap ourselves */
346         T1_SetBitmapPad(BITMAP_BITS);
347 #endif
348         T1_SetDeviceResolutions((float)params->dpi, (float)params->vdpi);
349         t1flags = IGNORE_CONFIGFILE|IGNORE_FONTDATABASE|T1_NO_AFM;
350         if(DEBUGGING(TYPE1))
351                 t1flags |= LOGFILE;
352         if(T1_InitLib(t1flags) == NULL)
353                 return (t1lib_initialized = -1);
354         if(DEBUGGING(TYPE1)) {
355                 DEBUG((DBG_TYPE1, "T1lib debugging output saved in t1lib.log\n"));
356                 T1_SetLogLevel(T1LOG_DEBUG);
357         }
358         /* initialize our hash table, but don't allocate memory for it
359          * until we use it */
360         mdvi_hash_init(&t1hash);
361         DEBUG((DBG_TYPE1, "(t1) t1lib %s initialized -- resolution is (%d, %d), pad is %d bits\n",
362                 T1_GetLibIdent(), params->dpi, params->vdpi, T1_GetBitmapPad()));
363         t1lib_initialized = 1;  
364         t1lib_xdpi = params->dpi;
365         t1lib_ydpi = params->vdpi;
366         return 0;
367 }
368
369 static int t1_load_font(DviParams *params, DviFont *font)
370 {
371         T1Info  *info;
372         int     i;
373                                 
374         if(t1lib_initialized < 0)
375                 return -1;
376         else if(t1lib_initialized == 0 && init_t1lib(params) < 0)
377                 return -1;
378
379         if(font->in != NULL) {
380                 /* we don't need this */
381                 fclose(font->in);
382                 font->in = NULL;
383         }
384
385         info = xalloc(T1Info);
386
387         /* 
388          * mark the font as `unregistered' with T1lib. It will
389          * be added when we actually use it
390          */
391         info->t1id = -1;
392
393         /* add the font to our list */
394         info->fontname = font->fontname;
395         info->hasmetrics = 0;
396         info->encoding = NULL;
397         info->mapinfo.psname = NULL;
398         info->mapinfo.encoding = NULL;
399         info->mapinfo.fontfile = NULL;
400         info->mapinfo.extend = 0;
401         info->mapinfo.slant = 0;
402         info->encoding = NULL;
403         
404         /* create the hash table if we have not done so yet */
405         if(t1hash.nbucks == 0)
406                 mdvi_hash_create(&t1hash, T1_HASH_SIZE);
407         mdvi_hash_add(&t1hash, info->fontname, info, MDVI_HASH_UNIQUE);         
408         listh_append(&t1fonts, LIST(info));
409
410         font->private = info;
411                 
412         /* reset everything */
413         font->chars = xnalloc(DviFontChar, 256);
414         font->loc = 0;
415         font->hic = 255;
416         for(i = 0; i < 256; i++) {
417                 font->chars[i].code = i;
418                 font->chars[i].offset = 1;
419                 font->chars[i].loaded = 0;
420                 font->chars[i].glyph.data = NULL;
421                 font->chars[i].shrunk.data = NULL;
422                 font->chars[i].grey.data = NULL;
423         }
424         
425         return 0;
426 }
427
428 #define GLYPH_WIDTH(g) \
429         ((g)->metrics.rightSideBearing - (g)->metrics.leftSideBearing)
430 #define GLYPH_HEIGHT(g) \
431         ((g)->metrics.ascent - (g)->metrics.descent)
432
433 static inline BITMAP *t1_glyph_bitmap(GLYPH *glyph)
434 {
435         BITMAP  *bm;
436         int     w, h;
437         
438         w = GLYPH_WIDTH(glyph);
439         h = GLYPH_HEIGHT(glyph);
440
441         if(!w || !h)
442                 return MDVI_GLYPH_EMPTY;
443         switch(glyph->bpp << 3) {
444                 case 8: 
445                         bm = bitmap_convert_lsb8(glyph->bits, w, h);
446                         break;
447                 default:
448                         warning(_("(t1) unsupported bitmap pad size %d\n"),
449                                 glyph->bpp);
450                         bm = MDVI_GLYPH_EMPTY;
451                         break;
452         }
453         return bm;
454 }
455
456 static void t1_font_shrink_glyph(DviContext *dvi, DviFont *font, DviFontChar *ch, DviGlyph *dest)
457 {
458         double  size;
459         GLYPH   *glyph;
460         T1Info  *info;
461         T1_TMATRIX matrix;
462         
463         info = (T1Info *)font->private;
464         ASSERT(info != NULL);
465
466         DEBUG((DBG_TYPE1, "(t1) shrinking glyph for character %d in `%s' (%d,%d)\n",
467                 ch->code, font->fontname, ch->width, ch->height));      
468         size = (double)font->scale / (dvi->params.tfm_conv * 0x100000);
469         size = 72.0 * size / 72.27;
470         matrix.cxx = 1.0/(double)dvi->params.hshrink;
471         matrix.cyy = 1.0/(double)dvi->params.vshrink;
472         matrix.cxy = 0.0;
473         matrix.cyx = 0.0;
474         glyph = T1_SetChar(info->t1id, ch->code, (float)size, &matrix);
475
476         dest->data = t1_glyph_bitmap(glyph);
477         dest->x = -glyph->metrics.leftSideBearing;
478         dest->y = glyph->metrics.ascent;
479         dest->w = GLYPH_WIDTH(glyph);
480         dest->h = GLYPH_HEIGHT(glyph);
481
482 #ifndef NODEBUG
483         if(DEBUGGING(BITMAP_DATA)) {
484                 DEBUG((DBG_BITMAP_DATA, 
485                         "(t1) %s: t1_shrink_glyph(%d): (%dw,%dh,%dx,%dy) -> (%dw,%dh,%dx,%dy)\n",
486                         ch->glyph.w, ch->glyph.h, ch->glyph.x, ch->glyph.y,
487                         dest->w, dest->h, dest->x, dest->y));
488                 bitmap_print(stderr, (BITMAP *)dest->data);
489         }
490 #endif
491         /* transform the glyph - we could do this with t1lib, but we do
492          * it ourselves for now */
493         font_transform_glyph(dvi->params.orientation, dest);
494 }
495
496 static int t1_font_get_glyph(DviParams *params, DviFont *font, int code)
497 {
498         T1Info  *info = (T1Info *)font->private;
499         GLYPH   *glyph;
500         DviFontChar *ch;
501         double  size;
502         T1_TMATRIX matrix;
503         int     dpi;
504         
505         ASSERT(info != NULL);
506         if(!info->hasmetrics && t1_really_load_font(params, font, info) < 0)
507                 return -1;
508         ch = FONTCHAR(font, code);      
509         if(!ch || !glyph_present(ch))
510                 return -1;
511         ch->loaded = 1;
512         if(!ch->width || !ch->height) {
513                 ch->glyph.x = ch->x;
514                 ch->glyph.y = ch->y;
515                 ch->glyph.w = ch->width;
516                 ch->glyph.h = ch->height;
517                 ch->glyph.data = NULL;
518                 return 0;
519         }
520
521         /* load the glyph with T1lib (this is done only once for each glyph) */
522
523         /* get size in TeX points (tfm_conv includes dpi and magnification) */
524         size = (double)font->scale / (params->tfm_conv * 0x100000);
525         /* and transform into PostScript points */
526         size = 72.0 * size / 72.27;
527
528         dpi = Max(font->hdpi, font->vdpi);
529         /* we don't want the glyph to be cached twice (once by us, another by 
530          * T1lib), so we use an identity matrix to tell T1lib not to keep the
531          * glyph around */
532         matrix.cxx = (double)font->hdpi / dpi;
533         matrix.cyy = (double)font->vdpi / dpi;
534         matrix.cxy = matrix.cyx = 0.0;
535         glyph = T1_SetChar(info->t1id, ch->code, (float)size, &matrix);
536         if(glyph == NULL) {
537                 ch->glyph.x = ch->x;
538                 ch->glyph.y = ch->y;
539                 ch->glyph.w = ch->width;
540                 ch->glyph.h = ch->height;
541                 ch->glyph.data = NULL;
542                 ch->missing = 1;
543                 return 0;
544         }
545         /* and make it a bitmap */
546         ch->glyph.data = t1_glyph_bitmap(glyph);
547         ch->glyph.x = -glyph->metrics.leftSideBearing;
548         ch->glyph.y = glyph->metrics.ascent;
549         ch->glyph.w = GLYPH_WIDTH(glyph);
550         ch->glyph.h = GLYPH_HEIGHT(glyph);
551
552         /* let's also fix the glyph's origin 
553          * (which is not contained in the TFM) */
554         ch->x = ch->glyph.x;
555         ch->y = ch->glyph.y;
556         /* let's fix these too */
557         ch->width = ch->glyph.w;
558         ch->height = ch->glyph.h;
559                 
560         return 0;
561 }
562
563 static void t1_font_remove(T1Info *info)
564 {
565         T1Info  *old;
566         
567         /* first remove it from our list */
568         listh_remove(&t1fonts, LIST(info));
569
570         /* it it's in the hash table, we may need to replace this by another font */
571         old = (T1Info *)mdvi_hash_lookup(&t1hash, info->fontname);
572         if(old == info) {
573                 mdvi_hash_remove(&t1hash, info->fontname);
574                 /* go through the list and see if there is another 
575                  * font with this name */
576                 for(old = (T1Info *)t1fonts.head; old; old = old->next)
577                         if(STREQ(old->fontname, info->fontname))
578                                 break;
579                 if(old != NULL)
580                         mdvi_hash_add(&t1hash, old->fontname, old, 
581                                 MDVI_HASH_UNCHECKED);
582         }
583         /* release our encoding vector */
584         if(info->encoding) {
585                 DEBUG((DBG_TYPE1, "(t1) %s: releasing vector `%s'\n",
586                         info->fontname, info->encoding->name));
587                 mdvi_release_encoding(info->encoding, 1);
588         }
589
590         /* now get rid of it */
591         if(info->t1id != -1) {
592                 DEBUG((DBG_TYPE1, "(t1) %s: T1_DeleteFont(%d)\n",
593                         info->fontname, info->t1id));
594                 T1_DeleteFont(info->t1id);
595         } else
596                 DEBUG((DBG_TYPE1, "(t1) %s: not loaded yet, DeleteFont skipped\n",
597                         info->fontname));
598
599         if(info->tfminfo)
600                 free_font_metrics(info->tfminfo);
601         /*xfree(info->fontname);*/
602         xfree(info);
603 }
604
605 static void t1_free_data(DviFont *font)
606 {
607         /* called after all the glyphs are destroyed */
608
609         if(font->private == NULL) {
610                 /* this is perfectly normal, it just means the font has 
611                  * not been requested by MDVI yet */
612                 return;
613         }
614         
615         /* destroy this data */
616
617         t1_font_remove((T1Info *)font->private);
618         font->private = NULL;
619
620         /* 
621          * if this is the last T1 font, reset the T1 library
622          * It is important that we do this, because this is will be called
623          * when the resolution or the magnification changes.
624          */
625         if(t1fonts.count == 0) {
626                 DEBUG((DBG_TYPE1, "(t1) last font removed -- closing T1lib\n"));
627                 T1_CloseLib();
628                 t1lib_initialized = 0;
629                 t1lib_xdpi = -1;
630                 t1lib_ydpi = -1;
631         }
632 }
633
634 #endif /* WITH_TYPE1_FONTS */