/* Copyright (C) 1998, 2000, 2001 Aladdin Enterprises. All rights reserved. This software is provided AS-IS with no warranty, either express or implied. This software is distributed under license and may not be copied, modified or distributed except as expressly authorized under the terms of the license contained in the file LICENSE in this distribution. For more information about licensing, please refer to http://www.ghostscript.com/licensing/. For information on commercial licensing, go to http://www.artifex.com/licensing/ or contact Artifex Software, Inc., 101 Lucas Valley Road #110, San Rafael, CA 94903, U.S.A., +1(415)492-9861. */ /* $Id$ */ /* Type 1 / Type 2 character rendering operator procedures */ #ifndef ichar1_INCLUDED # define ichar1_INCLUDED /* ---------------- Public ---------------- */ /* Render a Type 1 or Type 2 outline. */ /* This is the entire implementation of the .type1/2execchar operators. */ int charstring_execchar(P2(i_ctx_t *i_ctx_p, int font_type_mask)); /* ---------------- Internal ---------------- */ /* * Get a Type 1 or Type 2 glyph outline. This is the glyph_outline * procedure for the font. */ font_proc_glyph_outline(zchar1_glyph_outline); /* * Get a glyph outline given a CharString. The glyph_outline procedure * for CIDFontType 0 fonts uses this. */ int zcharstring_outline(P5(gs_font_type1 *pfont, const ref *pgref, const gs_glyph_data_t *pgd, const gs_matrix *pmat, gx_path *ppath)); #endif /* ichar1_INCLUDED */