ReactOS 0.4.16-dev-959-g2ec3a19
t1decode.h File Reference
#include <ft2build.h>
Include dependency graph for t1decode.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Functions

 t1_lookup_glyph_by_stdcharcode_ps (PS_Decoder *decoder, FT_Int charcode)
 
 t1_decoder_parse_metrics (T1_Decoder decoder, FT_Byte *charstring_base, FT_UInt charstring_len)
 
 t1_decoder_init (T1_Decoder decoder, FT_Face face, FT_Size size, FT_GlyphSlot slot, FT_Byte **glyph_names, PS_Blend blend, FT_Bool hinting, FT_Render_Mode hint_mode, T1_Decoder_Callback parse_glyph)
 
 t1_decoder_done (T1_Decoder decoder)
 

Variables

FT_BEGIN_HEADER FT_CALLBACK_TABLE const T1_Decoder_FuncsRec t1_decoder_funcs
 

Function Documentation

◆ t1_decoder_done()

t1_decoder_done ( T1_Decoder  decoder)

Definition at line 1996 of file t1decode.c.

1997 {
1998 FT_Memory memory = decoder->builder.memory;
1999
2000
2001 t1_builder_done( &decoder->builder );
2002
2003 if ( decoder->cf2_instance.finalizer )
2004 {
2005 decoder->cf2_instance.finalizer( decoder->cf2_instance.data );
2006 FT_FREE( decoder->cf2_instance.data );
2007 }
2008 }
#define FT_FREE(ptr)
Definition: ftmemory.h:328
typedefFT_BEGIN_HEADER struct FT_MemoryRec_ * FT_Memory
Definition: ftsystem.h:65
static char memory[1024 *256]
Definition: process.c:116
t1_builder_done(T1_Builder builder)
Definition: psobjs.c:1632

◆ t1_decoder_init()

t1_decoder_init ( T1_Decoder  decoder,
FT_Face  face,
FT_Size  size,
FT_GlyphSlot  slot,
FT_Byte **  glyph_names,
PS_Blend  blend,
FT_Bool  hinting,
FT_Render_Mode  hint_mode,
T1_Decoder_Callback  parse_glyph 
)

Definition at line 1948 of file t1decode.c.

1957 {
1958 FT_ZERO( decoder );
1959
1960 /* retrieve `psnames' interface from list of current modules */
1961 {
1962 FT_Service_PsCMaps psnames;
1963
1964
1965 FT_FACE_FIND_GLOBAL_SERVICE( face, psnames, POSTSCRIPT_CMAPS );
1966 if ( !psnames )
1967 {
1968 FT_ERROR(( "t1_decoder_init:"
1969 " the `psnames' module is not available\n" ));
1970 return FT_THROW( Unimplemented_Feature );
1971 }
1972
1973 decoder->psnames = psnames;
1974 }
1975
1976 t1_builder_init( &decoder->builder, face, size, slot, hinting );
1977
1978 /* decoder->buildchar and decoder->len_buildchar have to be */
1979 /* initialized by the caller since we cannot know the length */
1980 /* of the BuildCharArray */
1981
1982 decoder->num_glyphs = (FT_UInt)face->num_glyphs;
1983 decoder->glyph_names = glyph_names;
1984 decoder->hint_mode = hint_mode;
1985 decoder->blend = blend;
1986 decoder->parse_callback = parse_callback;
1987
1988 decoder->funcs = t1_decoder_funcs;
1989
1990 return FT_Err_Ok;
1991 }
return FT_Err_Ok
Definition: ftbbox.c:527
#define FT_ERROR(varformat)
Definition: ftdebug.h:209
#define FT_THROW(e)
Definition: ftdebug.h:241
#define FT_ZERO(p)
Definition: ftmemory.h:237
#define FT_FACE_FIND_GLOBAL_SERVICE(face, ptr, id)
Definition: ftserv.h:127
unsigned int FT_UInt
Definition: fttypes.h:231
GLsizeiptr size
Definition: glext.h:5919
GLenum GLuint GLint GLenum face
Definition: glext.h:7025
FT_CALLBACK_TABLE_DEF const T1_Decoder_FuncsRec t1_decoder_funcs
Definition: psauxmod.c:88
t1_builder_init(T1_Builder builder, FT_Face face, FT_Size size, FT_GlyphSlot glyph, FT_Bool hinting)
Definition: psobjs.c:1575
Definition: vfat.h:185

