2002-10-31 23:19:27 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* ftgzip.h */
|
|
|
|
/* */
|
|
|
|
/* Gzip-compressed stream support. */
|
|
|
|
/* */
|
2006-03-24 13:46:49 +01:00
|
|
|
/* Copyright 2002, 2003, 2004, 2006 by */
|
2002-10-31 23:19:27 +01: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. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2002-11-29 13:56:49 +01:00
|
|
|
#ifndef __FTGZIP_H__
|
|
|
|
#define __FTGZIP_H__
|
2002-10-31 23:19:27 +01:00
|
|
|
|
|
|
|
#include <ft2build.h>
|
|
|
|
#include FT_FREETYPE_H
|
|
|
|
|
2003-11-04 08:44:19 +01:00
|
|
|
#ifdef FREETYPE_H
|
|
|
|
#error "freetype.h of FreeType 1 has been loaded!"
|
|
|
|
#error "Please fix the directory search order for header files"
|
|
|
|
#error "so that freetype.h of FreeType 2 is found first."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2002-10-31 23:19:27 +01:00
|
|
|
FT_BEGIN_HEADER
|
|
|
|
|
2002-11-14 00:28:08 +01:00
|
|
|
/*************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* <Section> */
|
|
|
|
/* gzip */
|
|
|
|
/* */
|
|
|
|
/* <Title> */
|
|
|
|
/* GZIP Streams */
|
|
|
|
/* */
|
|
|
|
/* <Abstract> */
|
Adding OpenType validation module. The code is based on the
(unfinished) `otlayout' module but has been heavily modified to make
it much more compact.
* src/otvalid/*: New module.
* include/freetype/ftotval.h, src/base/ftotval.c,
include/freetype/internal/services/svotval.h: New files.
* include/freetype/config/ftmodule.h: Add otv_module_class.
* include/freetype/config/ftheader.h (FT_OPENTYPE_VALIDATE_H): New
macro.
* include/freetype/internal/ftserv.h
(FT_SERVICE_OPENTYPE_VALIDATE_H): New macro.
* include/freetype/internal/fttrace.h (otvmodule, otvcommon,
otvbase, otvgdef, otvgpos, otvgsub, otvjstf): New trace components.
* include/freetype/ftchapters.h: Updated.
* src/base/Jamfile (Library), src/base/descrip.mms (OBJS),
src/base/rules.mk (BASE_EXT_SRC): Updated.
* docs/CHANGES: Updated.
2004-09-10 16:39:00 +02:00
|
|
|
/* Using gzip-compressed font files. */
|
2002-11-14 00:28:08 +01:00
|
|
|
/* */
|
|
|
|
/* <Description> */
|
|
|
|
/* This section contains the declaration of Gzip-specific functions. */
|
|
|
|
/* */
|
|
|
|
/*************************************************************************/
|
|
|
|
|
2003-04-22 09:49:24 +02:00
|
|
|
|
2002-10-31 23:19:27 +01:00
|
|
|
/************************************************************************
|
|
|
|
*
|
2003-04-22 09:49:24 +02:00
|
|
|
* @function:
|
|
|
|
* FT_Stream_OpenGzip
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
|
|
|
* @description:
|
2003-04-22 09:49:24 +02:00
|
|
|
* Open a new stream to parse gzip-compressed font files. This is
|
2006-05-12 15:55:04 +02:00
|
|
|
* mainly used to support the compressed `*.pcf.gz' fonts that come
|
2003-04-22 09:49:24 +02:00
|
|
|
* with XFree86.
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
|
|
|
* @input:
|
2006-05-12 15:55:04 +02:00
|
|
|
* stream ::
|
|
|
|
* The target embedding stream.
|
2003-04-22 09:49:24 +02:00
|
|
|
*
|
2006-05-12 15:55:04 +02:00
|
|
|
* source ::
|
|
|
|
* The source stream.
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
|
|
|
* @return:
|
2008-06-26 21:56:51 +02:00
|
|
|
* FreeType error code. 0~means success.
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
|
|
|
* @note:
|
2003-04-22 09:49:24 +02:00
|
|
|
* The source stream must be opened _before_ calling this function.
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
2006-05-12 15:55:04 +02:00
|
|
|
* Calling the internal function `FT_Stream_Close' on the new stream will
|
|
|
|
* *not* call `FT_Stream_Close' on the source stream. None of the stream
|
2003-07-25 07:57:21 +02:00
|
|
|
* objects will be released to the heap.
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
2003-04-22 09:49:24 +02:00
|
|
|
* The stream implementation is very basic and resets the decompression
|
|
|
|
* process each time seeking backwards is needed within the stream.
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
2003-04-22 09:49:24 +02:00
|
|
|
* In certain builds of the library, gzip compression recognition is
|
|
|
|
* automatically handled when calling @FT_New_Face or @FT_Open_Face.
|
|
|
|
* This means that if no font driver is capable of handling the raw
|
|
|
|
* compressed file, the library will try to open a gzipped stream from
|
|
|
|
* it and re-open the face with it.
|
2002-10-31 23:19:27 +01:00
|
|
|
*
|
2006-05-12 15:55:04 +02:00
|
|
|
* This function may return `FT_Err_Unimplemented_Feature' if your build
|
|
|
|
* of FreeType was not compiled with zlib support.
|
2002-10-31 23:19:27 +01:00
|
|
|
*/
|
|
|
|
FT_EXPORT( FT_Error )
|
2003-04-22 09:49:24 +02:00
|
|
|
FT_Stream_OpenGzip( FT_Stream stream,
|
|
|
|
FT_Stream source );
|
2002-10-31 23:19:27 +01:00
|
|
|
|
|
|
|
/* */
|
|
|
|
|
2003-04-22 09:49:24 +02:00
|
|
|
|
2002-10-31 23:19:27 +01:00
|
|
|
FT_END_HEADER
|
|
|
|
|
2002-11-29 13:56:49 +01:00
|
|
|
#endif /* __FTGZIP_H__ */
|
2003-04-22 09:49:24 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* END */
|