summaryrefslogtreecommitdiff
path: root/src/pdflib/font/ft_type1.c
blob: 2644284472712aec1ddea35f49876d294711274f (plain)
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
/*---------------------------------------------------------------------------*
 |              PDFlib - A library for generating PDF on the fly             |
 +---------------------------------------------------------------------------+
 | Copyright (c) 1997-2006 Thomas Merz and PDFlib GmbH. All rights reserved. |
 +---------------------------------------------------------------------------+
 |                                                                           |
 |    This software is subject to the PDFlib license. It is NOT in the       |
 |    public domain. Extended versions and commercial licenses are           |
 |    available, please check http://www.pdflib.com.                         |
 |                                                                           |
 *---------------------------------------------------------------------------*/

/* $Id: ft_type1.c,v 1.1 2008/10/17 06:10:43 scuri Exp $
 *
 * FONT Type1 font handling routines
 *
 */

#include "ft_font.h"

pdc_bool
fnt_test_type1_font(pdc_core *pdc, const pdc_byte *img)
{
    char startsequ[5];

    strcpy(startsequ, FNT_PFA_STARTSEQU);

    /* ASCII block sign and begin of text at byte 7 */
    if (img[0] == 0x80 && img[1] == 0x01 &&
        strncmp((const char *)&img[6], startsequ, 4) == 0)
    {
        pdc_logg_cond(pdc, 1, trc_font,
                          "\tPostScript Type1 font detected\n");
        return pdc_true;
    }
    return pdc_false;
}