◆ t1_decoder_parse_metrics()

t1_decoder_parse_metrics ( T1_Decoder  decoder,
FT_Byte charstring_base,
FT_UInt  charstring_len 
)

Definition at line 1685 of file t1decode.c.

1688 {
1690 FT_Byte* ip;
1691 FT_Byte* limit;
1692 T1_Builder builder = &decoder->builder;
1693
1694#ifdef FT_DEBUG_LEVEL_TRACE
1695 FT_Bool bol = TRUE;
1696#endif
1697
1698
1699 /* First of all, initialize the decoder */
1700 decoder->top = decoder->stack;
1701 decoder->zone = decoder->zones;
1702 zone = decoder->zones;
1703
1704 builder->parse_state = T1_Parse_Start;
1705
1706 zone->base = charstring_base;
1707 limit = zone->limit = charstring_base + charstring_len;
1708 ip = zone->cursor = zone->base;
1709
1710 /* now, execute loop */
1711 while ( ip < limit )
1712 {
1713 FT_Long* top = decoder->top;
1715 FT_Int32 value = 0;
1716
1717
1718#ifdef FT_DEBUG_LEVEL_TRACE
1719 if ( bol )
1720 {
1721 FT_TRACE5(( " (%d)", decoder->top - decoder->stack ));
1722 bol = FALSE;
1723 }
1724#endif
1725
1726 /**********************************************************************
1727 *
1728 * Decode operator or operand
1729 *
1730 */
1731
1732 /* first of all, decompress operator or value */
1733 switch ( *ip++ )
1734 {
1735 case 1:
1736 case 3:
1737 case 4:
1738 case 5:
1739 case 6:
1740 case 7:
1741 case 8:
1742 case 9:
1743 case 10:
1744 case 11:
1745 case 14:
1746 case 15:
1747 case 21:
1748 case 22:
1749 case 30:
1750 case 31:
1751 goto No_Width;
1752
1753 case 13:
1754 op = op_hsbw;
1755 break;
1756
1757 case 12:
1758 if ( ip >= limit )
1759 {
1760 FT_ERROR(( "t1_decoder_parse_metrics:"
1761 " invalid escape (12+EOF)\n" ));
1762 goto Syntax_Error;
1763 }
1764
1765 switch ( *ip++ )
1766 {
1767 case 7:
1768 op = op_sbw;
1769 break;
1770
1771 default:
1772 goto No_Width;
1773 }
1774 break;
1775
1776 case 255: /* four bytes integer */
1777 if ( ip + 4 > limit )
1778 {
1779 FT_ERROR(( "t1_decoder_parse_metrics:"
1780 " unexpected EOF in integer\n" ));
1781 goto Syntax_Error;
1782 }
1783
1784 value = (FT_Int32)( ( (FT_UInt32)ip[0] << 24 ) |
1785 ( (FT_UInt32)ip[1] << 16 ) |
1786 ( (FT_UInt32)ip[2] << 8 ) |
1787 (FT_UInt32)ip[3] );
1788 ip += 4;
1789
1790 /* According to the specification, values > 32000 or < -32000 must */
1791 /* be followed by a `div' operator to make the result be in the */
1792 /* range [-32000;32000]. We expect that the second argument of */
1793 /* `div' is not a large number. Additionally, we don't handle */
1794 /* stuff like `<large1> <large2> <num> div <num> div' or */
1795 /* <large1> <large2> <num> div div'. This is probably not allowed */
1796 /* anyway. */
1797 if ( value > 32000 || value < -32000 )
1798 {
1799 FT_ERROR(( "t1_decoder_parse_metrics:"
1800 " large integer found for width\n" ));
1801 goto Syntax_Error;
1802 }
1803 else
1804 {
1805 value = (FT_Int32)( (FT_UInt32)value << 16 );
1806 }
1807
1808 break;
1809
1810 default:
1811 if ( ip[-1] >= 32 )
1812 {
1813 if ( ip[-1] < 247 )
1814 value = (FT_Int32)ip[-1] - 139;
1815 else
1816 {
1817 if ( ++ip > limit )
1818 {
1819 FT_ERROR(( "t1_decoder_parse_metrics:"
1820 " unexpected EOF in integer\n" ));
1821 goto Syntax_Error;
1822 }
1823
1824 if ( ip[-2] < 251 )
1825 value = ( ( ip[-2] - 247 ) * 256 ) + ip[-1] + 108;
1826 else
1827 value = -( ( ( ip[-2] - 251 ) * 256 ) + ip[-1] + 108 );
1828 }
1829
1830 value = (FT_Int32)( (FT_UInt32)value << 16 );
1831 }
1832 else
1833 {
1834 FT_ERROR(( "t1_decoder_parse_metrics:"
1835 " invalid byte (%d)\n", ip[-1] ));
1836 goto Syntax_Error;
1837 }
1838 }
1839
1840 /**********************************************************************
1841 *
1842 * Push value on stack, or process operator
1843 *
1844 */
1845 if ( op == op_none )
1846 {
1847 if ( top - decoder->stack >= T1_MAX_CHARSTRINGS_OPERANDS )
1848 {
1849 FT_ERROR(( "t1_decoder_parse_metrics: stack overflow\n" ));
1850 goto Syntax_Error;
1851 }
1852
1853#ifdef FT_DEBUG_LEVEL_TRACE
1854 FT_TRACE4(( " %d", value / 65536 ));
1855#endif
1856
1857 *top++ = value;
1858 decoder->top = top;
1859 }
1860 else /* general operator */
1861 {
1862 FT_Int num_args = t1_args_count[op];
1863
1864
1865 FT_ASSERT( num_args >= 0 );
1866
1867 if ( top - decoder->stack < num_args )
1868 goto Stack_Underflow;
1869
1870#ifdef FT_DEBUG_LEVEL_TRACE
1871
1872 if ( top - decoder->stack != num_args )
1873 FT_TRACE0(( "t1_decoder_parse_metrics:"
1874 " too much operands on the stack"
1875 " (seen %d, expected %d)\n",
1876 top - decoder->stack, num_args ));
1877
1878#endif /* FT_DEBUG_LEVEL_TRACE */
1879
1880 top -= num_args;
1881
1882 switch ( op )
1883 {
1884 case op_hsbw:
1885 FT_TRACE4(( " hsbw" ));
1886
1888
1889 builder->left_bearing.x = ADD_LONG( builder->left_bearing.x,
1890 top[0] );
1891
1892 builder->advance.x = top[1];
1893 builder->advance.y = 0;
1894
1895 /* we only want to compute the glyph's metrics */
1896 /* (lsb + advance width), not load the rest of */
1897 /* it; so exit immediately */
1898 FT_TRACE4(( "\n" ));
1899 return FT_Err_Ok;
1900
1901 case op_sbw:
1902 FT_TRACE4(( " sbw" ));
1903
1905
1906 builder->left_bearing.x = ADD_LONG( builder->left_bearing.x,
1907 top[0] );
1908 builder->left_bearing.y = ADD_LONG( builder->left_bearing.y,
1909 top[1] );
1910
1911 builder->advance.x = top[2];
1912 builder->advance.y = top[3];
1913
1914 /* we only want to compute the glyph's metrics */
1915 /* (lsb + advance width), not load the rest of */
1916 /* it; so exit immediately */
1917 FT_TRACE4(( "\n" ));
1918 return FT_Err_Ok;
1919
1920 default:
1921 FT_ERROR(( "t1_decoder_parse_metrics:"
1922 " unhandled opcode %d\n", op ));
1923 goto Syntax_Error;
1924 }
1925
1926 } /* general operator processing */
1927
1928 } /* while ip < limit */
1929
1930 FT_TRACE4(( "..end..\n\n" ));
1931
1932 No_Width:
1933 FT_ERROR(( "t1_decoder_parse_metrics:"
1934 " no width, found op %d instead\n",
1935 ip[-1] ));
1936 Syntax_Error:
1937 return FT_THROW( Syntax_Error );
1938
1939 Stack_Underflow:
1940 return FT_THROW( Stack_Underflow );
1941 }
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
UINT op
Definition: effect.c:236
#define ADD_LONG(a, b)
Definition: ftcalc.h:473
#define FT_ASSERT(condition)
Definition: ftdebug.h:239
#define FT_TRACE0(varformat)
Definition: ftdebug.h:185
#define FT_TRACE5(varformat)
Definition: ftdebug.h:190
#define FT_TRACE4(varformat)
Definition: ftdebug.h:189
#define T1_MAX_CHARSTRINGS_OPERANDS
Definition: ftoption.h:763
FT_BEGIN_HEADER typedef unsigned char FT_Bool
Definition: fttypes.h:108
unsigned char FT_Byte
Definition: fttypes.h:154
signed long FT_Long
Definition: fttypes.h:242
signed int FT_Int
Definition: fttypes.h:220
GLdouble GLdouble GLdouble GLdouble top
Definition: glext.h:10859
GLint limit
Definition: glext.h:10326
DWORD zone
Definition: sec_mgr.c:1754
@ T1_Parse_Have_Width
Definition: psaux.h:757
@ T1_Parse_Start
Definition: psaux.h:756
FT_Pos x
Definition: ftimage.h:78
FT_Pos y
Definition: ftimage.h:79
FT_Vector advance
Definition: psaux.h:841
FT_Vector left_bearing
Definition: psaux.h:840
T1_ParseState parse_state
Definition: psaux.h:844
Definition: dhcpd.h:62
static const FT_Int t1_args_count[op_max]
Definition: t1decode.c:80
enum T1_Operator_ T1_Operator
@ op_hsbw
Definition: t1decode.c:48
@ op_sbw
Definition: t1decode.c:50
@ op_none
Definition: t1decode.c:46
Definition: pdh_main.c:96

