00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019 #include <ft2build.h>
00020 #include "cidload.h"
00021 #include "cidgload.h"
00022 #include FT_INTERNAL_DEBUG_H
00023 #include FT_INTERNAL_STREAM_H
00024 #include FT_OUTLINE_H
00025 #include FT_INTERNAL_CALC_H
00026
00027 #include "ciderrs.h"
00028
00029
00030
00031
00032
00033
00034
00035
00036 #undef FT_COMPONENT
00037 #define FT_COMPONENT trace_cidgload
00038
00039
00040 FT_CALLBACK_DEF( FT_Error )
00041 cid_load_glyph( T1_Decoder decoder,
00042 FT_UInt glyph_index )
00043 {
00044 CID_Face face = (CID_Face)decoder->builder.face;
00045 CID_FaceInfo cid = &face->cid;
00046 FT_Byte* p;
00047 FT_UInt fd_select;
00048 FT_Stream stream = face->cid_stream;
00049 FT_Error error = CID_Err_Ok;
00050 FT_Byte* charstring = 0;
00051 FT_Memory memory = face->root.memory;
00052 FT_ULong glyph_length = 0;
00053 PSAux_Service psaux = (PSAux_Service)face->psaux;
00054
00055 #ifdef FT_CONFIG_OPTION_INCREMENTAL
00056 FT_Incremental_InterfaceRec *inc =
00057 face->root.internal->incremental_interface;
00058 #endif
00059
00060
00061 FT_TRACE4(( "cid_load_glyph: glyph index %d\n", glyph_index ));
00062
00063 #ifdef FT_CONFIG_OPTION_INCREMENTAL
00064
00065
00066
00067 if ( inc )
00068 {
00069 FT_Data glyph_data;
00070
00071
00072 error = inc->funcs->get_glyph_data( inc->object,
00073 glyph_index, &glyph_data );
00074 if ( error )
00075 goto Exit;
00076
00077 p = (FT_Byte*)glyph_data.pointer;
00078 fd_select = (FT_UInt)cid_get_offset( &p, (FT_Byte)cid->fd_bytes );
00079
00080 if ( glyph_data.length != 0 )
00081 {
00082 glyph_length = glyph_data.length - cid->fd_bytes;
00083 (void)FT_ALLOC( charstring, glyph_length );
00084 if ( !error )
00085 ft_memcpy( charstring, glyph_data.pointer + cid->fd_bytes,
00086 glyph_length );
00087 }
00088
00089 inc->funcs->free_glyph_data( inc->object, &glyph_data );
00090
00091 if ( error )
00092 goto Exit;
00093 }
00094
00095 else
00096
00097 #endif
00098
00099
00100
00101 {
00102 FT_UInt entry_len = cid->fd_bytes + cid->gd_bytes;
00103 FT_ULong off1;
00104
00105
00106 if ( FT_STREAM_SEEK( cid->data_offset + cid->cidmap_offset +
00107 glyph_index * entry_len ) ||
00108 FT_FRAME_ENTER( 2 * entry_len ) )
00109 goto Exit;
00110
00111 p = (FT_Byte*)stream->cursor;
00112 fd_select = (FT_UInt) cid_get_offset( &p, (FT_Byte)cid->fd_bytes );
00113 off1 = (FT_ULong)cid_get_offset( &p, (FT_Byte)cid->gd_bytes );
00114 p += cid->fd_bytes;
00115 glyph_length = cid_get_offset( &p, (FT_Byte)cid->gd_bytes ) - off1;
00116 FT_FRAME_EXIT();
00117
00118 if ( fd_select >= (FT_UInt)cid->num_dicts )
00119 {
00120 error = CID_Err_Invalid_Offset;
00121 goto Exit;
00122 }
00123 if ( glyph_length == 0 )
00124 goto Exit;
00125 if ( FT_ALLOC( charstring, glyph_length ) )
00126 goto Exit;
00127 if ( FT_STREAM_READ_AT( cid->data_offset + off1,
00128 charstring, glyph_length ) )
00129 goto Exit;
00130 }
00131
00132
00133 {
00134 CID_FaceDict dict;
00135 CID_Subrs cid_subrs = face->subrs + fd_select;
00136 FT_Int cs_offset;
00137
00138
00139
00140 decoder->num_subrs = cid_subrs->num_subrs;
00141 decoder->subrs = cid_subrs->code;
00142 decoder->subrs_len = 0;
00143
00144
00145 dict = cid->font_dicts + fd_select;
00146
00147 decoder->font_matrix = dict->font_matrix;
00148 decoder->font_offset = dict->font_offset;
00149 decoder->lenIV = dict->private_dict.lenIV;
00150
00151
00152
00153
00154 cs_offset = ( decoder->lenIV >= 0 ? decoder->lenIV : 0 );
00155
00156
00157 if ( decoder->lenIV >= 0 )
00158 psaux->t1_decrypt( charstring, glyph_length, 4330 );
00159
00160 error = decoder->funcs.parse_charstrings(
00161 decoder, charstring + cs_offset,
00162 (FT_Int)glyph_length - cs_offset );
00163 }
00164
00165 FT_FREE( charstring );
00166
00167 #ifdef FT_CONFIG_OPTION_INCREMENTAL
00168
00169
00170 if ( !error && inc && inc->funcs->get_glyph_metrics )
00171 {
00172 FT_Incremental_MetricsRec metrics;
00173
00174
00175 metrics.bearing_x = FIXED_TO_INT( decoder->builder.left_bearing.x );
00176 metrics.bearing_y = 0;
00177 metrics.advance = FIXED_TO_INT( decoder->builder.advance.x );
00178 metrics.advance_v = FIXED_TO_INT( decoder->builder.advance.y );
00179
00180 error = inc->funcs->get_glyph_metrics( inc->object,
00181 glyph_index, FALSE, &metrics );
00182
00183 decoder->builder.left_bearing.x = INT_TO_FIXED( metrics.bearing_x );
00184 decoder->builder.advance.x = INT_TO_FIXED( metrics.advance );
00185 decoder->builder.advance.y = INT_TO_FIXED( metrics.advance_v );
00186 }
00187
00188 #endif
00189
00190 Exit:
00191 return error;
00192 }
00193
00194
00195 #if 0
00196
00197
00198
00199
00200
00201
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214
00215
00216 FT_LOCAL_DEF( FT_Error )
00217 cid_face_compute_max_advance( CID_Face face,
00218 FT_Int* max_advance )
00219 {
00220 FT_Error error;
00221 T1_DecoderRec decoder;
00222 FT_Int glyph_index;
00223
00224 PSAux_Service psaux = (PSAux_Service)face->psaux;
00225
00226
00227 *max_advance = 0;
00228
00229
00230 error = psaux->t1_decoder_funcs->init( &decoder,
00231 (FT_Face)face,
00232 0,
00233 0,
00234 0,
00235 0,
00236 0,
00237 cid_load_glyph );
00238 if ( error )
00239 return error;
00240
00241
00242
00243
00244 decoder.builder.metrics_only = 1;
00245 decoder.builder.load_points = 0;
00246
00247
00248
00249 for ( glyph_index = 0; glyph_index < face->root.num_glyphs;
00250 glyph_index++ )
00251 {
00252
00253 error = cid_load_glyph( &decoder, glyph_index );
00254
00255 }
00256
00257 *max_advance = FIXED_TO_INT( decoder.builder.advance.x );
00258
00259 psaux->t1_decoder_funcs->done( &decoder );
00260
00261 return CID_Err_Ok;
00262 }
00263
00264
00265 #endif
00266
00267
00268 FT_LOCAL_DEF( FT_Error )
00269 cid_slot_load_glyph( FT_GlyphSlot cidglyph,
00270 FT_Size cidsize,
00271 FT_UInt glyph_index,
00272 FT_Int32 load_flags )
00273 {
00274 CID_GlyphSlot glyph = (CID_GlyphSlot)cidglyph;
00275 CID_Size size = (CID_Size)cidsize;
00276 FT_Error error;
00277 T1_DecoderRec decoder;
00278 CID_Face face = (CID_Face)cidglyph->face;
00279 FT_Bool hinting;
00280
00281 PSAux_Service psaux = (PSAux_Service)face->psaux;
00282 FT_Matrix font_matrix;
00283 FT_Vector font_offset;
00284
00285
00286 if ( glyph_index >= (FT_UInt)face->root.num_glyphs )
00287 {
00288 error = CID_Err_Invalid_Argument;
00289 goto Exit;
00290 }
00291
00292 if ( load_flags & FT_LOAD_NO_RECURSE )
00293 load_flags |= FT_LOAD_NO_SCALE | FT_LOAD_NO_HINTING;
00294
00295 glyph->x_scale = cidsize->metrics.x_scale;
00296 glyph->y_scale = cidsize->metrics.y_scale;
00297
00298 cidglyph->outline.n_points = 0;
00299 cidglyph->outline.n_contours = 0;
00300
00301 hinting = FT_BOOL( ( load_flags & FT_LOAD_NO_SCALE ) == 0 &&
00302 ( load_flags & FT_LOAD_NO_HINTING ) == 0 );
00303
00304 cidglyph->format = FT_GLYPH_FORMAT_OUTLINE;
00305
00306 error = psaux->t1_decoder_funcs->init( &decoder,
00307 cidglyph->face,
00308 cidsize,
00309 cidglyph,
00310 0,
00311 0,
00312 hinting,
00313 FT_LOAD_TARGET_MODE( load_flags ),
00314 cid_load_glyph );
00315 if ( error )
00316 goto Exit;
00317
00318
00319
00320
00321
00322 decoder.builder.no_recurse = FT_BOOL(
00323 ( ( load_flags & FT_LOAD_NO_RECURSE ) != 0 ) );
00324
00325 error = cid_load_glyph( &decoder, glyph_index );
00326 if ( error )
00327 goto Exit;
00328
00329 font_matrix = decoder.font_matrix;
00330 font_offset = decoder.font_offset;
00331
00332
00333 psaux->t1_decoder_funcs->done( &decoder );
00334
00335
00336
00337
00338 cidglyph->outline.flags &= FT_OUTLINE_OWNER;
00339 cidglyph->outline.flags |= FT_OUTLINE_REVERSE_FILL;
00340
00341
00342
00343 if ( load_flags & FT_LOAD_NO_RECURSE )
00344 {
00345 FT_Slot_Internal internal = cidglyph->internal;
00346
00347
00348 cidglyph->metrics.horiBearingX =
00349 FIXED_TO_INT( decoder.builder.left_bearing.x );
00350 cidglyph->metrics.horiAdvance =
00351 FIXED_TO_INT( decoder.builder.advance.x );
00352
00353 internal->glyph_matrix = font_matrix;
00354 internal->glyph_delta = font_offset;
00355 internal->glyph_transformed = 1;
00356 }
00357 else
00358 {
00359 FT_BBox cbox;
00360 FT_Glyph_Metrics* metrics = &cidglyph->metrics;
00361 FT_Vector advance;
00362
00363
00364
00365 metrics->horiAdvance =
00366 FIXED_TO_INT( decoder.builder.advance.x );
00367 cidglyph->linearHoriAdvance =
00368 FIXED_TO_INT( decoder.builder.advance.x );
00369 cidglyph->internal->glyph_transformed = 0;
00370
00371
00372 metrics->vertAdvance = ( face->cid.font_bbox.yMax -
00373 face->cid.font_bbox.yMin ) >> 16;
00374 cidglyph->linearVertAdvance = metrics->vertAdvance;
00375
00376 cidglyph->format = FT_GLYPH_FORMAT_OUTLINE;
00377
00378 if ( size && cidsize->metrics.y_ppem < 24 )
00379 cidglyph->outline.flags |= FT_OUTLINE_HIGH_PRECISION;
00380
00381
00382 FT_Outline_Transform( &cidglyph->outline, &font_matrix );
00383
00384 FT_Outline_Translate( &cidglyph->outline,
00385 font_offset.x,
00386 font_offset.y );
00387
00388 advance.x = metrics->horiAdvance;
00389 advance.y = 0;
00390 FT_Vector_Transform( &advance, &font_matrix );
00391 metrics->horiAdvance = advance.x + font_offset.x;
00392
00393 advance.x = 0;
00394 advance.y = metrics->vertAdvance;
00395 FT_Vector_Transform( &advance, &font_matrix );
00396 metrics->vertAdvance = advance.y + font_offset.y;
00397
00398 if ( ( load_flags & FT_LOAD_NO_SCALE ) == 0 )
00399 {
00400
00401 FT_Int n;
00402 FT_Outline* cur = decoder.builder.base;
00403 FT_Vector* vec = cur->points;
00404 FT_Fixed x_scale = glyph->x_scale;
00405 FT_Fixed y_scale = glyph->y_scale;
00406
00407
00408
00409 if ( !hinting || !decoder.builder.hints_funcs )
00410 for ( n = cur->n_points; n > 0; n--, vec++ )
00411 {
00412 vec->x = FT_MulFix( vec->x, x_scale );
00413 vec->y = FT_MulFix( vec->y, y_scale );
00414 }
00415
00416
00417 metrics->horiAdvance = FT_MulFix( metrics->horiAdvance, x_scale );
00418 metrics->vertAdvance = FT_MulFix( metrics->vertAdvance, y_scale );
00419 }
00420
00421
00422 FT_Outline_Get_CBox( &cidglyph->outline, &cbox );
00423
00424 metrics->width = cbox.xMax - cbox.xMin;
00425 metrics->height = cbox.yMax - cbox.yMin;
00426
00427 metrics->horiBearingX = cbox.xMin;
00428 metrics->horiBearingY = cbox.yMax;
00429
00430 if ( load_flags & FT_LOAD_VERTICAL_LAYOUT )
00431 {
00432
00433 ft_synthesize_vertical_metrics( metrics,
00434 metrics->vertAdvance );
00435 }
00436 }
00437
00438 Exit:
00439 return error;
00440 }
00441
00442
00443