ReactOS 0.4.16-dev-2358-g0df3463
pcfdrivr.c File Reference
Include dependency graph for pcfdrivr.c:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  PCF_CMapRec_
 

Macros

#define FT_COMPONENT   pcfread
 
#define FT_COMPONENT   pcfdriver
 

Typedefs

typedef struct PCF_CMapRec_ PCF_CMapRec
 
typedef struct PCF_CMapRec_PCF_CMap
 

Functions

 pcf_cmap_init (FT_CMap pcfcmap, FT_Pointer init_data)
 
 pcf_cmap_done (FT_CMap pcfcmap)
 
 pcf_cmap_char_index (FT_CMap pcfcmap, FT_UInt32 charcode)
 
 pcf_cmap_char_next (FT_CMap pcfcmap, FT_UInt32 *acharcode)
 
 PCF_Face_Done (FT_Face pcfface)
 
 PCF_Face_Init (FT_Stream stream, FT_Face pcfface, FT_Int face_index, FT_Int num_params, FT_Parameter *params)
 
 PCF_Size_Select (FT_Size size, FT_ULong strike_index)
 
 PCF_Size_Request (FT_Size size, FT_Size_Request req)
 
 PCF_Glyph_Load (FT_GlyphSlot slot, FT_Size size, FT_UInt glyph_index, FT_Int32 load_flags)
 
static FT_Error pcf_get_bdf_property (PCF_Face face, const char *prop_name, BDF_PropertyRec *aproperty)
 
static FT_Error pcf_get_charset_id (PCF_Face face, const char **acharset_encoding, const char **acharset_registry)
 
static FT_Error pcf_property_set (FT_Module module, const char *property_name, const void *value, FT_Bool value_is_string)
 
static FT_Error pcf_property_get (FT_Module module, const char *property_name, const void *value)
 
 FT_DEFINE_SERVICE_PROPERTIESREC (pcf_service_properties,(FT_Properties_SetFunc) pcf_property_set,(FT_Properties_GetFunc) pcf_property_get) static const FT_ServiceDescRec pcf_services[]
 
 pcf_driver_requester (FT_Module module, const char *name)
 
 pcf_driver_init (FT_Module module)
 
 pcf_driver_done (FT_Module module)
 

Variables

static const FT_CMap_ClassRec pcf_cmap_class
 
static const FT_Service_BDFRec pcf_service_bdf
 
FT_CALLBACK_TABLE_DEF const FT_Driver_ClassRec pcf_driver_class
 

Macro Definition Documentation

◆ FT_COMPONENT [1/2]

#define FT_COMPONENT   pcfread

Definition at line 62 of file pcfdrivr.c.

◆ FT_COMPONENT [2/2]

#define FT_COMPONENT   pcfdriver

Definition at line 62 of file pcfdrivr.c.

Typedef Documentation

◆ PCF_CMap

◆ PCF_CMapRec

Function Documentation

◆ FT_DEFINE_SERVICE_PROPERTIESREC()