◆ t1_lookup_glyph_by_stdcharcode_ps()

t1_lookup_glyph_by_stdcharcode_ps ( PS_Decoder decoder,
FT_Int  charcode 
)

Definition at line 133 of file t1decode.c.

135 {
136 FT_UInt n;
137 const FT_String* glyph_name;
138 FT_Service_PsCMaps psnames = decoder->psnames;
139
140
141 /* check range of standard char code */
142 if ( charcode < 0 || charcode > 255 )
143 return -1;
144
145 glyph_name = psnames->adobe_std_strings(
146 psnames->adobe_std_encoding[charcode]);
147
148 for ( n = 0; n < decoder->num_glyphs; n++ )
149 {
150 FT_String* name = (FT_String*)decoder->glyph_names[n];
151
152
153 if ( name &&
154 name[0] == glyph_name[0] &&
155 ft_strcmp( name, glyph_name ) == 0 )
156 return (FT_Int)n;
157 }
158
159 return -1;
160 }
#define ft_strcmp
Definition: ftstdlib.h:86
char FT_String
Definition: fttypes.h:187
GLdouble n
Definition: glext.h:7729
if(dx< 0)
Definition: linetemp.h:194
Definition: name.c:39

Referenced by cf2_interpT2CharString().

Variable Documentation

◆ t1_decoder_funcs

Definition at line 32 of file t1decode.h.