1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607
|
# Originally taken from the pyopenvg SVN, which is available at:
# http://code.google.com/p/pyopenvg/source/browse/trunk/
# and is licensed under the new BSD license.
cdef extern from "stdlib.h":
ctypedef long size_t
cdef extern from "pyfreetype.h":
#ftconfig.h
#Some tweaking may be needed on a platform-by-platform basis
DEF FT_SIZEOF_INT = 4
DEF FT_SIZEOF_LONG = 4
ctypedef signed short FT_Int16
ctypedef unsigned short FT_UInt16
IF FT_SIZEOF_INT == 4:
ctypedef signed int FT_Int32
ctypedef unsigned int FT_UInt32
ELIF FT_SIZEOF_LONG == 4:
ctypedef signed long FT_Int32
ctypedef unsigned long FT_UInt32
IF FT_SIZEOF_INT >= 4:
ctypedef int FT_Fast
ctypedef unsigned int FT_UFast
ELIF FT_SIZEOF_LONG >= 4:
ctypedef long FT_Fast
ctypedef unsigned long FT_UFast
# Moved up.
cdef struct FT_ModuleRec_
ctypedef FT_ModuleRec_ *FT_Module
cdef struct FT_ParameterRec_
ctypedef struct FT_Parameter
#fttypes.h
ctypedef unsigned char FT_Bool
ctypedef signed short FT_FWord
ctypedef unsigned short FT_UFWord
ctypedef signed char FT_Char
ctypedef unsigned char FT_Byte
ctypedef FT_Byte* FT_Bytes
ctypedef FT_UInt32 FT_Tag
ctypedef char FT_String
ctypedef signed short FT_Short
ctypedef unsigned short FT_UShort
ctypedef signed int FT_Int
ctypedef unsigned int FT_UInt
ctypedef signed long FT_Long
ctypedef unsigned long FT_ULong
ctypedef signed short FT_F2Dot14
ctypedef signed long FT_F26Dot6
ctypedef signed long FT_Fixed
ctypedef int FT_Error
ctypedef void* FT_Pointer
ctypedef size_t FT_Offset
#ctypedef ft_ptrdiff_t FT_PtrDist
ctypedef void (*FT_Generic_Finalizer)(void* object)
ctypedef struct FT_UnitVector:
FT_F2Dot14 x,y
ctypedef struct FT_Matrix:
FT_Fixed xx, xy, yx, yy
ctypedef struct FT_Data:
FT_Bytes pointer
FT_Int length
ctypedef struct FT_Generic:
void *data
FT_Generic_Finalizer finalizer
#ftimage.h
ctypedef signed long FT_Pos
ctypedef struct FT_Vector:
FT_Pos x,y
ctypedef struct FT_BBox:
FT_Pos xMin, yMin, xMax, yMax
ctypedef enum FT_Pixel_Mode:
FT_PIXEL_MODE_NONE = 0,
FT_PIXEL_MODE_MONO,
FT_PIXEL_MODE_GRAY,
FT_PIXEL_MODE_GRAY2,
FT_PIXEL_MODE_GRAY4,
FT_PIXEL_MODE_LCD,
FT_PIXEL_MODE_LCD_V,
FT_PIXEL_MODE_MAX
ctypedef struct FT_Bitmap:
int rows, width, pitch
unsigned char *buffer
short num_grays
char pixel_mode, palette_mode
void *palette
ctypedef struct FT_Outline:
short n_contours, n_points
FT_Vector *points
char *tags
short *contours
int flags
DEF FT_OUTLINE_NONE = 0
DEF FT_OUTLINE_OWNER = 1 << 0
DEF FT_OUTLINE_EVEN_ODD_FILL = 1 << 1
DEF FT_OUTLINE_REVERSE_FILL = 1 << 2
DEF FT_OUTLINE_IGNORE_DROPOUTS = 1 << 3
DEF FT_OUTLINE_HIGH_PRECISION = 1 << 8
DEF FT_OUTLINE_SINGLE_PASS = 1 << 9
ctypedef int (*FT_Outline_MoveToFunc)(FT_Vector *to, void *user)
ctypedef int (*FT_Outline_LineToFunc)(FT_Vector *to, void *user)
ctypedef int (*FT_Outline_ConicToFunc)(FT_Vector *control, FT_Vector *to, void *user)
ctypedef int (*FT_Outline_CubicToFunc)(FT_Vector *control1, FT_Vector *control2, FT_Vector *to, void *user)
ctypedef struct FT_Outline_Funcs:
FT_Outline_MoveToFunc move_to
FT_Outline_LineToFunc line_to
FT_Outline_ConicToFunc conic_to
FT_Outline_CubicToFunc cubic_to
int shift
FT_Pos delta
ctypedef enum FT_Glyph_Format:
FT_GLYPH_FORMAT_NONE = 0
FT_GLYPH_FORMAT_COMPOSITE = ((<unsigned long>c'c' << 24) |
(<unsigned long>c'o' << 16) |
(<unsigned long>c'm' << 8) |
(<unsigned long>c'p')),
FT_GLYPH_FORMAT_BITMAP = ((<unsigned long>c'b' << 24) |
(<unsigned long>c'i' << 16) |
(<unsigned long>c't' << 8) |
(<unsigned long>c's')),
FT_GLYPH_FORMAT_OUTLINE = ((<unsigned long>c'o' << 24) |
(<unsigned long>c'u' << 16) |
(<unsigned long>c't' << 8) |
(<unsigned long>c'l')),
FT_GLYPH_FORMAT_PLOTTER = ((<unsigned long>c'p' << 24) |
(<unsigned long>c'l' << 16) |
(<unsigned long>c'o' << 8) |
(<unsigned long>c't'))
#freetype.h
ctypedef struct FT_Glyph_Metrics:
FT_Pos width, height
FT_Pos horiBearingX, horiBearingY, horiAdvance
FT_Pos vertBearingX, vertBearingY, vertAdvance
ctypedef struct FT_Bitmap_Size:
FT_Short height, width
FT_Pos size
FT_Pos x_ppem, y_ppem
## cdef struct FT_LibraryRec_:
## pass
## cdef struct FT_ModuleRec_:
## pass
## cdef struct FT_DriverRec_:
## pass
## cdef struct FT_RendererRec_:
## pass
cdef struct FT_FaceRec_
cdef struct FT_SizeRec_
cdef struct FT_GlyphSlotRec_
cdef struct FT_CharMapRec_
## ctypedef FT_LibraryRec_* FT_Library
## ctypedef FT_ModuleRec_* FT_Module
## ctypedef FT_DriverRec_* FT_Driver
## ctypedef FT_RendererRec_* FT_Renderer
ctypedef void* FT_Library
ctypedef void* FT_Driver
ctypedef void* FT_Renderer
ctypedef FT_FaceRec_* FT_Face
ctypedef FT_SizeRec_* FT_Size
ctypedef FT_GlyphSlotRec_* FT_GlyphSlot
ctypedef FT_CharMapRec_* FT_CharMap
ctypedef enum FT_Encoding:
FT_ENCODING_NONE = 0
FT_ENCODING_MS_SYMBOL = ((<FT_UInt32>c's' << 24) |
(<FT_UInt32>c'y' << 16) |
(<FT_UInt32>c'm' << 8) |
(<FT_UInt32>c'b')),
FT_ENCODING_UNICODE = ((<FT_UInt32>c'u' << 24) |
(<FT_UInt32>c'n' << 16) |
(<FT_UInt32>c'i' << 8) |
(<FT_UInt32>c'c')),
FT_ENCODING_SJIS = ((<FT_UInt32>c's' << 24) |
(<FT_UInt32>c'j' << 16) |
(<FT_UInt32>c'i' << 8) |
(<FT_UInt32>c's')),
FT_ENCODING_GB2312 = ((<FT_UInt32>c'g' << 24) |
(<FT_UInt32>c'b' << 16) |
(<FT_UInt32>c' ' << 8) |
(<FT_UInt32>c' ')),
FT_ENCODING_BIG5 = ((<FT_UInt32>c'b' << 24) |
(<FT_UInt32>c'i' << 16) |
(<FT_UInt32>c'g' << 8) |
(<FT_UInt32>c'5')),
FT_ENCODING_WANSUNG = ((<FT_UInt32>c'w' << 24) |
(<FT_UInt32>c'a' << 16) |
(<FT_UInt32>c'n' << 8) |
(<FT_UInt32>c's')),
FT_ENCODING_JOHAB = ((<FT_UInt32>c'j' << 24) |
(<FT_UInt32>c'o' << 16) |
(<FT_UInt32>c'h' << 8) |
(<FT_UInt32>c'a')),
FT_ENCODING_ADOBE_STANDARD = ((<FT_UInt32>c'A' << 24) |
(<FT_UInt32>c'D' << 16) |
(<FT_UInt32>c'O' << 8) |
(<FT_UInt32>c'B')),
FT_ENCODING_ADOBE_EXPERT = ((<FT_UInt32>c'A' << 24) |
(<FT_UInt32>c'D' << 16) |
(<FT_UInt32>c'B' << 8) |
(<FT_UInt32>c'E')),
FT_ENCODING_ADOBE_CUSTOM = ((<FT_UInt32>c'A' << 24) |
(<FT_UInt32>c'D' << 16) |
(<FT_UInt32>c'B' << 8) |
(<FT_UInt32>c'C')),
FT_ENCODING_ADOBE_LATIN_1 = ((<FT_UInt32>c'l' << 24) |
(<FT_UInt32>c'a' << 16) |
(<FT_UInt32>c't' << 8) |
(<FT_UInt32>c'1')),
FT_ENCODING_OLD_LATIN_2 = ((<FT_UInt32>c'l' << 24) |
(<FT_UInt32>c'a' << 16) |
(<FT_UInt32>c't' << 8) |
(<FT_UInt32>c'2')),
FT_ENCODING_APPLE_ROMAN = ((<FT_UInt32>c'a' << 24) |
(<FT_UInt32>c'r' << 16) |
(<FT_UInt32>c'm' << 8) |
(<FT_UInt32>c'n'))
cdef struct FT_CharMapRec_:
FT_Face face
FT_Encoding encoding
FT_UShort platform_id
FT_UShort encoding_id
ctypedef FT_CharMapRec_ FT_CharMapRec
cdef struct FT_FaceRec_:
FT_Long num_faces
FT_Long face_index
FT_Long face_flags
FT_Long style_flags
FT_Long num_glyphs
FT_String* family_name
FT_String* style_name
FT_Int num_fixed_sizes
FT_Bitmap_Size* available_sizes
FT_Int num_charmaps
FT_CharMap* charmaps
FT_Generic generic
FT_BBox bbox
FT_UShort units_per_EM
FT_Short ascender
FT_Short descender
FT_Short height
FT_Short max_advance_width
FT_Short max_advance_height
FT_Short underline_position
FT_Short underline_thickness
FT_GlyphSlot glyph
FT_Size size
FT_CharMap charmap
ctypedef FT_FaceRec_ FT_FaceRec
DEF FT_FACE_FLAG_SCALABLE = 1L << 0
DEF FT_FACE_FLAG_FIXED_SIZES = 1L << 1
DEF FT_FACE_FLAG_FIXED_WIDTH = 1L << 2
DEF FT_FACE_FLAG_SFNT = 1L << 3
DEF FT_FACE_FLAG_HORIZONTAL = 1L << 4
DEF FT_FACE_FLAG_VERTICAL = 1L << 5
DEF FT_FACE_FLAG_KERNING = 1L << 6
DEF FT_FACE_FLAG_FAST_GLYPHS = 1L << 7
DEF FT_FACE_FLAG_MULTIPLE_MASTERS = 1L << 8
DEF FT_FACE_FLAG_GLYPH_NAMES = 1L << 9
DEF FT_FACE_FLAG_EXTERNAL_STREAM = 1L << 10
DEF FT_FACE_FLAG_HINTER = 1L << 11
DEF FT_STYLE_FLAG_ITALIC = 1 << 0
DEF FT_STYLE_FLAG_BOLD = 1 << 1
ctypedef struct FT_Size_Metrics:
FT_UShort x_ppem, y_ppem
FT_Fixed x_scale, y_scale
FT_Pos ascender, descender
FT_Pos height
FT_Pos max_advance
cdef struct FT_SizeRec_:
FT_Face face
FT_Generic generic
FT_Size_Metrics metrics
ctypedef FT_SizeRec_ FT_SizeRec
cdef struct FT_SubGlyphRec_:
pass
ctypedef FT_SubGlyphRec_* FT_SubGlyph
cdef struct FT_GlyphSlotRec_:
FT_Library library
FT_Face face
FT_GlyphSlot next
FT_UInt reserved
FT_Generic generic
FT_Glyph_Metrics metrics
FT_Fixed linearHoriAdvance, linearVertAdvance
FT_Vector advance
FT_Glyph_Format format
FT_Bitmap bitmap
FT_Int bitmap_left, bitmap_top
FT_Outline outline
FT_UInt num_subglyphs
FT_SubGlyph subglyphs
void* control_data
long control_len
FT_Pos lsb_delta, rsb_delta
ctypedef FT_GlyphSlotRec_ FT_GlyphSlotRec
FT_Error FT_Init_FreeType(FT_Library *lib)
FT_Error FT_Done_FreeType(FT_Library lib)
FT_Error FT_New_Face(FT_Library lib, char *path, FT_Long face_index, FT_Face *face)
FT_Error FT_Attach_File(FT_Face face, char *path)
FT_Error FT_Done_Face(FT_Face face)
ctypedef enum FT_Size_Request_Type:
FT_SIZE_REQUEST_TYPE_NOMINAL,
FT_SIZE_REQUEST_TYPE_REAL_DIM,
FT_SIZE_REQUEST_TYPE_BBOX,
FT_SIZE_REQUEST_TYPE_CELL,
FT_SIZE_REQUEST_TYPE_SCALES,
FT_SIZE_REQUEST_TYPE_MAX
ctypedef struct FT_Size_RequestRec:
FT_Size_Request_Type type
FT_Long width, height
FT_UInt horiResolution, vertResolution
ctypedef FT_Size_RequestRec* FT_Size_Request
FT_Error FT_Select_Size(FT_Face face, FT_Int strike_index)
FT_Error FT_Request_Size(FT_Face face, FT_Size_Request req)
FT_Error FT_Set_Char_Size(FT_Face, FT_F26Dot6 char_width, FT_F26Dot6 char_height, FT_UInt hres, FT_UInt vres)
FT_Error FT_Set_Pixel_Sizes(FT_Face face, FT_UInt pixel_width, FT_UInt pixel_height)
ctypedef enum FT_Load_Flags:
FT_LOAD_DEFAULT
FT_LOAD_NO_SCALE
FT_LOAD_NO_HINTING
FT_LOAD_RENDER
FT_LOAD_NO_BITMAP
FT_LOAD_VERTICAL_LAYOUT
FT_LOAD_FORCE_AUTOHINT
FT_LOAD_CROP_BITMAP
FT_LOAD_PEDANTIC
FT_LOAD_IGNORE_GLOBAL_ADVANCE_WIDTH
FT_LOAD_NO_RECURSE
FT_LOAD_IGNORE_TRANSFORM
FT_LOAD_MONOCHROME
FT_LOAD_LINEAR_DESIGN
FT_LOAD_SBITS_ONLY
FT_LOAD_NO_AUTOHINT
FT_Error FT_Load_Glyph(FT_Face face, FT_UInt glyph_index, FT_Int32 flags)
FT_Error FT_Load_Char(FT_Face face, FT_ULong char_code, FT_Int32 flags)
void FT_Set_Transform(FT_Face face, FT_Matrix *matrix, FT_Vector *delta)
ctypedef enum FT_Render_Mode:
FT_RENDER_MODE_NORMAL = 0,
FT_RENDER_MODE_LIGHT,
FT_RENDER_MODE_MONO,
FT_RENDER_MODE_LCD,
FT_RENDER_MODE_LCD_V,
FT_RENDER_MODE_MAX
FT_Error FT_Render_Glyph(FT_GlyphSlot slot, FT_Render_Mode mode)
ctypedef enum FT_Kerning_Mode:
FT_KERNING_DEFAULT = 0
FT_KERNING_UNFITTED,
FT_KERNING_UNSCALED
FT_Error FT_Get_Kerning(FT_Face face, FT_UInt left_glyph, FT_UInt right_glyph, FT_UInt mode, FT_Vector *kerning)
FT_Error FT_Get_Track_Kerning(FT_Face face, FT_Fixed point_size, FT_Int degree, FT_Fixed *kerning)
FT_Error FT_Get_Glyph_Name(FT_Face face, FT_UInt glyph_index, FT_Pointer buffer, FT_UInt buffer_max)
char* FT_Get_Postscript_Name(FT_Face face)
FT_Error FT_Select_Charmap(FT_Face face, FT_Encoding encoding)
FT_Error FT_Set_Charmap(FT_Face face, FT_CharMap charmap)
FT_Int FT_Get_Charmap_Index(FT_CharMap charmap)
FT_UInt FT_Get_Char_Index(FT_Face face, FT_ULong charcode)
FT_UInt FT_Face_GetCharVariantIndex(FT_Face face, FT_ULong charcode, FT_ULong variantSelector)
FT_ULong FT_Get_First_Char(FT_Face face, FT_UInt *glyph_index)
FT_ULong FT_Get_Next_Char(FT_Face face, FT_ULong charcode, FT_UInt *glyph_index)
FT_UInt FT_Get_Name_Index(FT_Face face, FT_String *glyph_name)
DEF FT_SUBGLYPH_FLAG_ARGS_ARE_WORDS = 1
DEF FT_SUBGLYPH_FLAG_ARGS_ARE_XY_VALUES = 2
DEF FT_SUBGLYPH_FLAG_ROUND_XY_TO_GRID = 4
DEF FT_SUBGLYPH_FLAG_SCALE = 8
DEF FT_SUBGLYPH_FLAG_XY_SCALE = 64
DEF FT_SUBGLYPH_FLAG_2X2 = 128
DEF FT_SUBGLYPH_FLAG_USE_MY_METRICS = 512
void FT_Library_Version(FT_Library, FT_Int *major, FT_Int *minor, FT_Int *patch)
FT_Bool FT_Face_CheckTrueTypePatents(FT_Face face)
FT_Bool FT_Face_SetUnpatentedHinting(FT_Face face, FT_Bool value)
#ftglyph.h
ctypedef struct FT_GlyphRec:
FT_Library library
FT_Glyph_Format format
FT_Vector advance
ctypedef FT_GlyphRec* FT_Glyph
ctypedef struct FT_BitmapGlyphRec:
FT_GlyphRec root
FT_Int left, top
FT_Bitmap bitmap
ctypedef FT_BitmapGlyphRec* FT_BitmapGlyph
ctypedef struct FT_OutlineGlyphRec:
FT_GlyphRec root
FT_Outline outline
ctypedef FT_OutlineGlyphRec* FT_OutlineGlyph
FT_Error FT_Get_Glyph(FT_GlyphSlot slot, FT_Glyph *glyph)
FT_Error FT_Glyph_Copy(FT_Glyph source, FT_Glyph *target)
FT_Error FT_Glyph_Transform(FT_Glyph glyph, FT_Matrix *matrix, FT_Vector *delta)
ctypedef enum FT_Glyph_BBox_Mode:
FT_GLYPH_BBOX_UNSCALED = 0,
FT_GLYPH_BBOX_SUBPIXELS = 0,
FT_GLYPH_BBOX_GRIDFIT = 1,
FT_GLYPH_BBOX_TRUNCATE = 2,
FT_GLYPH_BBOX_PIXELS = 3
void FT_Glyph_Get_CBox(FT_Glyph glyph, FT_UInt bbox_mode, FT_BBox *cbox)
FT_Error FT_Glyph_To_Bitmap(FT_Glyph *glyph, FT_Render_Mode mode, FT_Vector *origin, FT_Bool destroy)
void FT_Done_Glyph(FT_Glyph glyph)
void FT_Matrix_Multiply(FT_Matrix *a, FT_Matrix *b)
FT_Error FT_Matrix_Invert(FT_Matrix *matrix)
#ftoutln.h
FT_Error FT_Outline_Decompose(FT_Outline *outline, FT_Outline_Funcs *funcs, void *user)
FT_Error FT_Outline_New(FT_Library lib, FT_UInt n_points, FT_Int n_contours, FT_Outline *outline)
FT_Error FT_Outline_Done(FT_Library lib, FT_Outline *outline)
FT_Error FT_Outline_Copy(FT_Outline *source, FT_Outline *target)
FT_Error FT_Outline_Check(FT_Outline *outline)
void FT_Outline_Get_CBox(FT_Outline *outline, FT_BBox *cbox)
void FT_Outline_Translate(FT_Outline *outline, FT_Pos xOffset, FT_Pos yOffset)
void FT_Outline_Transform(FT_Outline *outline, FT_Matrix *matrix)
FT_Error FT_Outline_Embolden(FT_Outline *outline, FT_Pos strength)
void FT_Outline_Reverse(FT_Outline *outline)
FT_Error FT_Outline_Get_Bitmap(FT_Library lib, FT_Outline *outline, FT_Bitmap *bitmap)
#FT_Error FT_Outline_Render(FT_Library lib, FT_Outline *outline, FT_Raster_params *params)
ctypedef enum FT_Orientation:
FT_ORIENTATION_TRUETYPE = 0,
FT_ORIENTATION_POSTSCRIPT = 1,
FT_ORIENTATION_FILL_RIGHT = FT_ORIENTATION_TRUETYPE,
FT_ORIENTATION_FILL_LEFT = FT_ORIENTATION_POSTSCRIPT,
FT_ORIENTATION_NONE
FT_Orientation FT_Outline_Get_Orientation(FT_Outline *outline)
#ftbitmap.h
void FT_Bitmap_New(FT_Bitmap *bitmap)
FT_Error FT_Bitmap_Done(FT_Library lib, FT_Bitmap *bitmap)
FT_Error FT_Bitmap_Copy(FT_Library lib, FT_Bitmap *source, FT_Bitmap *target)
FT_Error FT_Bitmap_Embolden(FT_Library lib, FT_Bitmap *bitmap, FT_Pos xStrength, FT_Pos yStrength)
FT_Error FT_Bitmap_Convert(FT_Library lib, FT_Bitmap *source, FT_Bitmap *target, FT_Int alignment)
# Additions by Tom Rothame.
cdef struct FT_MemoryRec_
ctypedef FT_MemoryRec_ *FT_Memory
ctypedef void * (*FT_AllocFunc)(FT_Memory, long)
ctypedef void (*FT_FreeFunc)(FT_Memory, void *)
ctypedef void * (*FT_Realloc_Func)(FT_Memory, long, long, void*)
cdef struct FT_StreamRec_
ctypedef FT_StreamRec_* FT_Stream
cdef union FT_StreamDesc:
long value
void *pointer
ctypedef unsigned long (*FT_Stream_IoFunc)(
FT_Stream,
unsigned long,
unsigned char *,
unsigned long)
ctypedef void (*FT_Stream_CloseFunc)(
FT_Stream stream)
cdef struct FT_StreamRec_:
unsigned char *base
unsigned long size
unsigned long pos
FT_StreamDesc descriptor
FT_StreamDesc pathname
FT_Stream_IoFunc read
FT_Stream_CloseFunc close
FT_Memory memory
unsigned char *cursor
unsigned char *limit
ctypedef FT_StreamRec_ FT_StreamRec
ctypedef struct FT_Open_Args:
FT_UInt flags
FT_Byte *memory_base
FT_Long memory_size
FT_String *pathname
FT_Stream stream
FT_Module driver
FT_Int num_params
FT_Parameter *params
cdef enum:
FT_OPEN_MEMORY
FT_OPEN_STREAM
FT_OPEN_PATHNAME
FT_OPEN_DRIVER
FT_OPEN_PARAMS
FT_Error FT_Open_Face(
FT_Library library,
FT_Open_Args *args,
FT_Long face_index,
FT_Face *aface)
cdef struct FT_Stroker_Rec_
ctypedef FT_Stroker_Rec_ *FT_Stroker
FT_Error FT_Stroker_New( FT_Library library,
FT_Stroker *astroker )
cdef enum FT_Stroker_LineCap:
FT_STROKER_LINECAP_ROUND
cdef enum FT_Stroker_LineJoin:
FT_STROKER_LINEJOIN_ROUND
void FT_Stroker_Set( FT_Stroker stroker,
FT_Fixed radius,
FT_Stroker_LineCap line_cap,
FT_Stroker_LineJoin line_join,
FT_Fixed miter_limit )
void FT_Glyph_StrokeBorder(FT_Glyph *, FT_Stroker, FT_Bool, FT_Bool)
void FT_Glyph_Stroke(FT_Glyph *, FT_Stroker, FT_Bool)
void FT_Stroker_Done(FT_Stroker)
cdef FT_Long FT_MulFix(FT_Long, FT_Long)
cdef FT_Long FT_CEIL(FT_Long)
cdef FT_Long FT_FLOOR(FT_Long)
cdef FT_Long FT_ROUND(FT_Long)
|