FT_DEFINE_SERVICE_PROPERTIESREC ( pcf_service_properties  ,
(FT_Properties_SetFunc pcf_property_set,
(FT_Properties_GetFunc pcf_property_get 
) const

◆ pcf_cmap_char_index()

pcf_cmap_char_index ( FT_CMap  pcfcmap,
FT_UInt32  charcode 
)

Definition at line 104 of file pcfdrivr.c.

106 {
107 PCF_CMap cmap = (PCF_CMap)pcfcmap;
108 PCF_Enc enc = cmap->enc;
109 FT_UShort charcodeRow;
110 FT_UShort charcodeCol;
111
112
113 if ( charcode > (FT_UInt32)( enc->lastRow * 256 + enc->lastCol ) ||
114 charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) )
115 return 0;
116
117 charcodeRow = (FT_UShort)( charcode >> 8 );
118 charcodeCol = (FT_UShort)( charcode & 0xFF );
119
120 if ( charcodeCol < enc->firstCol ||
121 charcodeCol > enc->lastCol )
122 return 0;
123
124 return (FT_UInt)enc->offset[( charcodeRow - enc->firstRow ) *
125 ( enc->lastCol - enc->firstCol + 1 ) +
126 charcodeCol - enc->firstCol];
127 }
unsigned short FT_UShort
Definition: fttypes.h:209
unsigned int FT_UInt
Definition: fttypes.h:231
struct PCF_CMapRec_ * PCF_CMap
PCF_Enc enc
Definition: pcfdrivr.c:72
FT_UShort * offset
Definition: pcf.h:115
FT_UShort firstCol
Definition: pcf.h:109
FT_UShort firstRow
Definition: pcf.h:111
FT_UShort lastRow
Definition: pcf.h:112
FT_UShort lastCol
Definition: pcf.h:110

◆ pcf_cmap_char_next()

pcf_cmap_char_next ( FT_CMap  pcfcmap,
FT_UInt32 *  acharcode 
)

Definition at line 131 of file pcfdrivr.c.

133 {
134 PCF_CMap cmap = (PCF_CMap)pcfcmap;
135 PCF_Enc enc = cmap->enc;
136 FT_UInt32 charcode = *acharcode;
137 FT_UShort charcodeRow;
138 FT_UShort charcodeCol;
139 FT_UInt result = 0;
140
141
142 while ( charcode < (FT_UInt32)( enc->lastRow * 256 + enc->lastCol ) )
143 {
144 charcode++;
145
146 if ( charcode < (FT_UInt32)( enc->firstRow * 256 + enc->firstCol ) )
147 charcode = (FT_UInt32)( enc->firstRow * 256 + enc->firstCol );
148
149 charcodeRow = (FT_UShort)( charcode >> 8 );
150 charcodeCol = (FT_UShort)( charcode & 0xFF );
151
152 if ( charcodeCol < enc->firstCol )
153 charcodeCol = enc->firstCol;
154 else if ( charcodeCol > enc->lastCol )
155 {
156 charcodeRow++;
157 charcodeCol = enc->firstCol;
158 }
159
160 charcode = (FT_UInt32)( charcodeRow * 256 + charcodeCol );
161
162 result = (FT_UInt)enc->offset[( charcodeRow - enc->firstRow ) *
163 ( enc->lastCol - enc->firstCol + 1 ) +
164 charcodeCol - enc->firstCol];
165 if ( result != 0xFFFFU )
166 break;
167 }
168
169 *acharcode = charcode;
170
171 return result;
172 }
GLuint64EXT * result
Definition: glext.h:11304
if(dx< 0)
Definition: linetemp.h:194

◆ pcf_cmap_done()

pcf_cmap_done ( FT_CMap  pcfcmap)

Definition at line 94 of file pcfdrivr.c.

95 {
96 PCF_CMap cmap = (PCF_CMap)pcfcmap;
97
98
99 cmap->enc = NULL;
100 }
#define NULL
Definition: types.h:112

◆ pcf_cmap_init()

pcf_cmap_init ( FT_CMap  pcfcmap,
FT_Pointer  init_data 
)

Definition at line 78 of file pcfdrivr.c.

80 {
81 PCF_CMap cmap = (PCF_CMap)pcfcmap;
82 PCF_Face face = (PCF_Face)FT_CMAP_FACE( pcfcmap );
83
84 FT_UNUSED( init_data );
85
86
87 cmap->enc = &face->enc;
88
89 return FT_Err_Ok;
90 }
return FT_Err_Ok
Definition: ftbbox.c:526
#define FT_CMAP_FACE(x)
Definition: ftobjs.h:163
GLenum GLuint GLint GLenum face
Definition: glext.h:7025
struct PCF_FaceRec_ * PCF_Face
#define FT_UNUSED(arg)

◆ pcf_driver_done()

pcf_driver_done ( FT_Module  module)

Definition at line 801 of file pcfdrivr.c.

802 {
803 FT_UNUSED( module );
804 }

◆ pcf_driver_init()

pcf_driver_init ( FT_Module  module)

Definition at line 785 of file pcfdrivr.c.

786 {
787#ifdef PCF_CONFIG_OPTION_LONG_FAMILY_NAMES
789
790
791 driver->no_long_family_names = 0;
792#else
793 FT_UNUSED( module );
794#endif
795
796 return FT_Err_Ok;
797 }
struct @1789::@1790 driver
struct PCF_DriverRec_ * PCF_Driver

◆ pcf_driver_requester()

pcf_driver_requester ( FT_Module  module,
const char name 
)

Definition at line 775 of file pcfdrivr.c.

777 {
778 FT_UNUSED( module );
779
780 return ft_service_list_lookup( pcf_services, name );
781 }
ft_service_list_lookup(FT_ServiceDesc service_descriptors, const char *service_id)
Definition: ftobjs.c:109
Definition: name.c:39

◆ PCF_Face_Done()

PCF_Face_Done ( FT_Face  pcfface)

Definition at line 189 of file pcfdrivr.c.

190 {
191 PCF_Face face = (PCF_Face)pcfface;
193
194
195 if ( !face )
196 return;
197
199
200 FT_FREE( face->metrics );
201 FT_FREE( face->enc.offset );
202
203 /* free properties */
204 if ( face->properties )
205 {
206 FT_Int i;
207
208
209 for ( i = 0; i < face->nprops; i++ )
210 {
211 PCF_Property prop = &face->properties[i];
212
213
214 if ( prop )
215 {
216 FT_FREE( prop->name );
217 if ( prop->isString )
218 FT_FREE( prop->value.atom );
219 }
220 }
221
222 FT_FREE( face->properties );
223 }
224
225 FT_FREE( face->toc.tables );
226 FT_FREE( pcfface->family_name );
227 FT_FREE( pcfface->style_name );
228 FT_FREE( pcfface->available_sizes );
229 FT_FREE( face->charset_encoding );
230 FT_FREE( face->charset_registry );
231
232 /* close compressed stream if any */
233 if ( pcfface->stream == &face->comp_stream )
234 {
235 FT_Stream_Close( &face->comp_stream );
236 pcfface->stream = face->comp_source;
237 }
238 }
#define FT_FREE(ptr)
Definition: ftmemory.h:337
#define FT_FACE_MEMORY(x)
Definition: ftobjs.h:603
FT_Stream_Close(FT_Stream stream)
Definition: ftstream.c:48
typedefFT_BEGIN_HEADER struct FT_MemoryRec_ * FT_Memory
Definition: ftsystem.h:64
signed int FT_Int
Definition: fttypes.h:220
GLsizei GLenum const GLvoid GLsizei GLenum GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLint GLint GLint GLshort GLshort GLshort GLubyte GLubyte GLubyte GLuint GLuint GLuint GLushort GLushort GLushort GLbyte GLbyte GLbyte GLbyte GLdouble GLdouble GLdouble GLdouble GLfloat GLfloat GLfloat GLfloat GLint GLint GLint GLint GLshort GLshort GLshort GLshort GLubyte GLubyte GLubyte GLubyte GLuint GLuint GLuint GLuint GLushort GLushort GLushort GLushort GLboolean const GLdouble const GLfloat const GLint const GLshort const GLbyte const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLdouble const GLfloat const GLfloat const GLint const GLint const GLshort const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort const GLdouble const GLfloat const GLint const GLshort GLenum GLenum GLenum GLfloat GLenum GLint GLenum GLenum GLenum GLfloat GLenum GLenum GLint GLenum GLfloat GLenum GLint GLint GLushort GLenum GLenum GLfloat GLenum GLenum GLint GLfloat const GLubyte GLenum GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLint GLint GLsizei GLsizei GLint GLenum GLenum const GLvoid GLenum GLenum const GLfloat GLenum GLenum const GLint GLenum GLenum const GLdouble GLenum GLenum const GLfloat GLenum GLenum const GLint GLsizei GLuint GLfloat GLuint GLbitfield GLfloat GLint GLuint GLboolean GLenum GLfloat GLenum GLbitfield GLenum GLfloat GLfloat GLint GLint const GLfloat GLenum GLfloat GLfloat GLint GLint GLfloat GLfloat GLint GLint const GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat GLint GLfloat GLfloat const GLdouble const GLfloat const GLdouble const GLfloat GLint i
Definition: glfuncs.h:248
static char memory[1024 *256]
Definition: process.c:122
FT_Bitmap_Size * available_sizes
Definition: freetype.h:1042
FT_Stream stream
Definition: freetype.h:1073
FT_String * style_name
Definition: freetype.h:1039
FT_String * family_name
Definition: freetype.h:1038
union PCF_PropertyRec_::@4579 value
FT_String * atom
Definition: pcf.h:73
FT_String * name
Definition: pcf.h:68
FT_Byte isString
Definition: pcf.h:69

Referenced by PCF_Face_Init().

◆ PCF_Face_Init()

PCF_Face_Init ( FT_Stream  stream,
FT_Face  pcfface,
FT_Int  face_index,
FT_Int  num_params,
FT_Parameter params 
)

Definition at line 242 of file pcfdrivr.c.

247 {
248 PCF_Face face = (PCF_Face)pcfface;
250
251 FT_UNUSED( num_params );
252 FT_UNUSED( params );
253
254
255 FT_TRACE2(( "PCF driver\n" ));
256
257 error = pcf_load_font( stream, face, face_index );
258 if ( error )
259 {
260 PCF_Face_Done( pcfface );
261
262#if defined( FT_CONFIG_OPTION_USE_ZLIB ) || \
263 defined( FT_CONFIG_OPTION_USE_LZW ) || \
264 defined( FT_CONFIG_OPTION_USE_BZIP2 )
265
266#ifdef FT_CONFIG_OPTION_USE_ZLIB
267 {
269
270
271 /* this didn't work, try gzip support! */
272 FT_TRACE2(( " ... try gzip stream\n" ));
273 error2 = FT_Stream_OpenGzip( &face->comp_stream, stream );
274 if ( FT_ERR_EQ( error2, Unimplemented_Feature ) )
275 goto Fail;
276
277 error = error2;
278 }
279#endif /* FT_CONFIG_OPTION_USE_ZLIB */
280
281#ifdef FT_CONFIG_OPTION_USE_LZW
282 if ( error )
283 {
285
286
287 /* this didn't work, try LZW support! */
288 FT_TRACE2(( " ... try LZW stream\n" ));
289 error3 = FT_Stream_OpenLZW( &face->comp_stream, stream );
290 if ( FT_ERR_EQ( error3, Unimplemented_Feature ) )
291 goto Fail;
292
293 error = error3;
294 }
295#endif /* FT_CONFIG_OPTION_USE_LZW */
296
297#ifdef FT_CONFIG_OPTION_USE_BZIP2
298 if ( error )
299 {
301
302
303 /* this didn't work, try Bzip2 support! */
304 FT_TRACE2(( " ... try Bzip2 stream\n" ));
305 error4 = FT_Stream_OpenBzip2( &face->comp_stream, stream );
306 if ( FT_ERR_EQ( error4, Unimplemented_Feature ) )
307 goto Fail;
308
309 error = error4;
310 }
311#endif /* FT_CONFIG_OPTION_USE_BZIP2 */
312
313 if ( error )
314 goto Fail;
315
316 face->comp_source = stream;
317 pcfface->stream = &face->comp_stream;
318
319 stream = pcfface->stream;
320
321 error = pcf_load_font( stream, face, face_index );
322 if ( error )
323 goto Fail;
324
325#else /* !(FT_CONFIG_OPTION_USE_ZLIB ||
326 FT_CONFIG_OPTION_USE_LZW ||
327 FT_CONFIG_OPTION_USE_BZIP2) */
328
329 goto Fail;
330
331#endif
332 }
333
334 /* PCF cannot have multiple faces in a single font file.
335 * XXX: A non-zero face_index is already an invalid argument, but
336 * Type1, Type42 drivers have a convention to return
337 * an invalid argument error when the font could be
338 * opened by the specified driver.
339 */
340 if ( face_index < 0 )
341 goto Exit;
342 else if ( face_index > 0 && ( face_index & 0xFFFF ) > 0 )
343 {
344 FT_ERROR(( "PCF_Face_Init: invalid face index\n" ));
345 PCF_Face_Done( pcfface );
346 return FT_THROW( Invalid_Argument );
347 }
348
349 /* set up charmap */
350 {
351 FT_String *charset_registry = face->charset_registry;
352 FT_String *charset_encoding = face->charset_encoding;
353 FT_Bool unicode_charmap = 0;
354
355
356 if ( charset_registry && charset_encoding )
357 {
358 char* s = charset_registry;
359
360
361 /* Uh, oh, compare first letters manually to avoid dependency
362 on locales. */
363 if ( ( s[0] == 'i' || s[0] == 'I' ) &&
364 ( s[1] == 's' || s[1] == 'S' ) &&
365 ( s[2] == 'o' || s[2] == 'O' ) )
366 {
367 s += 3;
368 if ( !ft_strcmp( s, "10646" ) ||
369 ( !ft_strcmp( s, "8859" ) &&
370 !ft_strcmp( face->charset_encoding, "1" ) ) )
371 unicode_charmap = 1;
372 /* another name for ASCII */
373 else if ( !ft_strcmp( s, "646.1991" ) &&
374 !ft_strcmp( face->charset_encoding, "IRV" ) )
375 unicode_charmap = 1;
376 }
377 }
378
379 {
380 FT_CharMapRec charmap;
381
382
383 charmap.face = FT_FACE( face );
384 charmap.encoding = FT_ENCODING_NONE;
385 /* initial platform/encoding should indicate unset status? */
388
389 if ( unicode_charmap )
390 {
391 charmap.encoding = FT_ENCODING_UNICODE;
394 }
395
396 error = FT_CMap_New( &pcf_cmap_class, NULL, &charmap, NULL );
397 }
398 }
399
400 Exit:
401 return error;
402
403 Fail:
404 FT_TRACE2(( " not a PCF file\n" ));
405 PCF_Face_Done( pcfface );
406 error = FT_THROW( Unknown_File_Format ); /* error */
407 goto Exit;
408 }
#define TT_MS_ID_UNICODE_CS
Definition: font.c:1181
#define TT_PLATFORM_MICROSOFT
Definition: font.c:1174
#define TT_APPLE_ID_DEFAULT
Definition: font.c:1176
#define TT_PLATFORM_APPLE_UNICODE
Definition: font.c:1172
int Fail
Definition: ehthrow.cxx:24
FT_BEGIN_HEADER FT_Stream_OpenBzip2(FT_Stream stream, FT_Stream source)
Definition: ftbzip2.c:508
#define FT_ERROR(varformat)
Definition: ftdebug.h:211
#define FT_THROW(e)
Definition: ftdebug.h:243
#define FT_TRACE2(varformat)
Definition: ftdebug.h:189
FT_BEGIN_HEADER FT_Stream_OpenGzip(FT_Stream stream, FT_Stream source)
Definition: ftgzip.c:792
FT_BEGIN_HEADER FT_Stream_OpenLZW(FT_Stream stream, FT_Stream source)
Definition: ftlzw.c:402
#define FT_FACE(x)
Definition: ftobjs.h:597
FT_CMap_New(FT_CMap_Class clazz, FT_Pointer init_data, FT_CharMap charmap, FT_CMap *acmap)
Definition: ftobjs.c:3677
#define ft_strcmp
Definition: ftstdlib.h:86
FT_BEGIN_HEADER typedef unsigned char FT_Bool
Definition: fttypes.h:108
#define FT_ERR_EQ(x, e)
Definition: fttypes.h:604
int FT_Error
Definition: fttypes.h:299
char FT_String
Definition: fttypes.h:187
GLdouble s
Definition: gl.h:2039
GLenum const GLfloat * params
Definition: glext.h:5645
#define error(str)
Definition: mkdosfs.c:1605
pcf_load_font(FT_Stream stream, PCF_Face face, FT_Long face_index)
Definition: pcfread.c:1415
PCF_Face_Done(FT_Face pcfface)
Definition: pcfdrivr.c:189
static const FT_CMap_ClassRec pcf_cmap_class
Definition: pcfdrivr.c:176
#define error2(s, a, b)
Definition: debug.h:126
#define error3(s, a, b, c)
Definition: debug.h:127
#define error4(s, a, b, c, d)
Definition: debug.h:128
static void Exit(void)
Definition: sock.c:1330
FT_Face face
Definition: freetype.h:819
FT_Encoding encoding
Definition: freetype.h:820
FT_UShort platform_id
Definition: freetype.h:821
FT_UShort encoding_id
Definition: freetype.h:822
Definition: parse.h:23

