2018-06-03 09:01:17 +02:00
|
|
|
/****************************************************************************
|
|
|
|
*
|
|
|
|
* cidparse.c
|
|
|
|
*
|
|
|
|
* CID-keyed Type1 parser (body).
|
|
|
|
*
|
2020-01-19 17:05:19 +01:00
|
|
|
* Copyright (C) 1996-2020 by
|
2018-06-03 09:01:17 +02:00
|
|
|
* David Turner, Robert Wilhelm, and Werner Lemberg.
|
|
|
|
*
|
|
|
|
* This file is part of the FreeType project, and may only be used,
|
|
|
|
* modified, and distributed under the terms of the FreeType project
|
|
|
|
* license, LICENSE.TXT. By continuing to use, modify, or distribute
|
|
|
|
* this file you indicate that you have read the license and
|
|
|
|
* understand and accept it fully.
|
|
|
|
*
|
|
|
|
*/
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-12-08 17:17:16 +01:00
|
|
|
|
2020-06-08 13:31:55 +02:00
|
|
|
#include <freetype/internal/ftdebug.h>
|
|
|
|
#include <freetype/internal/ftobjs.h>
|
|
|
|
#include <freetype/internal/ftstream.h>
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
|
2001-03-20 12:14:24 +01:00
|
|
|
#include "cidparse.h"
|
2000-12-08 17:17:16 +01:00
|
|
|
|
Complete redesign of error codes. Please check ftmoderr.h for more
details.
* include/freetype/internal/cfferrs.h,
include/freetype/internal/tterrors.h,
include/freetype/internal/t1errors.h: Removed. Replaced with files
local to the module. All extra error codes have been moved to
`fterrors.h'.
* src/sfnt/ttpost.h: Move error codes to `fterrors.h'.
* src/autohint/aherrors.h, src/cache/ftcerror.h, src/cff/cfferrs.h,
src/cid/ciderrs.h, src/pcf/pcferror.h, src/psaux/psauxerr.h,
src/psnames/psnamerr.h, src/raster/rasterrs.h, src/sfnt/sferrors.h,
src/smooth/ftsmerrs.h, src/truetype/tterrors.h,
src/type1/t1errors.h, src/winfonts/fnterrs.h: New files defining the
error names for the module it belongs to.
* include/freetype/ftmoderr.h: New file, defining the module error
offsets. Its structure is similar to `fterrors.h'.
* include/freetype/fterrors.h (FT_NOERRORDEF): New macro.
(FT_ERRORDEF): Redefined to use module error offsets.
All internal error codes are now public; unused error codes have
been removed, some are new.
* include/freetype/config/ftheader.h (FT_MODULE_ERRORS_H): New
macro.
* include/freetype/config/ftoption.h
(FT_CONFIG_OPTION_USE_MODULE_ERRORS): New macro.
All other source files have been updated to use the new error codes;
some already existing (internal) error codes local to a module have
been renamed to give them the same name as in the base module.
All make files have been updated to include the local error files.
* src/cid/cidtokens.h: Replaced with...
* src/cid/cidtoken.h: This file for 8+3 consistency.
* src/raster/ftraster.c: Use macros for header file names.
2001-06-06 19:30:41 +02:00
|
|
|
#include "ciderrs.h"
|
|
|
|
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* The macro FT_COMPONENT is used in trace mode. It is an implicit
|
|
|
|
* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log
|
|
|
|
* messages during execution.
|
|
|
|
*/
|
2000-08-24 00:47:44 +02:00
|
|
|
#undef FT_COMPONENT
|
2018-08-15 18:13:17 +02:00
|
|
|
#define FT_COMPONENT cidparse
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2000-06-16 08:49:56 +02:00
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/***** *****/
|
|
|
|
/***** INPUT STREAM PARSER *****/
|
|
|
|
/***** *****/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
|
|
|
/*************************************************************************/
|
2000-06-01 05:27:48 +02:00
|
|
|
|
|
|
|
|
2016-05-16 19:44:19 +02:00
|
|
|
#define STARTDATA "StartData"
|
|
|
|
#define STARTDATA_LEN ( sizeof ( STARTDATA ) - 1 )
|
|
|
|
#define SFNTS "/sfnts"
|
|
|
|
#define SFNTS_LEN ( sizeof ( SFNTS ) - 1 )
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( FT_Error )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
cid_parser_new( CID_Parser* parser,
|
2002-03-30 18:08:04 +01:00
|
|
|
FT_Stream stream,
|
|
|
|
FT_Memory memory,
|
2002-02-28 17:10:29 +01:00
|
|
|
PSAux_Service psaux )
|
2000-06-01 05:27:48 +02:00
|
|
|
{
|
2000-06-16 21:34:52 +02:00
|
|
|
FT_Error error;
|
|
|
|
FT_ULong base_offset, offset, ps_len;
|
2003-10-07 07:49:41 +02:00
|
|
|
FT_Byte *cur, *limit;
|
2004-01-22 10:07:12 +01:00
|
|
|
FT_Byte *arg1, *arg2;
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2000-08-24 18:29:15 +02:00
|
|
|
|
2016-09-28 19:06:21 +02:00
|
|
|
FT_ZERO( parser );
|
2002-02-28 17:10:29 +01:00
|
|
|
psaux->ps_parser_funcs->init( &parser->root, 0, 0, memory );
|
2000-10-31 21:42:18 +01:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
parser->stream = stream;
|
|
|
|
|
2002-03-20 11:49:31 +01:00
|
|
|
base_offset = FT_STREAM_POS();
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
/* first of all, check the font format in the header */
|
2002-03-20 11:49:31 +01:00
|
|
|
if ( FT_FRAME_ENTER( 31 ) )
|
2000-06-01 05:27:48 +02:00
|
|
|
goto Exit;
|
|
|
|
|
* README.UNX: updated the Unix-specific quick-compilation guide to
warn about the GNU Make requirement at compile time..
* include/freetype/config/ftstdlib.h,
include/freetype/config/ftconfig.h,
include/freetype/config/ftheader.h,
include/freetype/internal/ftmemory.h,
include/freetype/internal/ftobjs.h,
src/autohint/ahoptim.c,
src/base/ftdbgmem.c, src/base/ftdebug.c,
src/base/ftmac.c, src/base/ftobjs.c,
src/base/ftsystem.c,
src/cache/ftcimage.c, src/cache/ftcsbits.c,
src/cff/cffdriver.c, src/cff/cffload.c, src/cff/cffobjs.c,
src/cid/cidload.c, src/cid/cidparse.c, src/cid/cidriver.c,
src/pcf/pcfdriver.c, src/pcf/pcfread.c,
src/psaux/t1cmap.c, src/psaux/t1decode.c,
src/pshinter/pshalgo1.c, src/pshinter/pshalgo2.c,
src/pshinter/pshrec.c,
src/psnames/psmodule.c,
src/raster/ftraster.c,
src/sfnt/sfdriver.c, src/sfnt/ttload.c, src/sfnt/ttpost.c,
src/smooth/ftgrays.c,
src/type1/t1afm.c, src/type1/t1driver.c, src/type1/t1gload.c,
src/type1/t1load.c, src/type1/t1objs.c, src/type1/t1parse.c:
added the new configuration file "ftstdlib.h" used to define
aliases for all ISO C library functions used by the engine
(e.g. strlen, qsort, setjmp, etc...)
this eases the porting of FreeType 2 to exotic environments like
XFree86 modules/extensions..
also removed many #include <string.h>, #include <stdlib.h>, etc...
from the engine's sources where they're not needed..
2002-04-12 11:31:48 +02:00
|
|
|
if ( ft_strncmp( (char *)stream->cursor,
|
2002-04-14 02:54:32 +02:00
|
|
|
"%!PS-Adobe-3.0 Resource-CIDFont", 31 ) )
|
2000-06-01 05:27:48 +02:00
|
|
|
{
|
Improve tracing.
* src/bdf/bdfdrivr.c (BDF_Face_Done), src/pcf/pcfdrivr.c
(PCF_Face_Done): Remove tracing message.
* src/bdf/bdfdrivr.c (BDF_Face_Init), src/cff/cffobjs.c
(cff_face_init), src/cid/cidobjs.c (cid_face_init),
src/pfr/pfrobjs.c (pfr_face_init), src/sfnt/sfobjs.c
(sfnt_init_face), src/truetype/ttobjs.c (tt_face_init),
src/type1/t1objs.c (T1_Face_Init), src/type42/t42objs.c
(T42_Face_Init), src/winfonts/winfnt.c (FNT_Face_Init): Add
`greeting' message.
* src/sfnt/sfobjs.c (sfnt_open_font), src/type42/t42objs.c
(T42_Open_Face): Improve tracing.
2011-11-26 20:09:39 +01:00
|
|
|
FT_TRACE2(( " not a CID-keyed font\n" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Unknown_File_Format );
|
2000-06-01 05:27:48 +02:00
|
|
|
}
|
|
|
|
|
2002-03-20 11:49:31 +01:00
|
|
|
FT_FRAME_EXIT();
|
2000-06-16 08:49:56 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2000-06-01 05:27:48 +02:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
Again:
|
2007-01-07 10:13:38 +01:00
|
|
|
/* now, read the rest of the file until we find */
|
|
|
|
/* `StartData' or `/sfnts' */
|
2000-06-01 05:27:48 +02:00
|
|
|
{
|
2016-05-16 19:44:19 +02:00
|
|
|
/*
|
|
|
|
* The algorithm is as follows (omitting the case with less than 256
|
|
|
|
* bytes to fill for simplicity).
|
|
|
|
*
|
|
|
|
* 1. Fill the buffer with 256 + STARTDATA_LEN bytes.
|
|
|
|
*
|
|
|
|
* 2. Search for the STARTDATA and SFNTS strings at positions
|
|
|
|
* buffer[0], buffer[1], ...,
|
|
|
|
* buffer[255 + STARTDATA_LEN - SFNTS_LEN].
|
|
|
|
*
|
|
|
|
* 3. Move the last STARTDATA_LEN bytes to buffer[0].
|
|
|
|
*
|
|
|
|
* 4. Fill the buffer with 256 bytes, starting at STARTDATA_LEN.
|
|
|
|
*
|
|
|
|
* 5. Repeat with step 2.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
FT_Byte buffer[256 + STARTDATA_LEN + 1];
|
|
|
|
|
|
|
|
/* values for the first loop */
|
|
|
|
FT_ULong read_len = 256 + STARTDATA_LEN;
|
|
|
|
FT_ULong read_offset = 0;
|
|
|
|
FT_Byte* p = buffer;
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-08-24 18:29:15 +02:00
|
|
|
|
2009-07-31 17:30:16 +02:00
|
|
|
for ( offset = FT_STREAM_POS(); ; offset += 256 )
|
2006-02-09 02:43:00 +01:00
|
|
|
{
|
2015-02-20 20:14:11 +01:00
|
|
|
FT_ULong stream_len;
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-10-11 16:59:46 +02:00
|
|
|
|
2006-02-09 02:43:00 +01:00
|
|
|
stream_len = stream->size - FT_STREAM_POS();
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2006-02-09 02:43:00 +01:00
|
|
|
read_len = FT_MIN( read_len, stream_len );
|
|
|
|
if ( FT_STREAM_READ( p, read_len ) )
|
|
|
|
goto Exit;
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2016-05-16 19:44:19 +02:00
|
|
|
/* ensure that we do not compare with data beyond the buffer */
|
|
|
|
p[read_len] = '\0';
|
2006-02-09 02:43:00 +01:00
|
|
|
|
2016-05-16 19:44:19 +02:00
|
|
|
limit = p + read_len - SFNTS_LEN;
|
2006-02-09 02:43:00 +01:00
|
|
|
|
|
|
|
for ( p = buffer; p < limit; p++ )
|
2000-06-01 05:27:48 +02:00
|
|
|
{
|
2016-05-16 19:44:19 +02:00
|
|
|
if ( p[0] == 'S' &&
|
|
|
|
ft_strncmp( (char*)p, STARTDATA, STARTDATA_LEN ) == 0 )
|
2006-02-09 02:43:00 +01:00
|
|
|
{
|
|
|
|
/* save offset of binary data after `StartData' */
|
2016-10-08 19:20:33 +02:00
|
|
|
offset += (FT_ULong)( p - buffer ) + STARTDATA_LEN + 1;
|
2006-02-09 02:43:00 +01:00
|
|
|
goto Found;
|
|
|
|
}
|
2016-05-16 19:44:19 +02:00
|
|
|
else if ( p[1] == 's' &&
|
|
|
|
ft_strncmp( (char*)p, SFNTS, SFNTS_LEN ) == 0 )
|
2007-01-07 10:13:38 +01:00
|
|
|
{
|
2016-10-08 19:20:33 +02:00
|
|
|
offset += (FT_ULong)( p - buffer ) + SFNTS_LEN + 1;
|
2007-01-07 10:13:38 +01:00
|
|
|
goto Found;
|
|
|
|
}
|
2000-06-01 05:27:48 +02:00
|
|
|
}
|
2006-02-09 02:43:00 +01:00
|
|
|
|
2016-05-16 19:44:19 +02:00
|
|
|
if ( read_offset + read_len < STARTDATA_LEN )
|
|
|
|
{
|
|
|
|
FT_TRACE2(( "cid_parser_new: no `StartData' keyword found\n" ));
|
|
|
|
error = FT_THROW( Invalid_File_Format );
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
FT_MEM_MOVE( buffer,
|
|
|
|
buffer + read_offset + read_len - STARTDATA_LEN,
|
|
|
|
STARTDATA_LEN );
|
|
|
|
|
|
|
|
/* values for the next loop */
|
|
|
|
read_len = 256;
|
|
|
|
read_offset = STARTDATA_LEN;
|
|
|
|
p = buffer + read_offset;
|
2000-06-01 05:27:48 +02:00
|
|
|
}
|
|
|
|
}
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
Found:
|
2007-01-07 10:13:38 +01:00
|
|
|
/* We have found the start of the binary data or the `/sfnts' token. */
|
|
|
|
/* Now rewind and extract the frame corresponding to this PostScript */
|
|
|
|
/* section. */
|
2000-06-16 08:49:56 +02:00
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
ps_len = offset - base_offset;
|
2003-10-07 07:49:41 +02:00
|
|
|
if ( FT_STREAM_SEEK( base_offset ) ||
|
2002-03-20 11:49:31 +01:00
|
|
|
FT_FRAME_EXTRACT( ps_len, parser->postscript ) )
|
2000-06-01 05:27:48 +02:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
parser->data_offset = offset;
|
|
|
|
parser->postscript_len = ps_len;
|
2000-08-24 00:47:44 +02:00
|
|
|
parser->root.base = parser->postscript;
|
|
|
|
parser->root.cursor = parser->postscript;
|
|
|
|
parser->root.limit = parser->root.cursor + ps_len;
|
2000-06-01 05:27:48 +02:00
|
|
|
parser->num_dict = -1;
|
|
|
|
|
2007-01-07 10:13:38 +01:00
|
|
|
/* Finally, we check whether `StartData' or `/sfnts' was real -- */
|
|
|
|
/* it could be in a comment or string. We also get the arguments */
|
|
|
|
/* of `StartData' to find out whether the data is represented in */
|
|
|
|
/* binary or hex format. */
|
2003-10-07 07:49:41 +02:00
|
|
|
|
2004-01-23 20:52:40 +01:00
|
|
|
arg1 = parser->root.cursor;
|
2004-01-22 10:07:12 +01:00
|
|
|
cid_parser_skip_PS_token( parser );
|
|
|
|
cid_parser_skip_spaces ( parser );
|
2004-01-23 20:52:40 +01:00
|
|
|
arg2 = parser->root.cursor;
|
2004-01-22 10:07:12 +01:00
|
|
|
cid_parser_skip_PS_token( parser );
|
|
|
|
cid_parser_skip_spaces ( parser );
|
|
|
|
|
2004-01-23 20:52:40 +01:00
|
|
|
limit = parser->root.limit;
|
|
|
|
cur = parser->root.cursor;
|
|
|
|
|
2016-08-26 11:50:09 +02:00
|
|
|
while ( cur <= limit - SFNTS_LEN )
|
2003-10-07 07:49:41 +02:00
|
|
|
{
|
2005-02-13 22:42:42 +01:00
|
|
|
if ( parser->root.error )
|
2007-06-01 08:32:30 +02:00
|
|
|
{
|
|
|
|
error = parser->root.error;
|
|
|
|
goto Exit;
|
|
|
|
}
|
2005-02-13 22:42:42 +01:00
|
|
|
|
2016-05-16 19:44:19 +02:00
|
|
|
if ( cur[0] == 'S' &&
|
2016-08-26 11:50:09 +02:00
|
|
|
cur <= limit - STARTDATA_LEN &&
|
2016-05-16 19:44:19 +02:00
|
|
|
ft_strncmp( (char*)cur, STARTDATA, STARTDATA_LEN ) == 0 )
|
2003-10-07 07:49:41 +02:00
|
|
|
{
|
2004-01-22 10:07:12 +01:00
|
|
|
if ( ft_strncmp( (char*)arg1, "(Hex)", 5 ) == 0 )
|
2015-02-20 20:14:11 +01:00
|
|
|
{
|
2016-07-11 05:56:26 +02:00
|
|
|
FT_Long tmp = ft_strtol( (const char *)arg2, NULL, 10 );
|
2015-02-20 20:14:11 +01:00
|
|
|
|
|
|
|
|
|
|
|
if ( tmp < 0 )
|
|
|
|
{
|
|
|
|
FT_ERROR(( "cid_parser_new: invalid length of hex data\n" ));
|
|
|
|
error = FT_THROW( Invalid_File_Format );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
parser->binary_length = (FT_ULong)tmp;
|
|
|
|
}
|
2004-01-23 20:52:40 +01:00
|
|
|
|
2003-10-07 07:49:41 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
2016-05-16 19:44:19 +02:00
|
|
|
else if ( cur[1] == 's' &&
|
|
|
|
ft_strncmp( (char*)cur, SFNTS, SFNTS_LEN ) == 0 )
|
2007-01-07 10:13:38 +01:00
|
|
|
{
|
|
|
|
FT_TRACE2(( "cid_parser_new: cannot handle Type 11 fonts\n" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Unknown_File_Format );
|
2007-01-07 10:13:38 +01:00
|
|
|
goto Exit;
|
|
|
|
}
|
2003-10-07 07:49:41 +02:00
|
|
|
|
|
|
|
cid_parser_skip_PS_token( parser );
|
|
|
|
cid_parser_skip_spaces ( parser );
|
2004-01-22 10:07:12 +01:00
|
|
|
arg1 = arg2;
|
|
|
|
arg2 = cur;
|
|
|
|
cur = parser->root.cursor;
|
2003-10-07 07:49:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* we haven't found the correct `StartData'; go back and continue */
|
|
|
|
/* searching */
|
|
|
|
FT_FRAME_RELEASE( parser->postscript );
|
|
|
|
if ( !FT_STREAM_SEEK( offset ) )
|
|
|
|
goto Again;
|
|
|
|
|
2000-06-01 05:27:48 +02:00
|
|
|
Exit:
|
2000-06-16 08:49:56 +02:00
|
|
|
return error;
|
2000-06-01 05:27:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2016-05-16 19:44:19 +02:00
|
|
|
#undef STARTDATA
|
|
|
|
#undef STARTDATA_LEN
|
|
|
|
#undef SFNTS
|
|
|
|
#undef SFNTS_LEN
|
|
|
|
|
|
|
|
|
2002-03-01 03:26:22 +01:00
|
|
|
FT_LOCAL_DEF( void )
|
* massive re-formatting changes to many, many source files. I don't
want to list them all here. The operations performed were all logical
transformations of the sources:
- trying to convert all enums and constants to CAPITALIZED_STYLE, with
#define definitions like
#define my_old_constants MY_NEW_CONSTANT
- big, big update of the documentation comments
* include/freetype/freetype.h, src/base/ftobjs.c, src/smooth/ftsmooth.c,
include/freetype/ftimage.h: adding support for LCD-optimized rendering
though the new constants/enums:
FT_RENDER_MODE_LCD, FT_RENDER_MODE_LCD_V
FT_PIXEL_MODE_LCD, FT_PIXEL_MODE_LCD_V
this is still work in progress, don't expect everything to work correctly
though most of the features have been implemented.
* adding new FT_LOAD_XXX flags, used to specify both hinting and rendering
targets:
FT_LOAD_TARGET_NORMAL :: anti-aliased hinting & rendering
FT_LOAD_TARGET_MONO :: monochrome bitmaps
FT_LOAD_TARGET_LCD :: horizontal RGB/BGR decimated hinting & rendering
FT_LOAD_TARGET_LCD_V :: vertical RGB/BGR decimated hinting & rendering
note that FT_LOAD_TARGET_NORMAL is 0, which means that the default
behaviour of the font engine is _unchanged_.
2002-08-27 22:20:29 +02:00
|
|
|
cid_parser_done( CID_Parser* parser )
|
2000-06-01 05:27:48 +02:00
|
|
|
{
|
|
|
|
/* always free the private dictionary */
|
2000-06-16 08:49:56 +02:00
|
|
|
if ( parser->postscript )
|
2000-06-01 05:27:48 +02:00
|
|
|
{
|
|
|
|
FT_Stream stream = parser->stream;
|
2000-06-16 08:49:56 +02:00
|
|
|
|
|
|
|
|
2002-03-20 11:49:31 +01:00
|
|
|
FT_FRAME_RELEASE( parser->postscript );
|
2000-06-01 05:27:48 +02:00
|
|
|
}
|
2000-08-24 00:47:44 +02:00
|
|
|
parser->root.funcs.done( &parser->root );
|
2000-06-01 05:27:48 +02:00
|
|
|
}
|
|
|
|
|
2000-06-16 08:49:56 +02:00
|
|
|
|
|
|
|
/* END */
|