2183 {
2185 {
2186#undef FT_STRUCTURE
2187#define FT_STRUCTURE CFF_FontRec
2188
2194 };
2195
2202
2203
2206
2207 dict = &
font->top_font.font_dict;
2209
2214 font->base_offset = base_offset;
2215
2216
2219
2220 if ( cff2 )
2221 {
2222 if (
font->version_major != 2 ||
2223 font->header_size < 5 )
2224 {
2225 FT_TRACE2((
" not a CFF2 font header\n" ));
2228 }
2229
2232 }
2233 else
2234 {
2236
2237
2240
2241 if (
font->version_major != 1 ||
2242 font->header_size < 4 ||
2243 absolute_offset > 4 )
2244 {
2245 FT_TRACE2((
" not a CFF font header\n" ));
2248 }
2249 }
2250
2251
2253 {
2254
2255
2256
2257 if ( pure_cff )
2258 {
2261 }
2263 }
2264
2265 if ( cff2 )
2266 {
2267
2268
2269
2270
2271
2272
2274
2276 font->font_dict_index.data_size =
font->top_dict_length;
2277
2278
2281
2282
2286 }
2287 else
2288 {
2289
2292 {
2293 if ( pure_cff )
2294 {
2297 }
2299 }
2300
2301
2302
2303 if (
font->name_index.count > 1 &&
2304 font->name_index.data_size <
font->name_index.count )
2305 {
2306
2307
2311 }
2312
2322 &
font->string_pool_size ) ) )
2324
2325
2326 if (
font->name_index.count >
font->font_dict_index.count )
2327 {
2329 " not enough entries in Top DICT index\n" ));
2332 }
2333 }
2334
2336
2337 if ( pure_cff )
2338 {
2339
2340 subfont_index = (
FT_UInt)( face_index & 0xFFFF );
2341
2342 if ( face_index > 0 && subfont_index >=
font->name_index.count )
2343 {
2345 " invalid subfont index for pure CFF font (%d)\n",
2346 subfont_index ));
2349 }
2350
2351 font->num_faces =
font->name_index.count;
2352 }
2353 else
2354 {
2355 subfont_index = 0;
2356
2357 if (
font->name_index.count > 1 )
2358 {
2360 " invalid CFF font with multiple subfonts\n"
2361 " "
2362 " in SFNT wrapper\n" ));
2365 }
2366 }
2367
2368
2369 if ( face_index < 0 )
2371
2372
2375 &
font->font_dict_index,
2376 subfont_index,
2378 base_offset,
2384
2387
2391
2392
2394 cff2 )
2395 {
2399
2400
2401
2402
2405 base_offset,
2409
2410
2411
2414
2418
2419
2420
2422 {
2423 FT_TRACE0((
"cff_font_load: FD array too large in CID font\n" ));
2424 goto Fail_CID;
2425 }
2426
2427
2428 font->num_subfonts = fd_index.count;
2430 goto Fail_CID;
2431
2432
2433 for (
idx = 0;
idx < fd_index.count;
idx++ )
2435
2436
2438 {
2442 &fd_index,
2445 base_offset,
2451 goto Fail_CID;
2452 }
2453
2454
2455
2456 if ( !cff2 || fd_index.count > 1 )
2458 font->charstrings_index.count,
2461
2462 Fail_CID:
2464
2467 }
2468 else
2469 font->num_subfonts = 0;
2470
2471
2473 {
2474 FT_ERROR((
"cff_font_load: no charstrings offset\n" ));
2477 }
2478
2479 font->num_glyphs =
font->charstrings_index.count;
2480
2483
2486
2487
2488 if ( !cff2 &&
font->num_glyphs > 0 )
2489 {
2491
2492
2497
2498
2500 {
2505 base_offset,
2509 }
2510 }
2511
2512
2513
2515
2518
2520 }
static FT_Error cff_charset_load(CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset, FT_Bool invert)
static FT_Error cff_encoding_load(CFF_Encoding encoding, CFF_Charset charset, FT_UInt num_glyphs, FT_Stream stream, FT_ULong base_offset, FT_ULong offset)
static FT_Error cff_subfont_load(CFF_SubFont subfont, CFF_Index idx, FT_UInt font_index, FT_Stream stream, FT_ULong base_offset, FT_UInt code, CFF_Font font, CFF_Face face)
static FT_Error cff_index_init(CFF_Index idx, FT_Stream stream, FT_Bool load, FT_Bool cff2)
static FT_Error CFF_Load_FD_Select(CFF_FDSelect fdselect, FT_UInt num_glyphs, FT_Stream stream, FT_ULong offset)
static FT_Error cff_vstore_load(CFF_VStoreRec *vstore, FT_Stream stream, FT_ULong base_offset, FT_ULong offset)
cff_index_get_name(CFF_Font font, FT_UInt element)
static FT_Error cff_index_get_pointers(CFF_Index idx, FT_Byte ***table, FT_Byte **pool, FT_ULong *pool_size)
#define CFF2_CODE_FONTDICT
#define CFF2_CODE_TOPDICT
FT_BEGIN_HEADER struct CFF_IndexRec_ CFF_IndexRec
#define CFF_MAX_CID_FONTS
#define FT_TRACE0(varformat)
#define FT_ERROR(varformat)
#define FT_TRACE2(varformat)
#define FT_NEW_ARRAY(ptr, count)
#define FT_SET_ERROR(expression)
#define FT_READ_USHORT(var)
#define FT_STREAM_SEEK(position)
#define FT_READ_BYTE(var)
#define FT_STREAM_READ_FIELDS(fields, object)
#define FT_STREAM_SKIP(distance)
#define FT_FRAME_START(size)
FT_BEGIN_HEADER typedef unsigned char FT_Bool
GLenum GLuint GLint GLenum face
FT_ULong cid_fd_array_offset
FT_ULong cid_fd_select_offset
FT_ULong charstrings_offset