◆ pcf_get_bdf_property()

static FT_Error pcf_get_bdf_property ( PCF_Face  face,
const char prop_name,
BDF_PropertyRec aproperty 
)
static

Definition at line 589 of file pcfdrivr.c.

592 {
593 PCF_Property prop;
594
595
596 prop = pcf_find_property( face, prop_name );
597 if ( prop )
598 {
599 if ( prop->isString )
600 {
601 aproperty->type = BDF_PROPERTY_TYPE_ATOM;
602 aproperty->u.atom = prop->value.atom;
603 }
604 else
605 {
606 if ( prop->value.l > 0x7FFFFFFFL ||
607 prop->value.l < ( -1 - 0x7FFFFFFFL ) )
608 {
609 FT_TRACE1(( "pcf_get_bdf_property:"
610 " too large integer 0x%lx is truncated\n",
611 prop->value.l ));
612 }
613
614 /*
615 * The PCF driver loads all properties as signed integers.
616 * This really doesn't seem to be a problem, because this is
617 * sufficient for any meaningful values.
618 */
619 aproperty->type = BDF_PROPERTY_TYPE_INTEGER;
620 aproperty->u.integer = (FT_Int32)prop->value.l;
621 }
622
623 return FT_Err_Ok;
624 }
625
626 return FT_THROW( Invalid_Argument );
627 }
@ BDF_PROPERTY_TYPE_ATOM
Definition: ftbdf.h:76
@ BDF_PROPERTY_TYPE_INTEGER
Definition: ftbdf.h:77
#define FT_TRACE1(varformat)
Definition: ftdebug.h:188
pcf_find_property(PCF_Face face, const FT_String *prop)
Definition: pcfread.c:457
FT_Int32 integer
Definition: ftbdf.h:122
BDF_PropertyType type
Definition: ftbdf.h:119
const char * atom
Definition: ftbdf.h:121
union BDF_PropertyRec_::@4563 u
FT_Long l
Definition: pcf.h:74

◆ pcf_get_charset_id()

static FT_Error pcf_get_charset_id ( PCF_Face  face,
const char **  acharset_encoding,
const char **  acharset_registry 
)
static

Definition at line 631 of file pcfdrivr.c.

634 {
635 *acharset_encoding = face->charset_encoding;
636 *acharset_registry = face->charset_registry;
637
638 return FT_Err_Ok;
639 }

◆ PCF_Glyph_Load()

PCF_Glyph_Load ( FT_GlyphSlot  slot,
FT_Size  size,
FT_UInt  glyph_index,
FT_Int32  load_flags 
)

Definition at line 467 of file pcfdrivr.c.

471 {
475 FT_Bitmap* bitmap = &slot->bitmap;
476 PCF_Metric metric;
478
479
480 FT_TRACE1(( "PCF_Glyph_Load: glyph index %d\n", glyph_index ));
481
482 if ( !face )
483 {
484 error = FT_THROW( Invalid_Face_Handle );
485 goto Exit;
486 }
487
488 if ( glyph_index >= (FT_UInt)face->root.num_glyphs )
489 {
490 error = FT_THROW( Invalid_Argument );
491 goto Exit;
492 }
493
494 stream = face->root.stream;
495
496 metric = face->metrics + glyph_index;
497
498 bitmap->rows = (unsigned int)( metric->ascent +
499 metric->descent );
500 bitmap->width = (unsigned int)( metric->rightSideBearing -
501 metric->leftSideBearing );
502 bitmap->num_grays = 1;
503 bitmap->pixel_mode = FT_PIXEL_MODE_MONO;
504
505 switch ( PCF_GLYPH_PAD( face->bitmapsFormat ) )
506 {
507 case 1:
508 bitmap->pitch = (int)( ( bitmap->width + 7 ) >> 3 );
509 break;
510
511 case 2:
512 bitmap->pitch = (int)( ( ( bitmap->width + 15 ) >> 4 ) << 1 );
513 break;
514
515 case 4:
516 bitmap->pitch = (int)( ( ( bitmap->width + 31 ) >> 5 ) << 2 );
517 break;
518
519 case 8:
520 bitmap->pitch = (int)( ( ( bitmap->width + 63 ) >> 6 ) << 3 );
521 break;
522
523 default:
524 return FT_THROW( Invalid_File_Format );
525 }
526
527 slot->format = FT_GLYPH_FORMAT_BITMAP;
528 slot->bitmap_left = metric->leftSideBearing;
529 slot->bitmap_top = metric->ascent;
530
531 slot->metrics.horiAdvance = (FT_Pos)( metric->characterWidth * 64 );
532 slot->metrics.horiBearingX = (FT_Pos)( metric->leftSideBearing * 64 );
533 slot->metrics.horiBearingY = (FT_Pos)( metric->ascent * 64 );
534 slot->metrics.width = (FT_Pos)( ( metric->rightSideBearing -
535 metric->leftSideBearing ) * 64 );
536 slot->metrics.height = (FT_Pos)( bitmap->rows * 64 );
537
539 ( face->accel.fontAscent +
540 face->accel.fontDescent ) * 64 );
541
542 if ( load_flags & FT_LOAD_BITMAP_METRICS_ONLY )
543 goto Exit;
544
545 /* XXX: to do: are there cases that need repadding the bitmap? */
546 bytes = (FT_ULong)bitmap->pitch * bitmap->rows;
547
549 if ( error )
550 goto Exit;
551
552 if ( FT_STREAM_SEEK( metric->bits ) ||
553 FT_STREAM_READ( bitmap->buffer, bytes ) )
554 goto Exit;
555
556 if ( PCF_BIT_ORDER( face->bitmapsFormat ) != MSBFirst )
557 BitOrderInvert( bitmap->buffer, bytes );
558
559 if ( ( PCF_BYTE_ORDER( face->bitmapsFormat ) !=
560 PCF_BIT_ORDER( face->bitmapsFormat ) ) )
561 {
562 switch ( PCF_SCAN_UNIT( face->bitmapsFormat ) )
563 {
564 case 1:
565 break;
566
567 case 2:
568 TwoByteSwap( bitmap->buffer, bytes );
569 break;
570
571 case 4:
572 FourByteSwap( bitmap->buffer, bytes );
573 break;
574 }
575 }
576
577 Exit:
578 return error;
579 }
static unsigned char bytes[4]
Definition: adnsresfilter.c:74
unsigned int(__cdecl typeof(jpeg_read_scanlines))(struct jpeg_decompress_struct *
Definition: typeof.h:31
#define FT_LOAD_BITMAP_METRICS_ONLY
Definition: freetype.h:3039
@ FT_PIXEL_MODE_MONO
Definition: ftimage.h:183
FT_BEGIN_HEADER typedef signed long FT_Pos
Definition: ftimage.h:57
ft_synthesize_vertical_metrics(FT_Glyph_Metrics *metrics, FT_Pos advance)
Definition: ftobjs.c:2997
#define FT_SIZE_FACE(x)
Definition: ftobjs.h:606
ft_glyphslot_alloc_bitmap(FT_GlyphSlot slot, FT_ULong size)
Definition: ftobjs.c:514
#define FT_STREAM_SEEK(position)
Definition: ftstream.h:525
#define FT_STREAM_READ(buffer, count)
Definition: ftstream.h:533
unsigned long FT_ULong
Definition: fttypes.h:253
GLsizeiptr size
Definition: glext.h:5919
#define PCF_BYTE_ORDER(f)
Definition: pcf.h:202
#define PCF_SCAN_UNIT(f)
Definition: pcf.h:212
#define MSBFirst
Definition: pcf.h:182
#define PCF_BIT_ORDER(f)
Definition: pcf.h:204
#define PCF_GLYPH_PAD(f)
Definition: pcf.h:208
BitOrderInvert(unsigned char *buf, size_t nbytes)
Definition: pcfutil.c:43
TwoByteSwap(unsigned char *buf, size_t nbytes)
Definition: pcfutil.c:65
FourByteSwap(unsigned char *buf, size_t nbytes)
Definition: pcfutil.c:84
FT_Short characterWidth
Definition: pcf.h:97
FT_Short leftSideBearing
Definition: pcf.h:95
FT_Short ascent
Definition: pcf.h:98
FT_Short rightSideBearing
Definition: pcf.h:96
FT_Short descent
Definition: pcf.h:99
FT_ULong bits
Definition: pcf.h:102
Definition: vfat.h:185
Definition: uimain.c:89
uint32 width
Definition: uimain.c:91

◆ pcf_property_get()

static FT_Error pcf_property_get ( FT_Module  module,
const char property_name,
const void value 
)
static

Definition at line 715 of file pcfdrivr.c.

718 {
719#ifdef PCF_CONFIG_OPTION_LONG_FAMILY_NAMES
720
723
724
725 if ( !ft_strcmp( property_name, "no-long-family-names" ) )
726 {
727 FT_Bool no_long_family_names = driver->no_long_family_names;
729
730
731 *val = no_long_family_names;
732
733 return error;
734 }
735
736#else /* !PCF_CONFIG_OPTION_LONG_FAMILY_NAMES */
737
738 FT_UNUSED( module );
739 FT_UNUSED( value );
740#ifndef FT_DEBUG_LEVEL_TRACE
741 FT_UNUSED( property_name );
742#endif
743
744#endif /* !PCF_CONFIG_OPTION_LONG_FAMILY_NAMES */
745
746 FT_TRACE0(( "pcf_property_get: missing property `%s'\n",
747 property_name ));
748 return FT_THROW( Missing_Property );
749 }
#define FT_TRACE0(varformat)
Definition: ftdebug.h:187
GLuint GLfloat * val
Definition: glext.h:7180
Definition: pdh_main.c:96

◆ pcf_property_set()

static FT_Error pcf_property_set ( FT_Module  module,
const char property_name,
const void value,
FT_Bool  value_is_string 
)
static

Definition at line 654 of file pcfdrivr.c.

658 {
659#ifdef PCF_CONFIG_OPTION_LONG_FAMILY_NAMES
660
663
664#ifndef FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES
665 FT_UNUSED( value_is_string );
666#endif
667
668
669 if ( !ft_strcmp( property_name, "no-long-family-names" ) )
670 {
671#ifdef FT_CONFIG_OPTION_ENVIRONMENT_PROPERTIES
672 if ( value_is_string )
673 {
674 const char* s = (const char*)value;
675 long lfn = ft_strtol( s, NULL, 10 );
676
677
678 if ( lfn == 0 )
679 driver->no_long_family_names = 0;
680 else if ( lfn == 1 )
681 driver->no_long_family_names = 1;
682 else
683 return FT_THROW( Invalid_Argument );
684 }
685 else
686#endif
687 {
688 FT_Bool* no_long_family_names = (FT_Bool*)value;
689
690
691 driver->no_long_family_names = *no_long_family_names;
692 }
693
694 return error;
695 }
696
697#else /* !PCF_CONFIG_OPTION_LONG_FAMILY_NAMES */
698
699 FT_UNUSED( module );
700 FT_UNUSED( value );
701 FT_UNUSED( value_is_string );
702#ifndef FT_DEBUG_LEVEL_TRACE
703 FT_UNUSED( property_name );
704#endif
705
706#endif /* !PCF_CONFIG_OPTION_LONG_FAMILY_NAMES */
707
708 FT_TRACE0(( "pcf_property_set: missing property `%s'\n",
709 property_name ));
710 return FT_THROW( Missing_Property );
711 }
#define ft_strtol
Definition: ftstdlib.h:145

◆ PCF_Size_Request()

PCF_Size_Request ( FT_Size  size,
FT_Size_Request  req 
)

Definition at line 429 of file pcfdrivr.c.

431 {
432 PCF_Face face = (PCF_Face)size->face;
433 FT_Bitmap_Size* bsize = size->face->available_sizes;
434 FT_Error error = FT_ERR( Invalid_Pixel_Size );
436
437
438 height = FT_REQUEST_HEIGHT( req );
439 height = ( height + 32 ) >> 6;
440
441 switch ( req->type )
442 {
444 if ( height == ( ( bsize->y_ppem + 32 ) >> 6 ) )
446 break;
447
449 if ( height == ( face->accel.fontAscent +
450 face->accel.fontDescent ) )
452 break;
453
454 default:
455 error = FT_THROW( Unimplemented_Feature );
456 break;
457 }
458
459 if ( error )
460 return error;
461 else
462 return PCF_Size_Select( size, 0 );
463 }
@ FT_SIZE_REQUEST_TYPE_NOMINAL
Definition: freetype.h:2552
@ FT_SIZE_REQUEST_TYPE_REAL_DIM
Definition: freetype.h:2553
#define FT_REQUEST_HEIGHT(req)
Definition: ftobjs.h:663
signed long FT_Long
Definition: fttypes.h:242
#define FT_ERR(e)
Definition: fttypes.h:599
GLint GLint GLsizei GLsizei height
Definition: gl.h:1546
PCF_Size_Select(FT_Size size, FT_ULong strike_index)
Definition: pcfdrivr.c:412
FT_Size_Request_Type type
Definition: freetype.h:2604

◆ PCF_Size_Select()

PCF_Size_Select ( FT_Size  size,
FT_ULong  strike_index 
)

Definition at line 412 of file pcfdrivr.c.

414 {
415 PCF_Accel accel = &( (PCF_Face)size->face )->accel;
416
417
418 FT_Select_Metrics( size->face, strike_index );
419
420 size->metrics.ascender = accel->fontAscent * 64;
421 size->metrics.descender = -accel->fontDescent * 64;
422 size->metrics.max_advance = accel->maxbounds.characterWidth * 64;
423
424 return FT_Err_Ok;
425 }
FT_Select_Metrics(FT_Face face, FT_ULong strike_index)
Definition: ftobjs.c:3057
FT_Long fontDescent
Definition: pcf.h:130
FT_Long fontAscent
Definition: pcf.h:129
PCF_MetricRec maxbounds
Definition: pcf.h:133

Referenced by PCF_Size_Request().

Variable Documentation

◆ pcf_cmap_class

const FT_CMap_ClassRec pcf_cmap_class
static
Initial value:
=
{
sizeof ( PCF_CMapRec ),
}
pcf_cmap_char_next(FT_CMap pcfcmap, FT_UInt32 *acharcode)
Definition: pcfdrivr.c:131
pcf_cmap_char_index(FT_CMap pcfcmap, FT_UInt32 charcode)
Definition: pcfdrivr.c:104
pcf_cmap_done(FT_CMap pcfcmap)
Definition: pcfdrivr.c:94
pcf_cmap_init(FT_CMap pcfcmap, FT_Pointer init_data)
Definition: pcfdrivr.c:78
struct PCF_CMapRec_ PCF_CMapRec

Definition at line 176 of file pcfdrivr.c.

Referenced by PCF_Face_Init().

◆ pcf_driver_class

Definition at line 808 of file pcfdrivr.c.

◆ pcf_service_bdf

const FT_Service_BDFRec pcf_service_bdf
static
Initial value:
=
{
}
static FT_Error pcf_get_bdf_property(PCF_Face face, const char *prop_name, BDF_PropertyRec *aproperty)
Definition: pcfdrivr.c:589
static FT_Error pcf_get_charset_id(PCF_Face face, const char **acharset_encoding, const char **acharset_registry)
Definition: pcfdrivr.c:631
FT_Error(* FT_BDF_GetPropertyFunc)(FT_Face face, const char *prop_name, BDF_PropertyRec *aproperty)
Definition: svbdf.h:37
FT_Error(* FT_BDF_GetCharsetIdFunc)(FT_Face face, const char **acharset_encoding, const char **acharset_registry)
Definition: svbdf.h:32

Definition at line 642 of file pcfdrivr.c.

Referenced by FT_DEFINE_SERVICE_PROPERTIESREC().