283 #define STB_TRUETYPE_IMPLEMENTATION // force following include to generate implementation 284 #include "stb_truetype.h" 286 unsigned char ttf_buffer[1<<20];
287 unsigned char temp_bitmap[512*512];
292 void my_stbtt_initfont(
void)
294 fread(ttf_buffer, 1, 1<<20, fopen(
"c:/windows/fonts/times.ttf",
"rb"));
295 stbtt_BakeFontBitmap(ttf_buffer,0, 32.0, temp_bitmap,512,512, 32,96, cdata);
297 glGenTextures(1, &ftex);
298 glBindTexture(GL_TEXTURE_2D, ftex);
299 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, 512,512, 0, GL_ALPHA, GL_UNSIGNED_BYTE, temp_bitmap);
301 glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
304 void my_stbtt_print(
float x,
float y,
char *text)
308 glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
309 glEnable(GL_TEXTURE_2D);
310 glBindTexture(GL_TEXTURE_2D, ftex);
313 if (*text >= 32 && *text < 128) {
315 stbtt_GetBakedQuad(cdata, 512,512, *text-32, &x,&y,&q,1);
316 glTexCoord2f(q.s0,q.t0); glVertex2f(q.x0,q.y0);
317 glTexCoord2f(q.s1,q.t0); glVertex2f(q.x1,q.y0);
318 glTexCoord2f(q.s1,q.t1); glVertex2f(q.x1,q.y1);
319 glTexCoord2f(q.s0,q.t1); glVertex2f(q.x0,q.y1);
334 #define STB_TRUETYPE_IMPLEMENTATION // force following include to generate implementation 335 #include "stb_truetype.h" 337 char ttf_buffer[1<<25];
339 int main(
int argc,
char **argv)
342 unsigned char *bitmap;
343 int w,h,i,j,c = (argc > 1 ? atoi(argv[1]) :
'a'), s = (argc > 2 ? atoi(argv[2]) : 20);
345 fread(ttf_buffer, 1, 1<<25, fopen(argc > 3 ? argv[3] :
"c:/windows/fonts/arialbd.ttf",
"rb"));
347 stbtt_InitFont(&font, ttf_buffer, stbtt_GetFontOffsetForIndex(ttf_buffer,0));
348 bitmap = stbtt_GetCodepointBitmap(&font, 0,stbtt_ScaleForPixelHeight(&font, s), c, &w, &h, 0,0);
350 for (j=0; j < h; ++j) {
351 for (i=0; i < w; ++i)
352 putchar(
" .:ioVM@"[bitmap[j*w+i]>>5]);
378 unsigned char screen[20][79];
380 int main(
int arg,
char **argv)
383 int i,j,ascent,baseline,ch=0;
385 char *text =
"Heljo World!";
387 fread(buffer, 1, 1000000, fopen(
"c:/windows/fonts/arialbd.ttf",
"rb"));
388 stbtt_InitFont(&font, buffer, 0);
390 scale = stbtt_ScaleForPixelHeight(&font, 15);
391 stbtt_GetFontVMetrics(&font, &ascent,0,0);
392 baseline = (int) (ascent*scale);
395 int advance,lsb,x0,y0,x1,y1;
396 float x_shift = xpos - (float) floor(xpos);
397 stbtt_GetCodepointHMetrics(&font, text[ch], &advance, &lsb);
398 stbtt_GetCodepointBitmapBoxSubpixel(&font, text[ch], scale,scale,x_shift,0, &x0,&y0,&x1,&y1);
399 stbtt_MakeCodepointBitmapSubpixel(&font, &screen[baseline + y0][(
int) xpos + x0], x1-x0,y1-y0, 79, scale,scale,x_shift,0, text[ch]);
404 xpos += (advance *
scale);
406 xpos += scale*stbtt_GetCodepointKernAdvance(&font, text[ch],text[ch+1]);
410 for (j=0; j < 20; ++j) {
411 for (i=0; i < 78; ++i)
412 putchar(
" .:ioVM@"[screen[j][i]>>5]);
430 #ifdef STB_TRUETYPE_IMPLEMENTATION 433 typedef unsigned char stbtt_uint8;
434 typedef signed char stbtt_int8;
435 typedef unsigned short stbtt_uint16;
436 typedef signed short stbtt_int16;
437 typedef unsigned int stbtt_uint32;
438 typedef signed int stbtt_int32;
441 typedef char stbtt__check_size32[
sizeof(stbtt_int32)==4 ? 1 : -1];
442 typedef char stbtt__check_size16[
sizeof(stbtt_int16)==2 ? 1 : -1];
447 #define STBTT_ifloor(x) ((int) floor(x)) 448 #define STBTT_iceil(x) ((int) ceil(x)) 453 #define STBTT_sqrt(x) sqrt(x) 454 #define STBTT_pow(x,y) pow(x,y) 459 #define STBTT_fmod(x,y) fmod(x,y) 464 #define STBTT_cos(x) cos(x) 465 #define STBTT_acos(x) acos(x) 470 #define STBTT_fabs(x) fabs(x) 476 #define STBTT_malloc(x,u) ((void)(u),malloc(x)) 477 #define STBTT_free(x,u) ((void)(u),free(x)) 482 #define STBTT_assert(x) assert(x) 487 #define STBTT_strlen(x) strlen(x) 492 #define STBTT_memcpy memcpy 493 #define STBTT_memset memset 504 #ifndef __STB_INCLUDE_STB_TRUETYPE_H__ 505 #define __STB_INCLUDE_STB_TRUETYPE_H__ 508 #define STBTT_DEF static 510 #define STBTT_DEF extern 534 unsigned short x0,y0,x1,y1;
535 float xoff,yoff,xadvance;
538 STBTT_DEF
int stbtt_BakeFontBitmap(
const unsigned char *data,
int offset,
540 unsigned char *pixels,
int pw,
int ph,
541 int first_char,
int num_chars,
554 STBTT_DEF
void stbtt_GetBakedQuad(
const stbtt_bakedchar *chardata,
int pw,
int ph,
556 float *xpos,
float *ypos,
558 int opengl_fillrule);
569 STBTT_DEF
void stbtt_GetScaledFontVMetrics(
const unsigned char *fontdata,
int index,
float size,
float *ascent,
float *descent,
float *lineGap);
582 unsigned short x0,y0,x1,y1;
583 float xoff,yoff,xadvance;
589 #ifndef STB_RECT_PACK_VERSION 593 STBTT_DEF
int stbtt_PackBegin(stbtt_pack_context *spc,
unsigned char *pixels,
int width,
int height,
int stride_in_bytes,
int padding,
void *alloc_context);
604 STBTT_DEF
void stbtt_PackEnd (stbtt_pack_context *spc);
607 #define STBTT_POINT_SIZE(x) (-(x)) 609 STBTT_DEF
int stbtt_PackFontRange(stbtt_pack_context *spc,
const unsigned char *fontdata,
int font_index,
float font_size,
610 int first_unicode_char_in_range,
int num_chars_in_range,
stbtt_packedchar *chardata_for_range);
627 int first_unicode_codepoint_in_range;
628 int *array_of_unicode_codepoints;
631 unsigned char h_oversample, v_oversample;
634 STBTT_DEF
int stbtt_PackFontRanges(stbtt_pack_context *spc,
const unsigned char *fontdata,
int font_index,
stbtt_pack_range *ranges,
int num_ranges);
640 STBTT_DEF
void stbtt_PackSetOversampling(stbtt_pack_context *spc,
unsigned int h_oversample,
unsigned int v_oversample);
656 STBTT_DEF
void stbtt_PackSetSkipMissingCodepoints(stbtt_pack_context *spc,
int skip);
662 STBTT_DEF
void stbtt_GetPackedQuad(
const stbtt_packedchar *chardata,
int pw,
int ph,
664 float *xpos,
float *ypos,
666 int align_to_integer);
668 STBTT_DEF
int stbtt_PackFontRangesGatherRects(stbtt_pack_context *spc,
const stbtt_fontinfo *info,
stbtt_pack_range *ranges,
int num_ranges, stbrp_rect *rects);
669 STBTT_DEF
void stbtt_PackFontRangesPackRects(stbtt_pack_context *spc, stbrp_rect *rects,
int num_rects);
670 STBTT_DEF
int stbtt_PackFontRangesRenderIntoRects(stbtt_pack_context *spc,
const stbtt_fontinfo *info,
stbtt_pack_range *ranges,
int num_ranges, stbrp_rect *rects);
683 struct stbtt_pack_context {
684 void *user_allocator_context;
691 unsigned int h_oversample, v_oversample;
692 unsigned char *pixels;
702 STBTT_DEF
int stbtt_GetNumberOfFonts(
const unsigned char *data);
709 STBTT_DEF
int stbtt_GetFontOffsetForIndex(
const unsigned char *data,
int index);
718 struct stbtt_fontinfo
721 unsigned char * data;
726 int loca,head,glyf,hhea,hmtx,kern,gpos,svg;
728 int indexToLocFormat;
738 STBTT_DEF
int stbtt_InitFont(stbtt_fontinfo *info,
const unsigned char *data,
int offset);
750 STBTT_DEF
int stbtt_FindGlyphIndex(
const stbtt_fontinfo *info,
int unicode_codepoint);
763 STBTT_DEF
float stbtt_ScaleForPixelHeight(
const stbtt_fontinfo *info,
float pixels);
771 STBTT_DEF
float stbtt_ScaleForMappingEmToPixels(
const stbtt_fontinfo *info,
float pixels);
776 STBTT_DEF
void stbtt_GetFontVMetrics(
const stbtt_fontinfo *info,
int *ascent,
int *descent,
int *lineGap);
784 STBTT_DEF
int stbtt_GetFontVMetricsOS2(
const stbtt_fontinfo *info,
int *typoAscent,
int *typoDescent,
int *typoLineGap);
790 STBTT_DEF
void stbtt_GetFontBoundingBox(
const stbtt_fontinfo *info,
int *x0,
int *y0,
int *x1,
int *y1);
793 STBTT_DEF
void stbtt_GetCodepointHMetrics(
const stbtt_fontinfo *info,
int codepoint,
int *advanceWidth,
int *leftSideBearing);
798 STBTT_DEF
int stbtt_GetCodepointKernAdvance(
const stbtt_fontinfo *info,
int ch1,
int ch2);
801 STBTT_DEF
int stbtt_GetCodepointBox(
const stbtt_fontinfo *info,
int codepoint,
int *x0,
int *y0,
int *x1,
int *y1);
804 STBTT_DEF
void stbtt_GetGlyphHMetrics(
const stbtt_fontinfo *info,
int glyph_index,
int *advanceWidth,
int *leftSideBearing);
805 STBTT_DEF
int stbtt_GetGlyphKernAdvance(
const stbtt_fontinfo *info,
int glyph1,
int glyph2);
806 STBTT_DEF
int stbtt_GetGlyphBox(
const stbtt_fontinfo *info,
int glyph_index,
int *x0,
int *y0,
int *x1,
int *y1);
816 STBTT_DEF
int stbtt_GetKerningTableLength(
const stbtt_fontinfo *info);
817 STBTT_DEF
int stbtt_GetKerningTable(
const stbtt_fontinfo *info,
stbtt_kerningentry* table,
int table_length);
828 #ifndef STBTT_vmove // you can predefine these to use different values (but why?) 837 #ifndef stbtt_vertex // you can predefine this to use different values 839 #define stbtt_vertex_type short // can't use stbtt_int16 because that's not visible in the header file 842 stbtt_vertex_type x,y,cx,cy,cx1,cy1;
843 unsigned char type,padding;
847 STBTT_DEF
int stbtt_IsGlyphEmpty(
const stbtt_fontinfo *info,
int glyph_index);
850 STBTT_DEF
int stbtt_GetCodepointShape(
const stbtt_fontinfo *info,
int unicode_codepoint,
stbtt_vertex **vertices);
851 STBTT_DEF
int stbtt_GetGlyphShape(
const stbtt_fontinfo *info,
int glyph_index,
stbtt_vertex **vertices);
862 STBTT_DEF
void stbtt_FreeShape(
const stbtt_fontinfo *info,
stbtt_vertex *vertices);
865 STBTT_DEF
unsigned char *stbtt_FindSVGDoc(
const stbtt_fontinfo *info,
int gl);
866 STBTT_DEF
int stbtt_GetCodepointSVG(
const stbtt_fontinfo *info,
int unicode_codepoint,
const char **svg);
867 STBTT_DEF
int stbtt_GetGlyphSVG(
const stbtt_fontinfo *info,
int gl,
const char **svg);
876 STBTT_DEF
void stbtt_FreeBitmap(
unsigned char *bitmap,
void *userdata);
879 STBTT_DEF
unsigned char *stbtt_GetCodepointBitmap(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
int codepoint,
int *width,
int *height,
int *xoff,
int *yoff);
888 STBTT_DEF
unsigned char *stbtt_GetCodepointBitmapSubpixel(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int codepoint,
int *width,
int *height,
int *xoff,
int *yoff);
892 STBTT_DEF
void stbtt_MakeCodepointBitmap(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
int codepoint);
898 STBTT_DEF
void stbtt_MakeCodepointBitmapSubpixel(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int codepoint);
902 STBTT_DEF
void stbtt_MakeCodepointBitmapSubpixelPrefilter(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int oversample_x,
int oversample_y,
float *sub_x,
float *sub_y,
int codepoint);
906 STBTT_DEF
void stbtt_GetCodepointBitmapBox(
const stbtt_fontinfo *font,
int codepoint,
float scale_x,
float scale_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1);
913 STBTT_DEF
void stbtt_GetCodepointBitmapBoxSubpixel(
const stbtt_fontinfo *font,
int codepoint,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1);
919 STBTT_DEF
unsigned char *stbtt_GetGlyphBitmap(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
int glyph,
int *width,
int *height,
int *xoff,
int *yoff);
920 STBTT_DEF
unsigned char *stbtt_GetGlyphBitmapSubpixel(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int glyph,
int *width,
int *height,
int *xoff,
int *yoff);
921 STBTT_DEF
void stbtt_MakeGlyphBitmap(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
int glyph);
922 STBTT_DEF
void stbtt_MakeGlyphBitmapSubpixel(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int glyph);
923 STBTT_DEF
void stbtt_MakeGlyphBitmapSubpixelPrefilter(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int oversample_x,
int oversample_y,
float *sub_x,
float *sub_y,
int glyph);
924 STBTT_DEF
void stbtt_GetGlyphBitmapBox(
const stbtt_fontinfo *font,
int glyph,
float scale_x,
float scale_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1);
925 STBTT_DEF
void stbtt_GetGlyphBitmapBoxSubpixel(
const stbtt_fontinfo *font,
int glyph,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1);
932 unsigned char *pixels;
937 float flatness_in_pixels,
940 float scale_x,
float scale_y,
941 float shift_x,
float shift_y,
942 int x_off,
int y_off,
950 STBTT_DEF
void stbtt_FreeSDF(
unsigned char *bitmap,
void *userdata);
953 STBTT_DEF
unsigned char * stbtt_GetGlyphSDF(
const stbtt_fontinfo *info,
float scale,
int glyph,
int padding,
unsigned char onedge_value,
float pixel_dist_scale,
int *width,
int *height,
int *xoff,
int *yoff);
954 STBTT_DEF
unsigned char * stbtt_GetCodepointSDF(
const stbtt_fontinfo *info,
float scale,
int codepoint,
int padding,
unsigned char onedge_value,
float pixel_dist_scale,
int *width,
int *height,
int *xoff,
int *yoff);
1026 STBTT_DEF
int stbtt_FindMatchingFont(
const unsigned char *fontdata,
const char *name,
int flags);
1031 #define STBTT_MACSTYLE_DONTCARE 0 1032 #define STBTT_MACSTYLE_BOLD 1 1033 #define STBTT_MACSTYLE_ITALIC 2 1034 #define STBTT_MACSTYLE_UNDERSCORE 4 1035 #define STBTT_MACSTYLE_NONE 8 // <= not same as 0, this makes us check the bitfield is 0 1037 STBTT_DEF
int stbtt_CompareUTF8toUTF16_bigendian(
const char *s1,
int len1,
const char *s2,
int len2);
1041 STBTT_DEF
const char *stbtt_GetFontNameString(
const stbtt_fontinfo *font,
int *length,
int platformID,
int encodingID,
int languageID,
int nameID);
1050 STBTT_PLATFORM_ID_UNICODE =0,
1051 STBTT_PLATFORM_ID_MAC =1,
1052 STBTT_PLATFORM_ID_ISO =2,
1053 STBTT_PLATFORM_ID_MICROSOFT =3
1057 STBTT_UNICODE_EID_UNICODE_1_0 =0,
1058 STBTT_UNICODE_EID_UNICODE_1_1 =1,
1059 STBTT_UNICODE_EID_ISO_10646 =2,
1060 STBTT_UNICODE_EID_UNICODE_2_0_BMP=3,
1061 STBTT_UNICODE_EID_UNICODE_2_0_FULL=4
1065 STBTT_MS_EID_SYMBOL =0,
1066 STBTT_MS_EID_UNICODE_BMP =1,
1067 STBTT_MS_EID_SHIFTJIS =2,
1068 STBTT_MS_EID_UNICODE_FULL =10
1072 STBTT_MAC_EID_ROMAN =0, STBTT_MAC_EID_ARABIC =4,
1073 STBTT_MAC_EID_JAPANESE =1, STBTT_MAC_EID_HEBREW =5,
1074 STBTT_MAC_EID_CHINESE_TRAD =2, STBTT_MAC_EID_GREEK =6,
1075 STBTT_MAC_EID_KOREAN =3, STBTT_MAC_EID_RUSSIAN =7
1080 STBTT_MS_LANG_ENGLISH =0x0409, STBTT_MS_LANG_ITALIAN =0x0410,
1081 STBTT_MS_LANG_CHINESE =0x0804, STBTT_MS_LANG_JAPANESE =0x0411,
1082 STBTT_MS_LANG_DUTCH =0x0413, STBTT_MS_LANG_KOREAN =0x0412,
1083 STBTT_MS_LANG_FRENCH =0x040c, STBTT_MS_LANG_RUSSIAN =0x0419,
1084 STBTT_MS_LANG_GERMAN =0x0407, STBTT_MS_LANG_SPANISH =0x0409,
1085 STBTT_MS_LANG_HEBREW =0x040d, STBTT_MS_LANG_SWEDISH =0x041D
1089 STBTT_MAC_LANG_ENGLISH =0 , STBTT_MAC_LANG_JAPANESE =11,
1090 STBTT_MAC_LANG_ARABIC =12, STBTT_MAC_LANG_KOREAN =23,
1091 STBTT_MAC_LANG_DUTCH =4 , STBTT_MAC_LANG_RUSSIAN =32,
1092 STBTT_MAC_LANG_FRENCH =1 , STBTT_MAC_LANG_SPANISH =6 ,
1093 STBTT_MAC_LANG_GERMAN =2 , STBTT_MAC_LANG_SWEDISH =5 ,
1094 STBTT_MAC_LANG_HEBREW =10, STBTT_MAC_LANG_CHINESE_SIMPLIFIED =33,
1095 STBTT_MAC_LANG_ITALIAN =3 , STBTT_MAC_LANG_CHINESE_TRAD =19
1102 #endif // __STB_INCLUDE_STB_TRUETYPE_H__ 1111 #ifdef STB_TRUETYPE_IMPLEMENTATION 1113 #ifndef STBTT_MAX_OVERSAMPLE 1114 #define STBTT_MAX_OVERSAMPLE 8 1117 #if STBTT_MAX_OVERSAMPLE > 255 1118 #error "STBTT_MAX_OVERSAMPLE cannot be > 255" 1121 typedef int stbtt__test_oversample_pow2[(STBTT_MAX_OVERSAMPLE & (STBTT_MAX_OVERSAMPLE-1)) == 0 ? 1 : -1];
1123 #ifndef STBTT_RASTERIZER_VERSION 1124 #define STBTT_RASTERIZER_VERSION 2 1128 #define STBTT__NOTUSED(v) (void)(v) 1130 #define STBTT__NOTUSED(v) (void)sizeof(v) 1138 static stbtt_uint8 stbtt__buf_get8(
stbtt__buf *b)
1140 if (b->cursor >= b->size)
1142 return b->data[b->cursor++];
1145 static stbtt_uint8 stbtt__buf_peek8(
stbtt__buf *b)
1147 if (b->cursor >= b->size)
1149 return b->data[b->cursor];
1152 static void stbtt__buf_seek(
stbtt__buf *b,
int o)
1154 STBTT_assert(!(o > b->size || o < 0));
1155 b->cursor = (o > b->size || o < 0) ? b->size : o;
1158 static void stbtt__buf_skip(
stbtt__buf *b,
int o)
1160 stbtt__buf_seek(b, b->cursor + o);
1163 static stbtt_uint32 stbtt__buf_get(
stbtt__buf *b,
int n)
1167 STBTT_assert(n >= 1 && n <= 4);
1168 for (i = 0; i < n; i++)
1169 v = (v << 8) | stbtt__buf_get8(b);
1173 static stbtt__buf stbtt__new_buf(
const void *p,
size_t size)
1176 STBTT_assert(size < 0x40000000);
1177 r.data = (stbtt_uint8*) p;
1178 r.size = (int) size;
1183 #define stbtt__buf_get16(b) stbtt__buf_get((b), 2) 1184 #define stbtt__buf_get32(b) stbtt__buf_get((b), 4) 1189 if (o < 0 || s < 0 || o > b->size || s > b->size - o)
return r;
1190 r.data = b->data + o;
1197 int count, start, offsize;
1199 count = stbtt__buf_get16(b);
1201 offsize = stbtt__buf_get8(b);
1202 STBTT_assert(offsize >= 1 && offsize <= 4);
1203 stbtt__buf_skip(b, offsize * count);
1204 stbtt__buf_skip(b, stbtt__buf_get(b, offsize) - 1);
1206 return stbtt__buf_range(b, start, b->cursor - start);
1209 static stbtt_uint32 stbtt__cff_int(
stbtt__buf *b)
1211 int b0 = stbtt__buf_get8(b);
1212 if (b0 >= 32 && b0 <= 246)
return b0 - 139;
1213 else if (b0 >= 247 && b0 <= 250)
return (b0 - 247)*256 + stbtt__buf_get8(b) + 108;
1214 else if (b0 >= 251 && b0 <= 254)
return -(b0 - 251)*256 - stbtt__buf_get8(b) - 108;
1215 else if (b0 == 28)
return stbtt__buf_get16(b);
1216 else if (b0 == 29)
return stbtt__buf_get32(b);
1221 static void stbtt__cff_skip_operand(
stbtt__buf *b) {
1222 int v, b0 = stbtt__buf_peek8(b);
1223 STBTT_assert(b0 >= 28);
1225 stbtt__buf_skip(b, 1);
1226 while (b->cursor < b->size) {
1227 v = stbtt__buf_get8(b);
1228 if ((v & 0xF) == 0xF || (v >> 4) == 0xF)
1238 stbtt__buf_seek(b, 0);
1239 while (b->cursor < b->size) {
1240 int start = b->cursor, end, op;
1241 while (stbtt__buf_peek8(b) >= 28)
1242 stbtt__cff_skip_operand(b);
1244 op = stbtt__buf_get8(b);
1245 if (op == 12) op = stbtt__buf_get8(b) | 0x100;
1246 if (op == key)
return stbtt__buf_range(b, start, end-start);
1248 return stbtt__buf_range(b, 0, 0);
1251 static void stbtt__dict_get_ints(
stbtt__buf *b,
int key,
int outcount, stbtt_uint32 *out)
1254 stbtt__buf operands = stbtt__dict_get(b, key);
1255 for (i = 0; i < outcount && operands.cursor < operands.size; i++)
1256 out[i] = stbtt__cff_int(&operands);
1259 static int stbtt__cff_index_count(
stbtt__buf *b)
1261 stbtt__buf_seek(b, 0);
1262 return stbtt__buf_get16(b);
1267 int count, offsize, start, end;
1268 stbtt__buf_seek(&b, 0);
1269 count = stbtt__buf_get16(&b);
1270 offsize = stbtt__buf_get8(&b);
1271 STBTT_assert(i >= 0 && i < count);
1272 STBTT_assert(offsize >= 1 && offsize <= 4);
1273 stbtt__buf_skip(&b, i*offsize);
1274 start = stbtt__buf_get(&b, offsize);
1275 end = stbtt__buf_get(&b, offsize);
1276 return stbtt__buf_range(&b, 2+(count+1)*offsize+start, end - start);
1287 #define ttBYTE(p) (* (stbtt_uint8 *) (p)) 1288 #define ttCHAR(p) (* (stbtt_int8 *) (p)) 1289 #define ttFixed(p) ttLONG(p) 1291 static stbtt_uint16 ttUSHORT(stbtt_uint8 *p) {
return p[0]*256 + p[1]; }
1292 static stbtt_int16 ttSHORT(stbtt_uint8 *p) {
return p[0]*256 + p[1]; }
1293 static stbtt_uint32 ttULONG(stbtt_uint8 *p) {
return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; }
1294 static stbtt_int32 ttLONG(stbtt_uint8 *p) {
return (p[0]<<24) + (p[1]<<16) + (p[2]<<8) + p[3]; }
1296 #define stbtt_tag4(p,c0,c1,c2,c3) ((p)[0] == (c0) && (p)[1] == (c1) && (p)[2] == (c2) && (p)[3] == (c3)) 1297 #define stbtt_tag(p,str) stbtt_tag4(p,str[0],str[1],str[2],str[3]) 1299 static int stbtt__isfont(stbtt_uint8 *font)
1302 if (stbtt_tag4(font,
'1',0,0,0))
return 1;
1303 if (stbtt_tag(font,
"typ1"))
return 1;
1304 if (stbtt_tag(font,
"OTTO"))
return 1;
1305 if (stbtt_tag4(font, 0,1,0,0))
return 1;
1306 if (stbtt_tag(font,
"true"))
return 1;
1311 static stbtt_uint32 stbtt__find_table(stbtt_uint8 *data, stbtt_uint32 fontstart,
const char *tag)
1313 stbtt_int32 num_tables = ttUSHORT(data+fontstart+4);
1314 stbtt_uint32 tabledir = fontstart + 12;
1316 for (i=0; i < num_tables; ++i) {
1317 stbtt_uint32 loc = tabledir + 16*i;
1318 if (stbtt_tag(data+loc+0, tag))
1319 return ttULONG(data+loc+8);
1324 static int stbtt_GetFontOffsetForIndex_internal(
unsigned char *font_collection,
int index)
1327 if (stbtt__isfont(font_collection))
1328 return index == 0 ? 0 : -1;
1331 if (stbtt_tag(font_collection,
"ttcf")) {
1333 if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) {
1334 stbtt_int32 n = ttLONG(font_collection+8);
1337 return ttULONG(font_collection+12+index*4);
1343 static int stbtt_GetNumberOfFonts_internal(
unsigned char *font_collection)
1346 if (stbtt__isfont(font_collection))
1350 if (stbtt_tag(font_collection,
"ttcf")) {
1352 if (ttULONG(font_collection+4) == 0x00010000 || ttULONG(font_collection+4) == 0x00020000) {
1353 return ttLONG(font_collection+8);
1361 stbtt_uint32 subrsoff = 0, private_loc[2] = { 0, 0 };
1363 stbtt__dict_get_ints(&fontdict, 18, 2, private_loc);
1364 if (!private_loc[1] || !private_loc[0])
return stbtt__new_buf(NULL, 0);
1365 pdict = stbtt__buf_range(&cff, private_loc[1], private_loc[0]);
1366 stbtt__dict_get_ints(&pdict, 19, 1, &subrsoff);
1367 if (!subrsoff)
return stbtt__new_buf(NULL, 0);
1368 stbtt__buf_seek(&cff, private_loc[1]+subrsoff);
1369 return stbtt__cff_get_index(&cff);
1376 if (info->svg < 0) {
1377 t = stbtt__find_table(info->data, info->fontstart,
"SVG ");
1379 stbtt_uint32 offset = ttULONG(info->data + t + 2);
1380 info->svg = t + offset;
1388 static int stbtt_InitFont_internal(
stbtt_fontinfo *info,
unsigned char *data,
int fontstart)
1390 stbtt_uint32 cmap, t;
1391 stbtt_int32 i,numTables;
1394 info->fontstart = fontstart;
1395 info->cff = stbtt__new_buf(NULL, 0);
1397 cmap = stbtt__find_table(data, fontstart,
"cmap");
1398 info->loca = stbtt__find_table(data, fontstart,
"loca");
1399 info->head = stbtt__find_table(data, fontstart,
"head");
1400 info->glyf = stbtt__find_table(data, fontstart,
"glyf");
1401 info->hhea = stbtt__find_table(data, fontstart,
"hhea");
1402 info->hmtx = stbtt__find_table(data, fontstart,
"hmtx");
1403 info->kern = stbtt__find_table(data, fontstart,
"kern");
1404 info->gpos = stbtt__find_table(data, fontstart,
"GPOS");
1406 if (!cmap || !info->head || !info->hhea || !info->hmtx)
1410 if (!info->loca)
return 0;
1414 stbtt_uint32 cstype = 2, charstrings = 0, fdarrayoff = 0, fdselectoff = 0;
1417 cff = stbtt__find_table(data, fontstart,
"CFF ");
1420 info->fontdicts = stbtt__new_buf(NULL, 0);
1421 info->fdselect = stbtt__new_buf(NULL, 0);
1424 info->cff = stbtt__new_buf(data+cff, 512*1024*1024);
1428 stbtt__buf_skip(&b, 2);
1429 stbtt__buf_seek(&b, stbtt__buf_get8(&b));
1433 stbtt__cff_get_index(&b);
1434 topdictidx = stbtt__cff_get_index(&b);
1435 topdict = stbtt__cff_index_get(topdictidx, 0);
1436 stbtt__cff_get_index(&b);
1437 info->gsubrs = stbtt__cff_get_index(&b);
1439 stbtt__dict_get_ints(&topdict, 17, 1, &charstrings);
1440 stbtt__dict_get_ints(&topdict, 0x100 | 6, 1, &cstype);
1441 stbtt__dict_get_ints(&topdict, 0x100 | 36, 1, &fdarrayoff);
1442 stbtt__dict_get_ints(&topdict, 0x100 | 37, 1, &fdselectoff);
1443 info->subrs = stbtt__get_subrs(b, topdict);
1446 if (cstype != 2)
return 0;
1447 if (charstrings == 0)
return 0;
1451 if (!fdselectoff)
return 0;
1452 stbtt__buf_seek(&b, fdarrayoff);
1453 info->fontdicts = stbtt__cff_get_index(&b);
1454 info->fdselect = stbtt__buf_range(&b, fdselectoff, b.size-fdselectoff);
1457 stbtt__buf_seek(&b, charstrings);
1458 info->charstrings = stbtt__cff_get_index(&b);
1461 t = stbtt__find_table(data, fontstart,
"maxp");
1463 info->numGlyphs = ttUSHORT(data+t+4);
1465 info->numGlyphs = 0xffff;
1472 numTables = ttUSHORT(data + cmap + 2);
1473 info->index_map = 0;
1474 for (i=0; i < numTables; ++i) {
1475 stbtt_uint32 encoding_record = cmap + 4 + 8 * i;
1477 switch(ttUSHORT(data+encoding_record)) {
1478 case STBTT_PLATFORM_ID_MICROSOFT:
1479 switch (ttUSHORT(data+encoding_record+2)) {
1480 case STBTT_MS_EID_UNICODE_BMP:
1481 case STBTT_MS_EID_UNICODE_FULL:
1483 info->index_map = cmap + ttULONG(data+encoding_record+4);
1487 case STBTT_PLATFORM_ID_UNICODE:
1490 info->index_map = cmap + ttULONG(data+encoding_record+4);
1494 if (info->index_map == 0)
1497 info->indexToLocFormat = ttUSHORT(data+info->head + 50);
1501 STBTT_DEF
int stbtt_FindGlyphIndex(
const stbtt_fontinfo *info,
int unicode_codepoint)
1503 stbtt_uint8 *data = info->data;
1504 stbtt_uint32 index_map = info->index_map;
1506 stbtt_uint16 format = ttUSHORT(data + index_map + 0);
1508 stbtt_int32 bytes = ttUSHORT(data + index_map + 2);
1509 if (unicode_codepoint < bytes-6)
1510 return ttBYTE(data + index_map + 6 + unicode_codepoint);
1512 }
else if (format == 6) {
1513 stbtt_uint32 first = ttUSHORT(data + index_map + 6);
1514 stbtt_uint32 count = ttUSHORT(data + index_map + 8);
1515 if ((stbtt_uint32) unicode_codepoint >= first && (stbtt_uint32) unicode_codepoint < first+count)
1516 return ttUSHORT(data + index_map + 10 + (unicode_codepoint - first)*2);
1518 }
else if (format == 2) {
1521 }
else if (format == 4) {
1522 stbtt_uint16 segcount = ttUSHORT(data+index_map+6) >> 1;
1523 stbtt_uint16 searchRange = ttUSHORT(data+index_map+8) >> 1;
1524 stbtt_uint16 entrySelector = ttUSHORT(data+index_map+10);
1525 stbtt_uint16 rangeShift = ttUSHORT(data+index_map+12) >> 1;
1528 stbtt_uint32 endCount = index_map + 14;
1529 stbtt_uint32 search = endCount;
1531 if (unicode_codepoint > 0xffff)
1536 if (unicode_codepoint >= ttUSHORT(data + search + rangeShift*2))
1537 search += rangeShift*2;
1541 while (entrySelector) {
1544 end = ttUSHORT(data + search + searchRange*2);
1545 if (unicode_codepoint > end)
1546 search += searchRange*2;
1552 stbtt_uint16 offset, start, last;
1553 stbtt_uint16 item = (stbtt_uint16) ((search - endCount) >> 1);
1555 start = ttUSHORT(data + index_map + 14 + segcount*2 + 2 + 2*item);
1556 last = ttUSHORT(data + endCount + 2*item);
1557 if (unicode_codepoint < start || unicode_codepoint > last)
1560 offset = ttUSHORT(data + index_map + 14 + segcount*6 + 2 + 2*item);
1562 return (stbtt_uint16) (unicode_codepoint + ttSHORT(data + index_map + 14 + segcount*4 + 2 + 2*item));
1564 return ttUSHORT(data + offset + (unicode_codepoint-start)*2 + index_map + 14 + segcount*6 + 2 + 2*item);
1566 }
else if (format == 12 || format == 13) {
1567 stbtt_uint32 ngroups = ttULONG(data+index_map+12);
1568 stbtt_int32 low,high;
1569 low = 0; high = (stbtt_int32)ngroups;
1571 while (low < high) {
1572 stbtt_int32 mid = low + ((high-low) >> 1);
1573 stbtt_uint32 start_char = ttULONG(data+index_map+16+mid*12);
1574 stbtt_uint32 end_char = ttULONG(data+index_map+16+mid*12+4);
1575 if ((stbtt_uint32) unicode_codepoint < start_char)
1577 else if ((stbtt_uint32) unicode_codepoint > end_char)
1580 stbtt_uint32 start_glyph = ttULONG(data+index_map+16+mid*12+8);
1582 return start_glyph + unicode_codepoint-start_char;
1596 return stbtt_GetGlyphShape(info, stbtt_FindGlyphIndex(info, unicode_codepoint), vertices);
1599 static void stbtt_setvertex(
stbtt_vertex *v, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy)
1602 v->x = (stbtt_int16) x;
1603 v->y = (stbtt_int16) y;
1604 v->cx = (stbtt_int16) cx;
1605 v->cy = (stbtt_int16) cy;
1608 static int stbtt__GetGlyfOffset(
const stbtt_fontinfo *info,
int glyph_index)
1612 STBTT_assert(!info->cff.size);
1614 if (glyph_index >= info->numGlyphs)
return -1;
1615 if (info->indexToLocFormat >= 2)
return -1;
1617 if (info->indexToLocFormat == 0) {
1618 g1 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2) * 2;
1619 g2 = info->glyf + ttUSHORT(info->data + info->loca + glyph_index * 2 + 2) * 2;
1621 g1 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4);
1622 g2 = info->glyf + ttULONG (info->data + info->loca + glyph_index * 4 + 4);
1625 return g1==g2 ? -1 : g1;
1628 static int stbtt__GetGlyphInfoT2(
const stbtt_fontinfo *info,
int glyph_index,
int *x0,
int *y0,
int *x1,
int *y1);
1630 STBTT_DEF
int stbtt_GetGlyphBox(
const stbtt_fontinfo *info,
int glyph_index,
int *x0,
int *y0,
int *x1,
int *y1)
1632 if (info->cff.size) {
1633 stbtt__GetGlyphInfoT2(info, glyph_index, x0, y0, x1, y1);
1635 int g = stbtt__GetGlyfOffset(info, glyph_index);
1636 if (g < 0)
return 0;
1638 if (x0) *x0 = ttSHORT(info->data + g + 2);
1639 if (y0) *y0 = ttSHORT(info->data + g + 4);
1640 if (x1) *x1 = ttSHORT(info->data + g + 6);
1641 if (y1) *y1 = ttSHORT(info->data + g + 8);
1646 STBTT_DEF
int stbtt_GetCodepointBox(
const stbtt_fontinfo *info,
int codepoint,
int *x0,
int *y0,
int *x1,
int *y1)
1648 return stbtt_GetGlyphBox(info, stbtt_FindGlyphIndex(info,codepoint), x0,y0,x1,y1);
1651 STBTT_DEF
int stbtt_IsGlyphEmpty(
const stbtt_fontinfo *info,
int glyph_index)
1653 stbtt_int16 numberOfContours;
1656 return stbtt__GetGlyphInfoT2(info, glyph_index, NULL, NULL, NULL, NULL) == 0;
1657 g = stbtt__GetGlyfOffset(info, glyph_index);
1658 if (g < 0)
return 1;
1659 numberOfContours = ttSHORT(info->data + g);
1660 return numberOfContours == 0;
1663 static int stbtt__close_shape(
stbtt_vertex *vertices,
int num_vertices,
int was_off,
int start_off,
1664 stbtt_int32 sx, stbtt_int32 sy, stbtt_int32 scx, stbtt_int32 scy, stbtt_int32 cx, stbtt_int32 cy)
1668 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+scx)>>1, (cy+scy)>>1, cx,cy);
1669 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, sx,sy,scx,scy);
1672 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve,sx,sy,cx,cy);
1674 stbtt_setvertex(&vertices[num_vertices++], STBTT_vline,sx,sy,0,0);
1676 return num_vertices;
1681 stbtt_int16 numberOfContours;
1682 stbtt_uint8 *endPtsOfContours;
1683 stbtt_uint8 *data = info->data;
1686 int g = stbtt__GetGlyfOffset(info, glyph_index);
1690 if (g < 0)
return 0;
1692 numberOfContours = ttSHORT(data + g);
1694 if (numberOfContours > 0) {
1695 stbtt_uint8 flags=0,flagcount;
1696 stbtt_int32 ins, i,j=0,m,n, next_move, was_off=0, off, start_off=0;
1697 stbtt_int32 x,y,cx,cy,sx,sy, scx,scy;
1698 stbtt_uint8 *points;
1699 endPtsOfContours = (data + g + 10);
1700 ins = ttUSHORT(data + g + 10 + numberOfContours * 2);
1701 points = data + g + 10 + numberOfContours * 2 + 2 + ins;
1703 n = 1+ttUSHORT(endPtsOfContours + numberOfContours*2-2);
1705 m = n + 2*numberOfContours;
1706 vertices = (
stbtt_vertex *) STBTT_malloc(m *
sizeof(vertices[0]), info->userdata);
1721 for (i=0; i < n; ++i) {
1722 if (flagcount == 0) {
1725 flagcount = *points++;
1728 vertices[off+i].type = flags;
1733 for (i=0; i < n; ++i) {
1734 flags = vertices[off+i].type;
1736 stbtt_int16 dx = *points++;
1737 x += (flags & 16) ? dx : -dx;
1739 if (!(flags & 16)) {
1740 x = x + (stbtt_int16) (points[0]*256 + points[1]);
1744 vertices[off+i].x = (stbtt_int16) x;
1749 for (i=0; i < n; ++i) {
1750 flags = vertices[off+i].type;
1752 stbtt_int16 dy = *points++;
1753 y += (flags & 32) ? dy : -dy;
1755 if (!(flags & 32)) {
1756 y = y + (stbtt_int16) (points[0]*256 + points[1]);
1760 vertices[off+i].y = (stbtt_int16) y;
1765 sx = sy = cx = cy = scx = scy = 0;
1766 for (i=0; i < n; ++i) {
1767 flags = vertices[off+i].type;
1768 x = (stbtt_int16) vertices[off+i].x;
1769 y = (stbtt_int16) vertices[off+i].y;
1771 if (next_move == i) {
1773 num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy);
1776 start_off = !(flags & 1);
1782 if (!(vertices[off+i+1].type & 1)) {
1784 sx = (x + (stbtt_int32) vertices[off+i+1].x) >> 1;
1785 sy = (y + (stbtt_int32) vertices[off+i+1].y) >> 1;
1788 sx = (stbtt_int32) vertices[off+i+1].x;
1789 sy = (stbtt_int32) vertices[off+i+1].y;
1796 stbtt_setvertex(&vertices[num_vertices++], STBTT_vmove,sx,sy,0,0);
1798 next_move = 1 + ttUSHORT(endPtsOfContours+j*2);
1803 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, (cx+x)>>1, (cy+y)>>1, cx, cy);
1809 stbtt_setvertex(&vertices[num_vertices++], STBTT_vcurve, x,y, cx, cy);
1811 stbtt_setvertex(&vertices[num_vertices++], STBTT_vline, x,y,0,0);
1816 num_vertices = stbtt__close_shape(vertices, num_vertices, was_off, start_off, sx,sy,scx,scy,cx,cy);
1817 }
else if (numberOfContours < 0) {
1820 stbtt_uint8 *comp = data + g + 10;
1824 stbtt_uint16 flags, gidx;
1825 int comp_num_verts = 0, i;
1827 float mtx[6] = {1,0,0,1,0,0}, m, n;
1829 flags = ttSHORT(comp); comp+=2;
1830 gidx = ttSHORT(comp); comp+=2;
1834 mtx[4] = ttSHORT(comp); comp+=2;
1835 mtx[5] = ttSHORT(comp); comp+=2;
1837 mtx[4] = ttCHAR(comp); comp+=1;
1838 mtx[5] = ttCHAR(comp); comp+=1;
1845 if (flags & (1<<3)) {
1846 mtx[0] = mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
1847 mtx[1] = mtx[2] = 0;
1848 }
else if (flags & (1<<6)) {
1849 mtx[0] = ttSHORT(comp)/16384.0f; comp+=2;
1850 mtx[1] = mtx[2] = 0;
1851 mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
1852 }
else if (flags & (1<<7)) {
1853 mtx[0] = ttSHORT(comp)/16384.0f; comp+=2;
1854 mtx[1] = ttSHORT(comp)/16384.0f; comp+=2;
1855 mtx[2] = ttSHORT(comp)/16384.0f; comp+=2;
1856 mtx[3] = ttSHORT(comp)/16384.0f; comp+=2;
1860 m = (float) STBTT_sqrt(mtx[0]*mtx[0] + mtx[1]*mtx[1]);
1861 n = (float) STBTT_sqrt(mtx[2]*mtx[2] + mtx[3]*mtx[3]);
1864 comp_num_verts = stbtt_GetGlyphShape(info, gidx, &comp_verts);
1865 if (comp_num_verts > 0) {
1867 for (i = 0; i < comp_num_verts; ++i) {
1869 stbtt_vertex_type x,y;
1871 v->x = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4]));
1872 v->y = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5]));
1874 v->cx = (stbtt_vertex_type)(m * (mtx[0]*x + mtx[2]*y + mtx[4]));
1875 v->cy = (stbtt_vertex_type)(n * (mtx[1]*x + mtx[3]*y + mtx[5]));
1880 if (vertices) STBTT_free(vertices, info->userdata);
1881 if (comp_verts) STBTT_free(comp_verts, info->userdata);
1884 if (num_vertices > 0 && vertices) STBTT_memcpy(tmp, vertices, num_vertices*
sizeof(
stbtt_vertex));
1885 STBTT_memcpy(tmp+num_vertices, comp_verts, comp_num_verts*
sizeof(
stbtt_vertex));
1886 if (vertices) STBTT_free(vertices, info->userdata);
1888 STBTT_free(comp_verts, info->userdata);
1889 num_vertices += comp_num_verts;
1892 more = flags & (1<<5);
1898 *pvertices = vertices;
1899 return num_vertices;
1906 float first_x, first_y;
1908 stbtt_int32 min_x, max_x, min_y, max_y;
1914 #define STBTT__CSCTX_INIT(bounds) {bounds,0, 0,0, 0,0, 0,0,0,0, NULL, 0} 1916 static void stbtt__track_vertex(stbtt__csctx *c, stbtt_int32 x, stbtt_int32 y)
1918 if (x > c->max_x || !c->started) c->max_x = x;
1919 if (y > c->max_y || !c->started) c->max_y = y;
1920 if (x < c->min_x || !c->started) c->min_x = x;
1921 if (y < c->min_y || !c->started) c->min_y = y;
1925 static void stbtt__csctx_v(stbtt__csctx *c, stbtt_uint8 type, stbtt_int32 x, stbtt_int32 y, stbtt_int32 cx, stbtt_int32 cy, stbtt_int32 cx1, stbtt_int32 cy1)
1928 stbtt__track_vertex(c, x, y);
1929 if (type == STBTT_vcubic) {
1930 stbtt__track_vertex(c, cx, cy);
1931 stbtt__track_vertex(c, cx1, cy1);
1934 stbtt_setvertex(&c->pvertices[c->num_vertices], type, x, y, cx, cy);
1935 c->pvertices[c->num_vertices].cx1 = (stbtt_int16) cx1;
1936 c->pvertices[c->num_vertices].cy1 = (stbtt_int16) cy1;
1941 static void stbtt__csctx_close_shape(stbtt__csctx *ctx)
1943 if (ctx->first_x != ctx->x || ctx->first_y != ctx->y)
1944 stbtt__csctx_v(ctx, STBTT_vline, (
int)ctx->first_x, (
int)ctx->first_y, 0, 0, 0, 0);
1947 static void stbtt__csctx_rmove_to(stbtt__csctx *ctx,
float dx,
float dy)
1949 stbtt__csctx_close_shape(ctx);
1950 ctx->first_x = ctx->x = ctx->x + dx;
1951 ctx->first_y = ctx->y = ctx->y + dy;
1952 stbtt__csctx_v(ctx, STBTT_vmove, (
int)ctx->x, (
int)ctx->y, 0, 0, 0, 0);
1955 static void stbtt__csctx_rline_to(stbtt__csctx *ctx,
float dx,
float dy)
1959 stbtt__csctx_v(ctx, STBTT_vline, (
int)ctx->x, (
int)ctx->y, 0, 0, 0, 0);
1962 static void stbtt__csctx_rccurve_to(stbtt__csctx *ctx,
float dx1,
float dy1,
float dx2,
float dy2,
float dx3,
float dy3)
1964 float cx1 = ctx->x + dx1;
1965 float cy1 = ctx->y + dy1;
1966 float cx2 = cx1 + dx2;
1967 float cy2 = cy1 + dy2;
1970 stbtt__csctx_v(ctx, STBTT_vcubic, (
int)ctx->x, (
int)ctx->y, (
int)cx1, (
int)cy1, (
int)cx2, (
int)cy2);
1975 int count = stbtt__cff_index_count(&idx);
1979 else if (count >= 1240)
1982 if (n < 0 || n >= count)
1983 return stbtt__new_buf(NULL, 0);
1984 return stbtt__cff_index_get(idx, n);
1990 int nranges, start, end, v, fmt, fdselector = -1, i;
1992 stbtt__buf_seek(&fdselect, 0);
1993 fmt = stbtt__buf_get8(&fdselect);
1996 stbtt__buf_skip(&fdselect, glyph_index);
1997 fdselector = stbtt__buf_get8(&fdselect);
1998 }
else if (fmt == 3) {
1999 nranges = stbtt__buf_get16(&fdselect);
2000 start = stbtt__buf_get16(&fdselect);
2001 for (i = 0; i < nranges; i++) {
2002 v = stbtt__buf_get8(&fdselect);
2003 end = stbtt__buf_get16(&fdselect);
2004 if (glyph_index >= start && glyph_index < end) {
2011 if (fdselector == -1)
return stbtt__new_buf(NULL, 0);
2012 return stbtt__get_subrs(info->cff, stbtt__cff_index_get(info->fontdicts, fdselector));
2015 static int stbtt__run_charstring(
const stbtt_fontinfo *info,
int glyph_index, stbtt__csctx *c)
2017 int in_header = 1, maskbits = 0, subr_stack_height = 0, sp = 0, v, i, b0;
2018 int has_subrs = 0, clear_stack;
2020 stbtt__buf subr_stack[10], subrs = info->subrs, b;
2023 #define STBTT__CSERR(s) (0) 2026 b = stbtt__cff_index_get(info->charstrings, glyph_index);
2027 while (b.cursor < b.size) {
2030 b0 = stbtt__buf_get8(&b);
2036 maskbits += (sp / 2);
2038 stbtt__buf_skip(&b, (maskbits + 7) / 8);
2045 maskbits += (sp / 2);
2050 if (sp < 2)
return STBTT__CSERR(
"rmoveto stack");
2051 stbtt__csctx_rmove_to(c, s[sp-2], s[sp-1]);
2055 if (sp < 1)
return STBTT__CSERR(
"vmoveto stack");
2056 stbtt__csctx_rmove_to(c, 0, s[sp-1]);
2060 if (sp < 1)
return STBTT__CSERR(
"hmoveto stack");
2061 stbtt__csctx_rmove_to(c, s[sp-1], 0);
2065 if (sp < 2)
return STBTT__CSERR(
"rlineto stack");
2066 for (; i + 1 < sp; i += 2)
2067 stbtt__csctx_rline_to(c, s[i], s[i+1]);
2074 if (sp < 1)
return STBTT__CSERR(
"vlineto stack");
2077 if (sp < 1)
return STBTT__CSERR(
"hlineto stack");
2080 stbtt__csctx_rline_to(c, s[i], 0);
2084 stbtt__csctx_rline_to(c, 0, s[i]);
2090 if (sp < 4)
return STBTT__CSERR(
"hvcurveto stack");
2093 if (sp < 4)
return STBTT__CSERR(
"vhcurveto stack");
2095 if (i + 3 >= sp)
break;
2096 stbtt__csctx_rccurve_to(c, 0, s[i], s[i+1], s[i+2], s[i+3], (sp - i == 5) ? s[i + 4] : 0.0f);
2099 if (i + 3 >= sp)
break;
2100 stbtt__csctx_rccurve_to(c, s[i], 0, s[i+1], s[i+2], (sp - i == 5) ? s[i+4] : 0.0f, s[i+3]);
2106 if (sp < 6)
return STBTT__CSERR(
"rcurveline stack");
2107 for (; i + 5 < sp; i += 6)
2108 stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
2112 if (sp < 8)
return STBTT__CSERR(
"rcurveline stack");
2113 for (; i + 5 < sp - 2; i += 6)
2114 stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
2115 if (i + 1 >= sp)
return STBTT__CSERR(
"rcurveline stack");
2116 stbtt__csctx_rline_to(c, s[i], s[i+1]);
2120 if (sp < 8)
return STBTT__CSERR(
"rlinecurve stack");
2121 for (; i + 1 < sp - 6; i += 2)
2122 stbtt__csctx_rline_to(c, s[i], s[i+1]);
2123 if (i + 5 >= sp)
return STBTT__CSERR(
"rlinecurve stack");
2124 stbtt__csctx_rccurve_to(c, s[i], s[i+1], s[i+2], s[i+3], s[i+4], s[i+5]);
2129 if (sp < 4)
return STBTT__CSERR(
"(vv|hh)curveto stack");
2131 if (sp & 1) { f = s[i]; i++; }
2132 for (; i + 3 < sp; i += 4) {
2134 stbtt__csctx_rccurve_to(c, s[i], f, s[i+1], s[i+2], s[i+3], 0.0);
2136 stbtt__csctx_rccurve_to(c, f, s[i], s[i+1], s[i+2], 0.0, s[i+3]);
2143 if (info->fdselect.size)
2144 subrs = stbtt__cid_get_glyph_subrs(info, glyph_index);
2149 if (sp < 1)
return STBTT__CSERR(
"call(g|)subr stack");
2151 if (subr_stack_height >= 10)
return STBTT__CSERR(
"recursion limit");
2152 subr_stack[subr_stack_height++] = b;
2153 b = stbtt__get_subr(b0 == 0x0A ? subrs : info->gsubrs, v);
2154 if (b.size == 0)
return STBTT__CSERR(
"subr not found");
2160 if (subr_stack_height <= 0)
return STBTT__CSERR(
"return outside subr");
2161 b = subr_stack[--subr_stack_height];
2166 stbtt__csctx_close_shape(c);
2170 float dx1, dx2, dx3, dx4, dx5, dx6, dy1, dy2, dy3, dy4, dy5, dy6;
2172 int b1 = stbtt__buf_get8(&b);
2177 if (sp < 7)
return STBTT__CSERR(
"hflex stack");
2185 stbtt__csctx_rccurve_to(c, dx1, 0, dx2, dy2, dx3, 0);
2186 stbtt__csctx_rccurve_to(c, dx4, 0, dx5, -dy2, dx6, 0);
2190 if (sp < 13)
return STBTT__CSERR(
"flex stack");
2204 stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3);
2205 stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6);
2209 if (sp < 9)
return STBTT__CSERR(
"hflex1 stack");
2219 stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, 0);
2220 stbtt__csctx_rccurve_to(c, dx4, 0, dx5, dy5, dx6, -(dy1+dy2+dy5));
2224 if (sp < 11)
return STBTT__CSERR(
"flex1 stack");
2236 dx = dx1+dx2+dx3+dx4+dx5;
2237 dy = dy1+dy2+dy3+dy4+dy5;
2238 if (STBTT_fabs(dx) > STBTT_fabs(dy))
2242 stbtt__csctx_rccurve_to(c, dx1, dy1, dx2, dy2, dx3, dy3);
2243 stbtt__csctx_rccurve_to(c, dx4, dy4, dx5, dy5, dx6, dy6);
2247 return STBTT__CSERR(
"unimplemented");
2252 if (b0 != 255 && b0 != 28 && b0 < 32)
2253 return STBTT__CSERR(
"reserved operator");
2257 f = (float)(stbtt_int32)stbtt__buf_get32(&b) / 0x10000;
2259 stbtt__buf_skip(&b, -1);
2260 f = (float)(stbtt_int16)stbtt__cff_int(&b);
2262 if (sp >= 48)
return STBTT__CSERR(
"push stack overflow");
2267 if (clear_stack) sp = 0;
2269 return STBTT__CSERR(
"no endchar");
2277 stbtt__csctx count_ctx = STBTT__CSCTX_INIT(1);
2278 stbtt__csctx output_ctx = STBTT__CSCTX_INIT(0);
2279 if (stbtt__run_charstring(info, glyph_index, &count_ctx)) {
2281 output_ctx.pvertices = *pvertices;
2282 if (stbtt__run_charstring(info, glyph_index, &output_ctx)) {
2283 STBTT_assert(output_ctx.num_vertices == count_ctx.num_vertices);
2284 return output_ctx.num_vertices;
2291 static int stbtt__GetGlyphInfoT2(
const stbtt_fontinfo *info,
int glyph_index,
int *x0,
int *y0,
int *x1,
int *y1)
2293 stbtt__csctx c = STBTT__CSCTX_INIT(1);
2294 int r = stbtt__run_charstring(info, glyph_index, &c);
2295 if (x0) *x0 = r ? c.min_x : 0;
2296 if (y0) *y0 = r ? c.min_y : 0;
2297 if (x1) *x1 = r ? c.max_x : 0;
2298 if (y1) *y1 = r ? c.max_y : 0;
2299 return r ? c.num_vertices : 0;
2304 if (!info->cff.size)
2305 return stbtt__GetGlyphShapeTT(info, glyph_index, pvertices);
2307 return stbtt__GetGlyphShapeT2(info, glyph_index, pvertices);
2310 STBTT_DEF
void stbtt_GetGlyphHMetrics(
const stbtt_fontinfo *info,
int glyph_index,
int *advanceWidth,
int *leftSideBearing)
2312 stbtt_uint16 numOfLongHorMetrics = ttUSHORT(info->data+info->hhea + 34);
2313 if (glyph_index < numOfLongHorMetrics) {
2314 if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*glyph_index);
2315 if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*glyph_index + 2);
2317 if (advanceWidth) *advanceWidth = ttSHORT(info->data + info->hmtx + 4*(numOfLongHorMetrics-1));
2318 if (leftSideBearing) *leftSideBearing = ttSHORT(info->data + info->hmtx + 4*numOfLongHorMetrics + 2*(glyph_index - numOfLongHorMetrics));
2322 STBTT_DEF
int stbtt_GetKerningTableLength(
const stbtt_fontinfo *info)
2324 stbtt_uint8 *data = info->data + info->kern;
2329 if (ttUSHORT(data+2) < 1)
2331 if (ttUSHORT(data+8) != 1)
2334 return ttUSHORT(data+10);
2339 stbtt_uint8 *data = info->data + info->kern;
2345 if (ttUSHORT(data+2) < 1)
2347 if (ttUSHORT(data+8) != 1)
2350 length = ttUSHORT(data+10);
2351 if (table_length < length)
2352 length = table_length;
2354 for (k = 0; k < length; k++)
2356 table[k].glyph1 = ttUSHORT(data+18+(k*6));
2357 table[k].glyph2 = ttUSHORT(data+20+(k*6));
2358 table[k].advance = ttSHORT(data+22+(k*6));
2364 static int stbtt__GetGlyphKernInfoAdvance(
const stbtt_fontinfo *info,
int glyph1,
int glyph2)
2366 stbtt_uint8 *data = info->data + info->kern;
2367 stbtt_uint32 needle, straw;
2373 if (ttUSHORT(data+2) < 1)
2375 if (ttUSHORT(data+8) != 1)
2379 r = ttUSHORT(data+10) - 1;
2380 needle = glyph1 << 16 | glyph2;
2383 straw = ttULONG(data+18+(m*6));
2386 else if (needle > straw)
2389 return ttSHORT(data+22+(m*6));
2394 static stbtt_int32 stbtt__GetCoverageIndex(stbtt_uint8 *coverageTable,
int glyph)
2396 stbtt_uint16 coverageFormat = ttUSHORT(coverageTable);
2397 switch (coverageFormat) {
2399 stbtt_uint16 glyphCount = ttUSHORT(coverageTable + 2);
2402 stbtt_int32 l=0, r=glyphCount-1, m;
2403 int straw, needle=glyph;
2405 stbtt_uint8 *glyphArray = coverageTable + 4;
2406 stbtt_uint16 glyphID;
2408 glyphID = ttUSHORT(glyphArray + 2 * m);
2412 else if (needle > straw)
2422 stbtt_uint16 rangeCount = ttUSHORT(coverageTable + 2);
2423 stbtt_uint8 *rangeArray = coverageTable + 4;
2426 stbtt_int32 l=0, r=rangeCount-1, m;
2427 int strawStart, strawEnd, needle=glyph;
2429 stbtt_uint8 *rangeRecord;
2431 rangeRecord = rangeArray + 6 * m;
2432 strawStart = ttUSHORT(rangeRecord);
2433 strawEnd = ttUSHORT(rangeRecord + 2);
2434 if (needle < strawStart)
2436 else if (needle > strawEnd)
2439 stbtt_uint16 startCoverageIndex = ttUSHORT(rangeRecord + 4);
2440 return startCoverageIndex + glyph - strawStart;
2452 static stbtt_int32 stbtt__GetGlyphClass(stbtt_uint8 *classDefTable,
int glyph)
2454 stbtt_uint16 classDefFormat = ttUSHORT(classDefTable);
2455 switch (classDefFormat)
2458 stbtt_uint16 startGlyphID = ttUSHORT(classDefTable + 2);
2459 stbtt_uint16 glyphCount = ttUSHORT(classDefTable + 4);
2460 stbtt_uint8 *classDef1ValueArray = classDefTable + 6;
2462 if (glyph >= startGlyphID && glyph < startGlyphID + glyphCount)
2463 return (stbtt_int32)ttUSHORT(classDef1ValueArray + 2 * (glyph - startGlyphID));
2468 stbtt_uint16 classRangeCount = ttUSHORT(classDefTable + 2);
2469 stbtt_uint8 *classRangeRecords = classDefTable + 4;
2472 stbtt_int32 l=0, r=classRangeCount-1, m;
2473 int strawStart, strawEnd, needle=glyph;
2475 stbtt_uint8 *classRangeRecord;
2477 classRangeRecord = classRangeRecords + 6 * m;
2478 strawStart = ttUSHORT(classRangeRecord);
2479 strawEnd = ttUSHORT(classRangeRecord + 2);
2480 if (needle < strawStart)
2482 else if (needle > strawEnd)
2485 return (stbtt_int32)ttUSHORT(classRangeRecord + 4);
2499 #define STBTT_GPOS_TODO_assert(x) 2501 static stbtt_int32 stbtt__GetGlyphGPOSInfoAdvance(
const stbtt_fontinfo *info,
int glyph1,
int glyph2)
2503 stbtt_uint16 lookupListOffset;
2504 stbtt_uint8 *lookupList;
2505 stbtt_uint16 lookupCount;
2509 if (!info->gpos)
return 0;
2511 data = info->data + info->gpos;
2513 if (ttUSHORT(data+0) != 1)
return 0;
2514 if (ttUSHORT(data+2) != 0)
return 0;
2516 lookupListOffset = ttUSHORT(data+8);
2517 lookupList = data + lookupListOffset;
2518 lookupCount = ttUSHORT(lookupList);
2520 for (i=0; i<lookupCount; ++i) {
2521 stbtt_uint16 lookupOffset = ttUSHORT(lookupList + 2 + 2 * i);
2522 stbtt_uint8 *lookupTable = lookupList + lookupOffset;
2524 stbtt_uint16 lookupType = ttUSHORT(lookupTable);
2525 stbtt_uint16 subTableCount = ttUSHORT(lookupTable + 4);
2526 stbtt_uint8 *subTableOffsets = lookupTable + 6;
2527 if (lookupType != 2)
2530 for (sti=0; sti<subTableCount; sti++) {
2531 stbtt_uint16 subtableOffset = ttUSHORT(subTableOffsets + 2 * sti);
2532 stbtt_uint8 *table = lookupTable + subtableOffset;
2533 stbtt_uint16 posFormat = ttUSHORT(table);
2534 stbtt_uint16 coverageOffset = ttUSHORT(table + 2);
2535 stbtt_int32 coverageIndex = stbtt__GetCoverageIndex(table + coverageOffset, glyph1);
2536 if (coverageIndex == -1)
continue;
2538 switch (posFormat) {
2540 stbtt_int32 l, r, m;
2542 stbtt_uint16 valueFormat1 = ttUSHORT(table + 4);
2543 stbtt_uint16 valueFormat2 = ttUSHORT(table + 6);
2544 if (valueFormat1 == 4 && valueFormat2 == 0) {
2545 stbtt_int32 valueRecordPairSizeInBytes = 2;
2546 stbtt_uint16 pairSetCount = ttUSHORT(table + 8);
2547 stbtt_uint16 pairPosOffset = ttUSHORT(table + 10 + 2 * coverageIndex);
2548 stbtt_uint8 *pairValueTable = table + pairPosOffset;
2549 stbtt_uint16 pairValueCount = ttUSHORT(pairValueTable);
2550 stbtt_uint8 *pairValueArray = pairValueTable + 2;
2552 if (coverageIndex >= pairSetCount)
return 0;
2560 stbtt_uint16 secondGlyph;
2561 stbtt_uint8 *pairValue;
2563 pairValue = pairValueArray + (2 + valueRecordPairSizeInBytes) * m;
2564 secondGlyph = ttUSHORT(pairValue);
2565 straw = secondGlyph;
2568 else if (needle > straw)
2571 stbtt_int16 xAdvance = ttSHORT(pairValue + 2);
2581 stbtt_uint16 valueFormat1 = ttUSHORT(table + 4);
2582 stbtt_uint16 valueFormat2 = ttUSHORT(table + 6);
2583 if (valueFormat1 == 4 && valueFormat2 == 0) {
2584 stbtt_uint16 classDef1Offset = ttUSHORT(table + 8);
2585 stbtt_uint16 classDef2Offset = ttUSHORT(table + 10);
2586 int glyph1class = stbtt__GetGlyphClass(table + classDef1Offset, glyph1);
2587 int glyph2class = stbtt__GetGlyphClass(table + classDef2Offset, glyph2);
2589 stbtt_uint16 class1Count = ttUSHORT(table + 12);
2590 stbtt_uint16 class2Count = ttUSHORT(table + 14);
2591 stbtt_uint8 *class1Records, *class2Records;
2592 stbtt_int16 xAdvance;
2594 if (glyph1class < 0 || glyph1class >= class1Count)
return 0;
2595 if (glyph2class < 0 || glyph2class >= class2Count)
return 0;
2597 class1Records = table + 16;
2598 class2Records = class1Records + 2 * (glyph1class * class2Count);
2599 xAdvance = ttSHORT(class2Records + 2 * glyph2class);
2615 STBTT_DEF
int stbtt_GetGlyphKernAdvance(
const stbtt_fontinfo *info,
int g1,
int g2)
2620 xAdvance += stbtt__GetGlyphGPOSInfoAdvance(info, g1, g2);
2621 else if (info->kern)
2622 xAdvance += stbtt__GetGlyphKernInfoAdvance(info, g1, g2);
2627 STBTT_DEF
int stbtt_GetCodepointKernAdvance(
const stbtt_fontinfo *info,
int ch1,
int ch2)
2629 if (!info->kern && !info->gpos)
2631 return stbtt_GetGlyphKernAdvance(info, stbtt_FindGlyphIndex(info,ch1), stbtt_FindGlyphIndex(info,ch2));
2634 STBTT_DEF
void stbtt_GetCodepointHMetrics(
const stbtt_fontinfo *info,
int codepoint,
int *advanceWidth,
int *leftSideBearing)
2636 stbtt_GetGlyphHMetrics(info, stbtt_FindGlyphIndex(info,codepoint), advanceWidth, leftSideBearing);
2639 STBTT_DEF
void stbtt_GetFontVMetrics(
const stbtt_fontinfo *info,
int *ascent,
int *descent,
int *lineGap)
2641 if (ascent ) *ascent = ttSHORT(info->data+info->hhea + 4);
2642 if (descent) *descent = ttSHORT(info->data+info->hhea + 6);
2643 if (lineGap) *lineGap = ttSHORT(info->data+info->hhea + 8);
2646 STBTT_DEF
int stbtt_GetFontVMetricsOS2(
const stbtt_fontinfo *info,
int *typoAscent,
int *typoDescent,
int *typoLineGap)
2648 int tab = stbtt__find_table(info->data, info->fontstart,
"OS/2");
2651 if (typoAscent ) *typoAscent = ttSHORT(info->data+tab + 68);
2652 if (typoDescent) *typoDescent = ttSHORT(info->data+tab + 70);
2653 if (typoLineGap) *typoLineGap = ttSHORT(info->data+tab + 72);
2657 STBTT_DEF
void stbtt_GetFontBoundingBox(
const stbtt_fontinfo *info,
int *x0,
int *y0,
int *x1,
int *y1)
2659 *x0 = ttSHORT(info->data + info->head + 36);
2660 *y0 = ttSHORT(info->data + info->head + 38);
2661 *x1 = ttSHORT(info->data + info->head + 40);
2662 *y1 = ttSHORT(info->data + info->head + 42);
2665 STBTT_DEF
float stbtt_ScaleForPixelHeight(
const stbtt_fontinfo *info,
float height)
2667 int fheight = ttSHORT(info->data + info->hhea + 4) - ttSHORT(info->data + info->hhea + 6);
2668 return (
float) height / fheight;
2671 STBTT_DEF
float stbtt_ScaleForMappingEmToPixels(
const stbtt_fontinfo *info,
float pixels)
2673 int unitsPerEm = ttUSHORT(info->data + info->head + 18);
2674 return pixels / unitsPerEm;
2679 STBTT_free(v, info->userdata);
2682 STBTT_DEF stbtt_uint8 *stbtt_FindSVGDoc(
const stbtt_fontinfo *info,
int gl)
2685 stbtt_uint8 *data = info->data;
2686 stbtt_uint8 *svg_doc_list = data + stbtt__get_svg((
stbtt_fontinfo *) info);
2688 int numEntries = ttUSHORT(svg_doc_list);
2689 stbtt_uint8 *svg_docs = svg_doc_list + 2;
2691 for(i=0; i<numEntries; i++) {
2692 stbtt_uint8 *svg_doc = svg_docs + (12 * i);
2693 if ((gl >= ttUSHORT(svg_doc)) && (gl <= ttUSHORT(svg_doc + 2)))
2699 STBTT_DEF
int stbtt_GetGlyphSVG(
const stbtt_fontinfo *info,
int gl,
const char **svg)
2701 stbtt_uint8 *data = info->data;
2702 stbtt_uint8 *svg_doc;
2707 svg_doc = stbtt_FindSVGDoc(info, gl);
2708 if (svg_doc != NULL) {
2709 *svg = (
char *) data + info->svg + ttULONG(svg_doc + 4);
2710 return ttULONG(svg_doc + 8);
2716 STBTT_DEF
int stbtt_GetCodepointSVG(
const stbtt_fontinfo *info,
int unicode_codepoint,
const char **svg)
2718 return stbtt_GetGlyphSVG(info, stbtt_FindGlyphIndex(info, unicode_codepoint), svg);
2726 STBTT_DEF
void stbtt_GetGlyphBitmapBoxSubpixel(
const stbtt_fontinfo *font,
int glyph,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1)
2728 int x0=0,y0=0,x1,y1;
2729 if (!stbtt_GetGlyphBox(font, glyph, &x0,&y0,&x1,&y1)) {
2737 if (ix0) *ix0 = STBTT_ifloor( x0 * scale_x + shift_x);
2738 if (iy0) *iy0 = STBTT_ifloor(-y1 * scale_y + shift_y);
2739 if (ix1) *ix1 = STBTT_iceil ( x1 * scale_x + shift_x);
2740 if (iy1) *iy1 = STBTT_iceil (-y0 * scale_y + shift_y);
2744 STBTT_DEF
void stbtt_GetGlyphBitmapBox(
const stbtt_fontinfo *font,
int glyph,
float scale_x,
float scale_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1)
2746 stbtt_GetGlyphBitmapBoxSubpixel(font, glyph, scale_x, scale_y,0.0f,0.0f, ix0, iy0, ix1, iy1);
2749 STBTT_DEF
void stbtt_GetCodepointBitmapBoxSubpixel(
const stbtt_fontinfo *font,
int codepoint,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1)
2751 stbtt_GetGlyphBitmapBoxSubpixel(font, stbtt_FindGlyphIndex(font,codepoint), scale_x, scale_y,shift_x,shift_y, ix0,iy0,ix1,iy1);
2754 STBTT_DEF
void stbtt_GetCodepointBitmapBox(
const stbtt_fontinfo *font,
int codepoint,
float scale_x,
float scale_y,
int *ix0,
int *iy0,
int *ix1,
int *iy1)
2756 stbtt_GetCodepointBitmapBoxSubpixel(font, codepoint, scale_x, scale_y,0.0f,0.0f, ix0,iy0,ix1,iy1);
2763 typedef struct stbtt__hheap_chunk
2765 struct stbtt__hheap_chunk *next;
2766 } stbtt__hheap_chunk;
2768 typedef struct stbtt__hheap
2770 struct stbtt__hheap_chunk *head;
2772 int num_remaining_in_head_chunk;
2775 static void *stbtt__hheap_alloc(stbtt__hheap *hh,
size_t size,
void *userdata)
2777 if (hh->first_free) {
2778 void *p = hh->first_free;
2779 hh->first_free = * (
void **) p;
2782 if (hh->num_remaining_in_head_chunk == 0) {
2783 int count = (size < 32 ? 2000 : size < 128 ? 800 : 100);
2784 stbtt__hheap_chunk *c = (stbtt__hheap_chunk *) STBTT_malloc(
sizeof(stbtt__hheap_chunk) + size * count, userdata);
2789 hh->num_remaining_in_head_chunk = count;
2791 --hh->num_remaining_in_head_chunk;
2792 return (
char *) (hh->head) +
sizeof(stbtt__hheap_chunk) + size * hh->num_remaining_in_head_chunk;
2796 static void stbtt__hheap_free(stbtt__hheap *hh,
void *p)
2798 *(
void **) p = hh->first_free;
2802 static void stbtt__hheap_cleanup(stbtt__hheap *hh,
void *userdata)
2804 stbtt__hheap_chunk *c = hh->head;
2806 stbtt__hheap_chunk *n = c->next;
2807 STBTT_free(c, userdata);
2812 typedef struct stbtt__edge {
2818 typedef struct stbtt__active_edge
2820 struct stbtt__active_edge *next;
2821 #if STBTT_RASTERIZER_VERSION==1 2825 #elif STBTT_RASTERIZER_VERSION==2 2831 #error "Unrecognized value of STBTT_RASTERIZER_VERSION" 2833 } stbtt__active_edge;
2835 #if STBTT_RASTERIZER_VERSION == 1 2836 #define STBTT_FIXSHIFT 10 2837 #define STBTT_FIX (1 << STBTT_FIXSHIFT) 2838 #define STBTT_FIXMASK (STBTT_FIX-1) 2840 static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e,
int off_x,
float start_point,
void *userdata)
2842 stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh,
sizeof(*z), userdata);
2843 float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0);
2844 STBTT_assert(z != NULL);
2849 z->dx = -STBTT_ifloor(STBTT_FIX * -dxdy);
2851 z->dx = STBTT_ifloor(STBTT_FIX * dxdy);
2853 z->x = STBTT_ifloor(STBTT_FIX * e->x0 + z->dx * (start_point - e->y0));
2854 z->x -= off_x * STBTT_FIX;
2858 z->direction = e->invert ? 1 : -1;
2861 #elif STBTT_RASTERIZER_VERSION == 2 2862 static stbtt__active_edge *stbtt__new_active(stbtt__hheap *hh, stbtt__edge *e,
int off_x,
float start_point,
void *userdata)
2864 stbtt__active_edge *z = (stbtt__active_edge *) stbtt__hheap_alloc(hh,
sizeof(*z), userdata);
2865 float dxdy = (e->x1 - e->x0) / (e->y1 - e->y0);
2866 STBTT_assert(z != NULL);
2870 z->fdy = dxdy != 0.0f ? (1.0f/dxdy) : 0.0f;
2871 z->fx = e->x0 + dxdy * (start_point - e->y0);
2873 z->direction = e->invert ? 1.0f : -1.0f;
2880 #error "Unrecognized value of STBTT_RASTERIZER_VERSION" 2883 #if STBTT_RASTERIZER_VERSION == 1 2887 static void stbtt__fill_active_edges(
unsigned char *scanline,
int len, stbtt__active_edge *e,
int max_weight)
2895 x0 = e->x; w += e->direction;
2897 int x1 = e->x; w += e->direction;
2900 int i = x0 >> STBTT_FIXSHIFT;
2901 int j = x1 >> STBTT_FIXSHIFT;
2903 if (i < len && j >= 0) {
2906 scanline[i] = scanline[i] + (stbtt_uint8) ((x1 - x0) * max_weight >> STBTT_FIXSHIFT);
2909 scanline[i] = scanline[i] + (stbtt_uint8) (((STBTT_FIX - (x0 & STBTT_FIXMASK)) * max_weight) >> STBTT_FIXSHIFT);
2914 scanline[j] = scanline[j] + (stbtt_uint8) (((x1 & STBTT_FIXMASK) * max_weight) >> STBTT_FIXSHIFT);
2918 for (++i; i < j; ++i)
2919 scanline[i] = scanline[i] + (stbtt_uint8) max_weight;
2929 static void stbtt__rasterize_sorted_edges(
stbtt__bitmap *result, stbtt__edge *e,
int n,
int vsubsample,
int off_x,
int off_y,
void *userdata)
2931 stbtt__hheap hh = { 0, 0, 0 };
2932 stbtt__active_edge *active = NULL;
2934 int max_weight = (255 / vsubsample);
2936 unsigned char scanline_data[512], *scanline;
2938 if (result->w > 512)
2939 scanline = (
unsigned char *) STBTT_malloc(result->w, userdata);
2941 scanline = scanline_data;
2943 y = off_y * vsubsample;
2944 e[n].y0 = (off_y + result->h) * (
float) vsubsample + 1;
2946 while (j < result->h) {
2947 STBTT_memset(scanline, 0, result->w);
2948 for (s=0; s < vsubsample; ++s) {
2950 float scan_y = y + 0.5f;
2951 stbtt__active_edge **step = &active;
2956 stbtt__active_edge * z = *step;
2957 if (z->ey <= scan_y) {
2959 STBTT_assert(z->direction);
2961 stbtt__hheap_free(&hh, z);
2964 step = &((*step)->next);
2972 while (*step && (*step)->next) {
2973 if ((*step)->x > (*step)->next->x) {
2974 stbtt__active_edge *t = *step;
2975 stbtt__active_edge *q = t->next;
2982 step = &(*step)->next;
2984 if (!changed)
break;
2988 while (e->y0 <= scan_y) {
2989 if (e->y1 > scan_y) {
2990 stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y, userdata);
2995 else if (z->x < active->x) {
3001 stbtt__active_edge *p = active;
3002 while (p->next && p->next->x < z->x)
3015 stbtt__fill_active_edges(scanline, result->w, active, max_weight);
3019 STBTT_memcpy(result->pixels + j * result->stride, scanline, result->w);
3023 stbtt__hheap_cleanup(&hh, userdata);
3025 if (scanline != scanline_data)
3026 STBTT_free(scanline, userdata);
3029 #elif STBTT_RASTERIZER_VERSION == 2 3033 static void stbtt__handle_clipped_edge(
float *scanline,
int x, stbtt__active_edge *e,
float x0,
float y0,
float x1,
float y1)
3035 if (y0 == y1)
return;
3036 STBTT_assert(y0 < y1);
3037 STBTT_assert(e->sy <= e->ey);
3038 if (y0 > e->ey)
return;
3039 if (y1 < e->sy)
return;
3041 x0 += (x1-x0) * (e->sy - y0) / (y1-y0);
3045 x1 += (x1-x0) * (e->ey - y1) / (y1-y0);
3050 STBTT_assert(x1 <= x+1);
3052 STBTT_assert(x1 >= x);
3054 STBTT_assert(x1 <= x);
3056 STBTT_assert(x1 >= x+1);
3058 STBTT_assert(x1 >= x && x1 <= x+1);
3060 if (x0 <= x && x1 <= x)
3061 scanline[x] += e->direction * (y1-y0);
3062 else if (x0 >= x+1 && x1 >= x+1)
3065 STBTT_assert(x0 >= x && x0 <= x+1 && x1 >= x && x1 <= x+1);
3066 scanline[x] += e->direction * (y1-y0) * (1-((x0-x)+(x1-x))/2);
3070 static float stbtt__sized_trapezoid_area(
float height,
float top_width,
float bottom_width)
3072 STBTT_assert(top_width >= 0);
3073 STBTT_assert(bottom_width >= 0);
3074 return (top_width + bottom_width) / 2.0f * height;
3077 static float stbtt__position_trapezoid_area(
float height,
float tx0,
float tx1,
float bx0,
float bx1)
3079 return stbtt__sized_trapezoid_area(height, tx1 - tx0, bx1 - bx0);
3082 static float stbtt__sized_triangle_area(
float height,
float width)
3084 return height * width / 2;
3087 static void stbtt__fill_active_edges_new(
float *scanline,
float *scanline_fill,
int len, stbtt__active_edge *e,
float y_top)
3089 float y_bottom = y_top+1;
3095 STBTT_assert(e->ey >= y_top);
3101 stbtt__handle_clipped_edge(scanline,(
int) x0,e, x0,y_top, x0,y_bottom);
3102 stbtt__handle_clipped_edge(scanline_fill-1,(
int) x0+1,e, x0,y_top, x0,y_bottom);
3104 stbtt__handle_clipped_edge(scanline_fill-1,0,e, x0,y_top, x0,y_bottom);
3111 float x_top, x_bottom;
3114 STBTT_assert(e->sy <= y_bottom && e->ey >= y_top);
3119 if (e->sy > y_top) {
3120 x_top = x0 + dx * (e->sy - y_top);
3126 if (e->ey < y_bottom) {
3127 x_bottom = x0 + dx * (e->ey - y_top);
3134 if (x_top >= 0 && x_bottom >= 0 && x_top < len && x_bottom < len) {
3137 if ((
int) x_top == (int) x_bottom) {
3140 int x = (int) x_top;
3141 height = (sy1 - sy0) * e->direction;
3142 STBTT_assert(x >= 0 && x < len);
3143 scanline[x] += stbtt__position_trapezoid_area(height, x_top, x+1.0f, x_bottom, x+1.0f);
3144 scanline_fill[x] += height;
3147 float y_crossing, y_final, step, sign, area;
3149 if (x_top > x_bottom) {
3152 sy0 = y_bottom - (sy0 - y_top);
3153 sy1 = y_bottom - (sy1 - y_top);
3154 t = sy0, sy0 = sy1, sy1 = t;
3155 t = x_bottom, x_bottom = x_top, x_top = t;
3158 t = x0, x0 = xb, xb = t;
3160 STBTT_assert(dy >= 0);
3161 STBTT_assert(dx >= 0);
3164 x2 = (int) x_bottom;
3166 y_crossing = y_top + dy * (x1+1 - x0);
3169 y_final = y_top + dy * (x2 - x0);
3190 if (y_crossing > y_bottom)
3191 y_crossing = y_bottom;
3193 sign = e->direction;
3196 area = sign * (y_crossing-sy0);
3199 scanline[x1] += stbtt__sized_triangle_area(area, x1+1 - x_top);
3202 if (y_final > y_bottom) {
3203 int denom = (x2 - (x1+1));
3206 dy = (y_final - y_crossing ) / denom;
3220 step = sign * dy * 1;
3224 for (x = x1+1; x < x2; ++x) {
3225 scanline[x] += area + step/2;
3228 STBTT_assert(STBTT_fabs(area) <= 1.01f);
3229 STBTT_assert(sy1 > y_final-0.01f);
3233 scanline[x2] += area + sign * stbtt__position_trapezoid_area(sy1-y_final, (
float) x2, x2+1.0f, x_bottom, x2+1.0f);
3236 scanline_fill[x2] += sign * (sy1-sy0);
3247 for (x=0; x < len; ++x) {
3263 float x1 = (float) (x);
3264 float x2 = (float) (x+1);
3266 float y3 = y_bottom;
3271 float y1 = (x - x0) / dx + y_top;
3272 float y2 = (x+1 - x0) / dx + y_top;
3274 if (x0 < x1 && x3 > x2) {
3275 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
3276 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x2,y2);
3277 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
3278 }
else if (x3 < x1 && x0 > x2) {
3279 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
3280 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x1,y1);
3281 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
3282 }
else if (x0 < x1 && x3 > x1) {
3283 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
3284 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
3285 }
else if (x3 < x1 && x0 > x1) {
3286 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x1,y1);
3287 stbtt__handle_clipped_edge(scanline,x,e, x1,y1, x3,y3);
3288 }
else if (x0 < x2 && x3 > x2) {
3289 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
3290 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
3291 }
else if (x3 < x2 && x0 > x2) {
3292 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x2,y2);
3293 stbtt__handle_clipped_edge(scanline,x,e, x2,y2, x3,y3);
3295 stbtt__handle_clipped_edge(scanline,x,e, x0,y0, x3,y3);
3305 static void stbtt__rasterize_sorted_edges(
stbtt__bitmap *result, stbtt__edge *e,
int n,
int vsubsample,
int off_x,
int off_y,
void *userdata)
3307 stbtt__hheap hh = { 0, 0, 0 };
3308 stbtt__active_edge *active = NULL;
3310 float scanline_data[129], *scanline, *scanline2;
3312 STBTT__NOTUSED(vsubsample);
3315 scanline = (
float *) STBTT_malloc((result->w*2+1) *
sizeof(float), userdata);
3317 scanline = scanline_data;
3319 scanline2 = scanline + result->w;
3322 e[n].y0 = (float) (off_y + result->h) + 1;
3324 while (j < result->h) {
3326 float scan_y_top = y + 0.0f;
3327 float scan_y_bottom = y + 1.0f;
3328 stbtt__active_edge **step = &active;
3330 STBTT_memset(scanline , 0, result->w*
sizeof(scanline[0]));
3331 STBTT_memset(scanline2, 0, (result->w+1)*
sizeof(scanline[0]));
3336 stbtt__active_edge * z = *step;
3337 if (z->ey <= scan_y_top) {
3339 STBTT_assert(z->direction);
3341 stbtt__hheap_free(&hh, z);
3343 step = &((*step)->next);
3348 while (e->y0 <= scan_y_bottom) {
3349 if (e->y0 != e->y1) {
3350 stbtt__active_edge *z = stbtt__new_active(&hh, e, off_x, scan_y_top, userdata);
3352 if (j == 0 && off_y != 0) {
3353 if (z->ey < scan_y_top) {
3358 STBTT_assert(z->ey >= scan_y_top);
3369 stbtt__fill_active_edges_new(scanline, scanline2+1, result->w, active, scan_y_top);
3373 for (i=0; i < result->w; ++i) {
3376 sum += scanline2[i];
3377 k = scanline[i] + sum;
3378 k = (float) STBTT_fabs(k)*255 + 0.5f;
3380 if (m > 255) m = 255;
3381 result->pixels[j*result->stride + i] = (
unsigned char) m;
3387 stbtt__active_edge *z = *step;
3389 step = &((*step)->next);
3396 stbtt__hheap_cleanup(&hh, userdata);
3398 if (scanline != scanline_data)
3399 STBTT_free(scanline, userdata);
3402 #error "Unrecognized value of STBTT_RASTERIZER_VERSION" 3405 #define STBTT__COMPARE(a,b) ((a)->y0 < (b)->y0) 3407 static void stbtt__sort_edges_ins_sort(stbtt__edge *p,
int n)
3410 for (i=1; i < n; ++i) {
3411 stbtt__edge t = p[i], *a = &t;
3414 stbtt__edge *b = &p[j-1];
3415 int c = STBTT__COMPARE(a,b);
3425 static void stbtt__sort_edges_quicksort(stbtt__edge *p,
int n)
3430 int c01,c12,c,m,i,j;
3434 c01 = STBTT__COMPARE(&p[0],&p[m]);
3435 c12 = STBTT__COMPARE(&p[m],&p[n-1]);
3440 c = STBTT__COMPARE(&p[0],&p[n-1]);
3443 z = (c == c12) ? 0 : n-1;
3461 if (!STBTT__COMPARE(&p[i], &p[0]))
break;
3464 if (!STBTT__COMPARE(&p[0], &p[j]))
break;
3477 stbtt__sort_edges_quicksort(p,j);
3481 stbtt__sort_edges_quicksort(p+i, n-i);
3487 static void stbtt__sort_edges(stbtt__edge *p,
int n)
3489 stbtt__sort_edges_quicksort(p, n);
3490 stbtt__sort_edges_ins_sort(p, n);
3498 static void stbtt__rasterize(
stbtt__bitmap *result, stbtt__point *pts,
int *wcount,
int windings,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int off_x,
int off_y,
int invert,
void *userdata)
3500 float y_scale_inv = invert ? -scale_y : scale_y;
3503 #if STBTT_RASTERIZER_VERSION == 1 3504 int vsubsample = result->h < 8 ? 15 : 5;
3505 #elif STBTT_RASTERIZER_VERSION == 2 3508 #error "Unrecognized value of STBTT_RASTERIZER_VERSION" 3514 for (i=0; i < windings; ++i)
3517 e = (stbtt__edge *) STBTT_malloc(
sizeof(*e) * (n+1), userdata);
3522 for (i=0; i < windings; ++i) {
3523 stbtt__point *p = pts + m;
3526 for (k=0; k < wcount[i]; j=k++) {
3529 if (p[j].y == p[k].y)
3533 if (invert ? p[j].y > p[k].y : p[j].y < p[k].y) {
3537 e[n].x0 = p[a].x * scale_x + shift_x;
3538 e[n].y0 = (p[a].y * y_scale_inv + shift_y) * vsubsample;
3539 e[n].x1 = p[b].x * scale_x + shift_x;
3540 e[n].y1 = (p[b].y * y_scale_inv + shift_y) * vsubsample;
3547 stbtt__sort_edges(e, n);
3550 stbtt__rasterize_sorted_edges(result, e, n, vsubsample, off_x, off_y, userdata);
3552 STBTT_free(e, userdata);
3555 static void stbtt__add_point(stbtt__point *points,
int n,
float x,
float y)
3557 if (!points)
return;
3563 static int stbtt__tesselate_curve(stbtt__point *points,
int *num_points,
float x0,
float y0,
float x1,
float y1,
float x2,
float y2,
float objspace_flatness_squared,
int n)
3566 float mx = (x0 + 2*x1 + x2)/4;
3567 float my = (y0 + 2*y1 + y2)/4;
3569 float dx = (x0+x2)/2 - mx;
3570 float dy = (y0+y2)/2 - my;
3573 if (dx*dx+dy*dy > objspace_flatness_squared) {
3574 stbtt__tesselate_curve(points, num_points, x0,y0, (x0+x1)/2.0f,(y0+y1)/2.0f, mx,my, objspace_flatness_squared,n+1);
3575 stbtt__tesselate_curve(points, num_points, mx,my, (x1+x2)/2.0f,(y1+y2)/2.0f, x2,y2, objspace_flatness_squared,n+1);
3577 stbtt__add_point(points, *num_points,x2,y2);
3578 *num_points = *num_points+1;
3583 static void stbtt__tesselate_cubic(stbtt__point *points,
int *num_points,
float x0,
float y0,
float x1,
float y1,
float x2,
float y2,
float x3,
float y3,
float objspace_flatness_squared,
int n)
3594 float longlen = (float) (STBTT_sqrt(dx0*dx0+dy0*dy0)+STBTT_sqrt(dx1*dx1+dy1*dy1)+STBTT_sqrt(dx2*dx2+dy2*dy2));
3595 float shortlen = (float) STBTT_sqrt(dx*dx+dy*dy);
3596 float flatness_squared = longlen*longlen-shortlen*shortlen;
3601 if (flatness_squared > objspace_flatness_squared) {
3602 float x01 = (x0+x1)/2;
3603 float y01 = (y0+y1)/2;
3604 float x12 = (x1+x2)/2;
3605 float y12 = (y1+y2)/2;
3606 float x23 = (x2+x3)/2;
3607 float y23 = (y2+y3)/2;
3609 float xa = (x01+x12)/2;
3610 float ya = (y01+y12)/2;
3611 float xb = (x12+x23)/2;
3612 float yb = (y12+y23)/2;
3614 float mx = (xa+xb)/2;
3615 float my = (ya+yb)/2;
3617 stbtt__tesselate_cubic(points, num_points, x0,y0, x01,y01, xa,ya, mx,my, objspace_flatness_squared,n+1);
3618 stbtt__tesselate_cubic(points, num_points, mx,my, xb,yb, x23,y23, x3,y3, objspace_flatness_squared,n+1);
3620 stbtt__add_point(points, *num_points,x3,y3);
3621 *num_points = *num_points+1;
3626 static stbtt__point *stbtt_FlattenCurves(
stbtt_vertex *vertices,
int num_verts,
float objspace_flatness,
int **contour_lengths,
int *num_contours,
void *userdata)
3628 stbtt__point *points=0;
3631 float objspace_flatness_squared = objspace_flatness * objspace_flatness;
3632 int i,n=0,start=0, pass;
3635 for (i=0; i < num_verts; ++i)
3636 if (vertices[i].type == STBTT_vmove)
3640 if (n == 0)
return 0;
3642 *contour_lengths = (
int *) STBTT_malloc(
sizeof(**contour_lengths) * n, userdata);
3644 if (*contour_lengths == 0) {
3650 for (pass=0; pass < 2; ++pass) {
3653 points = (stbtt__point *) STBTT_malloc(num_points *
sizeof(points[0]), userdata);
3654 if (points == NULL)
goto error;
3658 for (i=0; i < num_verts; ++i) {
3659 switch (vertices[i].type) {
3663 (*contour_lengths)[n] = num_points - start;
3667 x = vertices[i].x, y = vertices[i].y;
3668 stbtt__add_point(points, num_points++, x,y);
3671 x = vertices[i].x, y = vertices[i].y;
3672 stbtt__add_point(points, num_points++, x, y);
3675 stbtt__tesselate_curve(points, &num_points, x,y,
3676 vertices[i].cx, vertices[i].cy,
3677 vertices[i].x, vertices[i].y,
3678 objspace_flatness_squared, 0);
3679 x = vertices[i].x, y = vertices[i].y;
3682 stbtt__tesselate_cubic(points, &num_points, x,y,
3683 vertices[i].cx, vertices[i].cy,
3684 vertices[i].cx1, vertices[i].cy1,
3685 vertices[i].x, vertices[i].y,
3686 objspace_flatness_squared, 0);
3687 x = vertices[i].x, y = vertices[i].y;
3691 (*contour_lengths)[n] = num_points - start;
3696 STBTT_free(points, userdata);
3697 STBTT_free(*contour_lengths, userdata);
3698 *contour_lengths = 0;
3703 STBTT_DEF
void stbtt_Rasterize(
stbtt__bitmap *result,
float flatness_in_pixels,
stbtt_vertex *vertices,
int num_verts,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int x_off,
int y_off,
int invert,
void *userdata)
3705 float scale = scale_x > scale_y ? scale_y : scale_x;
3706 int winding_count = 0;
3707 int *winding_lengths = NULL;
3708 stbtt__point *windings = stbtt_FlattenCurves(vertices, num_verts, flatness_in_pixels / scale, &winding_lengths, &winding_count, userdata);
3710 stbtt__rasterize(result, windings, winding_lengths, winding_count, scale_x, scale_y, shift_x, shift_y, x_off, y_off, invert, userdata);
3711 STBTT_free(winding_lengths, userdata);
3712 STBTT_free(windings, userdata);
3716 STBTT_DEF
void stbtt_FreeBitmap(
unsigned char *bitmap,
void *userdata)
3718 STBTT_free(bitmap, userdata);
3721 STBTT_DEF
unsigned char *stbtt_GetGlyphBitmapSubpixel(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int glyph,
int *width,
int *height,
int *xoff,
int *yoff)
3723 int ix0,iy0,ix1,iy1;
3726 int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices);
3728 if (scale_x == 0) scale_x = scale_y;
3731 STBTT_free(vertices, info->userdata);
3737 stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,&ix1,&iy1);
3740 gbm.w = (ix1 - ix0);
3741 gbm.h = (iy1 - iy0);
3744 if (width ) *width = gbm.w;
3745 if (height) *height = gbm.h;
3746 if (xoff ) *xoff = ix0;
3747 if (yoff ) *yoff = iy0;
3749 if (gbm.w && gbm.h) {
3750 gbm.pixels = (
unsigned char *) STBTT_malloc(gbm.w * gbm.h, info->userdata);
3754 stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0, iy0, 1, info->userdata);
3757 STBTT_free(vertices, info->userdata);
3761 STBTT_DEF
unsigned char *stbtt_GetGlyphBitmap(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
int glyph,
int *width,
int *height,
int *xoff,
int *yoff)
3763 return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y, 0.0f, 0.0f, glyph, width, height, xoff, yoff);
3766 STBTT_DEF
void stbtt_MakeGlyphBitmapSubpixel(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int glyph)
3770 int num_verts = stbtt_GetGlyphShape(info, glyph, &vertices);
3773 stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale_x, scale_y, shift_x, shift_y, &ix0,&iy0,0,0);
3774 gbm.pixels = output;
3777 gbm.stride = out_stride;
3780 stbtt_Rasterize(&gbm, 0.35f, vertices, num_verts, scale_x, scale_y, shift_x, shift_y, ix0,iy0, 1, info->userdata);
3782 STBTT_free(vertices, info->userdata);
3785 STBTT_DEF
void stbtt_MakeGlyphBitmap(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
int glyph)
3787 stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, glyph);
3790 STBTT_DEF
unsigned char *stbtt_GetCodepointBitmapSubpixel(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int codepoint,
int *width,
int *height,
int *xoff,
int *yoff)
3792 return stbtt_GetGlyphBitmapSubpixel(info, scale_x, scale_y,shift_x,shift_y, stbtt_FindGlyphIndex(info,codepoint), width,height,xoff,yoff);
3795 STBTT_DEF
void stbtt_MakeCodepointBitmapSubpixelPrefilter(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int oversample_x,
int oversample_y,
float *sub_x,
float *sub_y,
int codepoint)
3797 stbtt_MakeGlyphBitmapSubpixelPrefilter(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, oversample_x, oversample_y, sub_x, sub_y, stbtt_FindGlyphIndex(info,codepoint));
3800 STBTT_DEF
void stbtt_MakeCodepointBitmapSubpixel(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int codepoint)
3802 stbtt_MakeGlyphBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, shift_x, shift_y, stbtt_FindGlyphIndex(info,codepoint));
3805 STBTT_DEF
unsigned char *stbtt_GetCodepointBitmap(
const stbtt_fontinfo *info,
float scale_x,
float scale_y,
int codepoint,
int *width,
int *height,
int *xoff,
int *yoff)
3807 return stbtt_GetCodepointBitmapSubpixel(info, scale_x, scale_y, 0.0f,0.0f, codepoint, width,height,xoff,yoff);
3810 STBTT_DEF
void stbtt_MakeCodepointBitmap(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
int codepoint)
3812 stbtt_MakeCodepointBitmapSubpixel(info, output, out_w, out_h, out_stride, scale_x, scale_y, 0.0f,0.0f, codepoint);
3821 static int stbtt_BakeFontBitmap_internal(
unsigned char *data,
int offset,
3823 unsigned char *pixels,
int pw,
int ph,
3824 int first_char,
int num_chars,
3828 int x,y,bottom_y, i;
3831 if (!stbtt_InitFont(&f, data, offset))
3833 STBTT_memset(pixels, 0, pw*ph);
3837 scale = stbtt_ScaleForPixelHeight(&f, pixel_height);
3839 for (i=0; i < num_chars; ++i) {
3840 int advance, lsb, x0,y0,x1,y1,gw,gh;
3841 int g = stbtt_FindGlyphIndex(&f, first_char + i);
3842 stbtt_GetGlyphHMetrics(&f, g, &advance, &lsb);
3843 stbtt_GetGlyphBitmapBox(&f, g, scale,scale, &x0,&y0,&x1,&y1);
3846 if (x + gw + 1 >= pw)
3847 y = bottom_y, x = 1;
3848 if (y + gh + 1 >= ph)
3850 STBTT_assert(x+gw < pw);
3851 STBTT_assert(y+gh < ph);
3852 stbtt_MakeGlyphBitmap(&f, pixels+x+y*pw, gw,gh,pw, scale,scale, g);
3853 chardata[i].x0 = (stbtt_int16) x;
3854 chardata[i].y0 = (stbtt_int16) y;
3855 chardata[i].x1 = (stbtt_int16) (x + gw);
3856 chardata[i].y1 = (stbtt_int16) (y + gh);
3857 chardata[i].xadvance = scale * advance;
3858 chardata[i].xoff = (float) x0;
3859 chardata[i].yoff = (float) y0;
3861 if (y+gh+1 > bottom_y)
3867 STBTT_DEF
void stbtt_GetBakedQuad(
const stbtt_bakedchar *chardata,
int pw,
int ph,
int char_index,
float *xpos,
float *ypos,
stbtt_aligned_quad *q,
int opengl_fillrule)
3869 float d3d_bias = opengl_fillrule ? 0 : -0.5f;
3870 float ipw = 1.0f / pw, iph = 1.0f / ph;
3872 int round_x = STBTT_ifloor((*xpos + b->xoff) + 0.5f);
3873 int round_y = STBTT_ifloor((*ypos + b->yoff) + 0.5f);
3875 q->x0 = round_x + d3d_bias;
3876 q->y0 = round_y + d3d_bias;
3877 q->x1 = round_x + b->x1 - b->x0 + d3d_bias;
3878 q->y1 = round_y + b->y1 - b->y0 + d3d_bias;
3880 q->s0 = b->x0 * ipw;
3881 q->t0 = b->y0 * iph;
3882 q->s1 = b->x1 * ipw;
3883 q->t1 = b->y1 * iph;
3885 *xpos += b->xadvance;
3893 #ifndef STB_RECT_PACK_VERSION 3895 typedef int stbrp_coord;
3922 int id,w,h,was_packed;
3932 STBTT__NOTUSED(nodes);
3933 STBTT__NOTUSED(num_nodes);
3939 for (i=0; i < num_rects; ++i) {
3940 if (con->x + rects[i].w > con->width) {
3942 con->y = con->bottom_y;
3944 if (con->y + rects[i].h > con->height)
3946 rects[i].x = con->x;
3947 rects[i].y = con->y;
3948 rects[i].was_packed = 1;
3949 con->x += rects[i].w;
3950 if (con->y + rects[i].h > con->bottom_y)
3951 con->bottom_y = con->y + rects[i].h;
3953 for ( ; i < num_rects; ++i)
3954 rects[i].was_packed = 0;
3965 STBTT_DEF
int stbtt_PackBegin(
stbtt_pack_context *spc,
unsigned char *pixels,
int pw,
int ph,
int stride_in_bytes,
int padding,
void *alloc_context)
3968 int num_nodes = pw - padding;
3971 if (context == NULL || nodes == NULL) {
3972 if (context != NULL) STBTT_free(context, alloc_context);
3973 if (nodes != NULL) STBTT_free(nodes , alloc_context);
3977 spc->user_allocator_context = alloc_context;
3980 spc->pixels = pixels;
3981 spc->pack_info = context;
3983 spc->padding = padding;
3984 spc->stride_in_bytes = stride_in_bytes != 0 ? stride_in_bytes : pw;
3985 spc->h_oversample = 1;
3986 spc->v_oversample = 1;
3987 spc->skip_missing = 0;
3989 stbrp_init_target(context, pw-padding, ph-padding, nodes, num_nodes);
3992 STBTT_memset(pixels, 0, pw*ph);
3999 STBTT_free(spc->nodes , spc->user_allocator_context);
4000 STBTT_free(spc->pack_info, spc->user_allocator_context);
4003 STBTT_DEF
void stbtt_PackSetOversampling(
stbtt_pack_context *spc,
unsigned int h_oversample,
unsigned int v_oversample)
4005 STBTT_assert(h_oversample <= STBTT_MAX_OVERSAMPLE);
4006 STBTT_assert(v_oversample <= STBTT_MAX_OVERSAMPLE);
4007 if (h_oversample <= STBTT_MAX_OVERSAMPLE)
4008 spc->h_oversample = h_oversample;
4009 if (v_oversample <= STBTT_MAX_OVERSAMPLE)
4010 spc->v_oversample = v_oversample;
4015 spc->skip_missing = skip;
4018 #define STBTT__OVER_MASK (STBTT_MAX_OVERSAMPLE-1) 4020 static void stbtt__h_prefilter(
unsigned char *pixels,
int w,
int h,
int stride_in_bytes,
unsigned int kernel_width)
4022 unsigned char buffer[STBTT_MAX_OVERSAMPLE];
4023 int safe_w = w - kernel_width;
4025 STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE);
4026 for (j=0; j < h; ++j) {
4029 STBTT_memset(buffer, 0, kernel_width);
4034 switch (kernel_width) {
4036 for (i=0; i <= safe_w; ++i) {
4037 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
4038 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
4039 pixels[i] = (
unsigned char) (total / 2);
4043 for (i=0; i <= safe_w; ++i) {
4044 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
4045 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
4046 pixels[i] = (
unsigned char) (total / 3);
4050 for (i=0; i <= safe_w; ++i) {
4051 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
4052 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
4053 pixels[i] = (
unsigned char) (total / 4);
4057 for (i=0; i <= safe_w; ++i) {
4058 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
4059 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
4060 pixels[i] = (
unsigned char) (total / 5);
4064 for (i=0; i <= safe_w; ++i) {
4065 total += pixels[i] - buffer[i & STBTT__OVER_MASK];
4066 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i];
4067 pixels[i] = (
unsigned char) (total / kernel_width);
4072 for (; i < w; ++i) {
4073 STBTT_assert(pixels[i] == 0);
4074 total -= buffer[i & STBTT__OVER_MASK];
4075 pixels[i] = (
unsigned char) (total / kernel_width);
4078 pixels += stride_in_bytes;
4082 static void stbtt__v_prefilter(
unsigned char *pixels,
int w,
int h,
int stride_in_bytes,
unsigned int kernel_width)
4084 unsigned char buffer[STBTT_MAX_OVERSAMPLE];
4085 int safe_h = h - kernel_width;
4087 STBTT_memset(buffer, 0, STBTT_MAX_OVERSAMPLE);
4088 for (j=0; j < w; ++j) {
4091 STBTT_memset(buffer, 0, kernel_width);
4096 switch (kernel_width) {
4098 for (i=0; i <= safe_h; ++i) {
4099 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
4100 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
4101 pixels[i*stride_in_bytes] = (
unsigned char) (total / 2);
4105 for (i=0; i <= safe_h; ++i) {
4106 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
4107 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
4108 pixels[i*stride_in_bytes] = (
unsigned char) (total / 3);
4112 for (i=0; i <= safe_h; ++i) {
4113 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
4114 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
4115 pixels[i*stride_in_bytes] = (
unsigned char) (total / 4);
4119 for (i=0; i <= safe_h; ++i) {
4120 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
4121 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
4122 pixels[i*stride_in_bytes] = (
unsigned char) (total / 5);
4126 for (i=0; i <= safe_h; ++i) {
4127 total += pixels[i*stride_in_bytes] - buffer[i & STBTT__OVER_MASK];
4128 buffer[(i+kernel_width) & STBTT__OVER_MASK] = pixels[i*stride_in_bytes];
4129 pixels[i*stride_in_bytes] = (
unsigned char) (total / kernel_width);
4134 for (; i < h; ++i) {
4135 STBTT_assert(pixels[i*stride_in_bytes] == 0);
4136 total -= buffer[i & STBTT__OVER_MASK];
4137 pixels[i*stride_in_bytes] = (
unsigned char) (total / kernel_width);
4144 static float stbtt__oversample_shift(
int oversample)
4153 return (
float)-(oversample - 1) / (2.0f * (
float)oversample);
4160 int missing_glyph_added = 0;
4163 for (i=0; i < num_ranges; ++i) {
4164 float fh = ranges[i].font_size;
4165 float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh);
4166 ranges[i].h_oversample = (
unsigned char) spc->h_oversample;
4167 ranges[i].v_oversample = (
unsigned char) spc->v_oversample;
4168 for (j=0; j < ranges[i].num_chars; ++j) {
4170 int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j];
4171 int glyph = stbtt_FindGlyphIndex(info, codepoint);
4172 if (glyph == 0 && (spc->skip_missing || missing_glyph_added)) {
4173 rects[k].w = rects[k].h = 0;
4175 stbtt_GetGlyphBitmapBoxSubpixel(info,glyph,
4176 scale * spc->h_oversample,
4177 scale * spc->v_oversample,
4180 rects[k].w = (stbrp_coord) (x1-x0 + spc->padding + spc->h_oversample-1);
4181 rects[k].h = (stbrp_coord) (y1-y0 + spc->padding + spc->v_oversample-1);
4183 missing_glyph_added = 1;
4192 STBTT_DEF
void stbtt_MakeGlyphBitmapSubpixelPrefilter(
const stbtt_fontinfo *info,
unsigned char *output,
int out_w,
int out_h,
int out_stride,
float scale_x,
float scale_y,
float shift_x,
float shift_y,
int prefilter_x,
int prefilter_y,
float *sub_x,
float *sub_y,
int glyph)
4194 stbtt_MakeGlyphBitmapSubpixel(info,
4196 out_w - (prefilter_x - 1),
4197 out_h - (prefilter_y - 1),
4205 if (prefilter_x > 1)
4206 stbtt__h_prefilter(output, out_w, out_h, out_stride, prefilter_x);
4208 if (prefilter_y > 1)
4209 stbtt__v_prefilter(output, out_w, out_h, out_stride, prefilter_y);
4211 *sub_x = stbtt__oversample_shift(prefilter_x);
4212 *sub_y = stbtt__oversample_shift(prefilter_y);
4218 int i,j,k, missing_glyph = -1, return_value = 1;
4221 int old_h_over = spc->h_oversample;
4222 int old_v_over = spc->v_oversample;
4225 for (i=0; i < num_ranges; ++i) {
4226 float fh = ranges[i].font_size;
4227 float scale = fh > 0 ? stbtt_ScaleForPixelHeight(info, fh) : stbtt_ScaleForMappingEmToPixels(info, -fh);
4228 float recip_h,recip_v,sub_x,sub_y;
4229 spc->h_oversample = ranges[i].h_oversample;
4230 spc->v_oversample = ranges[i].v_oversample;
4231 recip_h = 1.0f / spc->h_oversample;
4232 recip_v = 1.0f / spc->v_oversample;
4233 sub_x = stbtt__oversample_shift(spc->h_oversample);
4234 sub_y = stbtt__oversample_shift(spc->v_oversample);
4235 for (j=0; j < ranges[i].num_chars; ++j) {
4237 if (r->was_packed && r->w != 0 && r->h != 0) {
4239 int advance, lsb, x0,y0,x1,y1;
4240 int codepoint = ranges[i].array_of_unicode_codepoints == NULL ? ranges[i].first_unicode_codepoint_in_range + j : ranges[i].array_of_unicode_codepoints[j];
4241 int glyph = stbtt_FindGlyphIndex(info, codepoint);
4242 stbrp_coord pad = (stbrp_coord) spc->padding;
4249 stbtt_GetGlyphHMetrics(info, glyph, &advance, &lsb);
4250 stbtt_GetGlyphBitmapBox(info, glyph,
4251 scale * spc->h_oversample,
4252 scale * spc->v_oversample,
4254 stbtt_MakeGlyphBitmapSubpixel(info,
4255 spc->pixels + r->x + r->y*spc->stride_in_bytes,
4256 r->w - spc->h_oversample+1,
4257 r->h - spc->v_oversample+1,
4258 spc->stride_in_bytes,
4259 scale * spc->h_oversample,
4260 scale * spc->v_oversample,
4264 if (spc->h_oversample > 1)
4265 stbtt__h_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes,
4266 r->w, r->h, spc->stride_in_bytes,
4269 if (spc->v_oversample > 1)
4270 stbtt__v_prefilter(spc->pixels + r->x + r->y*spc->stride_in_bytes,
4271 r->w, r->h, spc->stride_in_bytes,
4274 bc->x0 = (stbtt_int16) r->x;
4275 bc->y0 = (stbtt_int16) r->y;
4276 bc->x1 = (stbtt_int16) (r->x + r->w);
4277 bc->y1 = (stbtt_int16) (r->y + r->h);
4278 bc->xadvance = scale * advance;
4279 bc->xoff = (float) x0 * recip_h + sub_x;
4280 bc->yoff = (float) y0 * recip_v + sub_y;
4281 bc->xoff2 = (x0 + r->w) * recip_h + sub_x;
4282 bc->yoff2 = (y0 + r->h) * recip_v + sub_y;
4286 }
else if (spc->skip_missing) {
4288 }
else if (r->was_packed && r->w == 0 && r->h == 0 && missing_glyph >= 0) {
4289 ranges[i].chardata_for_range[j] = ranges[i].chardata_for_range[missing_glyph];
4299 spc->h_oversample = old_h_over;
4300 spc->v_oversample = old_v_over;
4302 return return_value;
4307 stbrp_pack_rects((
stbrp_context *) spc->pack_info, rects, num_rects);
4313 int i, j, n, return_value;
4318 for (i=0; i < num_ranges; ++i)
4319 for (j=0; j < ranges[i].num_chars; ++j)
4320 ranges[i].chardata_for_range[j].x0 =
4321 ranges[i].chardata_for_range[j].y0 =
4322 ranges[i].chardata_for_range[j].x1 =
4323 ranges[i].chardata_for_range[j].y1 = 0;
4326 for (i=0; i < num_ranges; ++i)
4327 n += ranges[i].num_chars;
4329 rects = (
stbrp_rect *) STBTT_malloc(
sizeof(*rects) * n, spc->user_allocator_context);
4333 info.userdata = spc->user_allocator_context;
4334 stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata,font_index));
4336 n = stbtt_PackFontRangesGatherRects(spc, &info, ranges, num_ranges, rects);
4338 stbtt_PackFontRangesPackRects(spc, rects, n);
4340 return_value = stbtt_PackFontRangesRenderIntoRects(spc, &info, ranges, num_ranges, rects);
4342 STBTT_free(rects, spc->user_allocator_context);
4343 return return_value;
4346 STBTT_DEF
int stbtt_PackFontRange(
stbtt_pack_context *spc,
const unsigned char *fontdata,
int font_index,
float font_size,
4347 int first_unicode_codepoint_in_range,
int num_chars_in_range,
stbtt_packedchar *chardata_for_range)
4350 range.first_unicode_codepoint_in_range = first_unicode_codepoint_in_range;
4351 range.array_of_unicode_codepoints = NULL;
4352 range.num_chars = num_chars_in_range;
4353 range.chardata_for_range = chardata_for_range;
4354 range.font_size = font_size;
4355 return stbtt_PackFontRanges(spc, fontdata, font_index, &range, 1);
4358 STBTT_DEF
void stbtt_GetScaledFontVMetrics(
const unsigned char *fontdata,
int index,
float size,
float *ascent,
float *descent,
float *lineGap)
4360 int i_ascent, i_descent, i_lineGap;
4363 stbtt_InitFont(&info, fontdata, stbtt_GetFontOffsetForIndex(fontdata, index));
4364 scale = size > 0 ? stbtt_ScaleForPixelHeight(&info, size) : stbtt_ScaleForMappingEmToPixels(&info, -size);
4365 stbtt_GetFontVMetrics(&info, &i_ascent, &i_descent, &i_lineGap);
4366 *ascent = (float) i_ascent * scale;
4367 *descent = (float) i_descent * scale;
4368 *lineGap = (float) i_lineGap * scale;
4371 STBTT_DEF
void stbtt_GetPackedQuad(
const stbtt_packedchar *chardata,
int pw,
int ph,
int char_index,
float *xpos,
float *ypos,
stbtt_aligned_quad *q,
int align_to_integer)
4373 float ipw = 1.0f / pw, iph = 1.0f / ph;
4376 if (align_to_integer) {
4377 float x = (float) STBTT_ifloor((*xpos + b->xoff) + 0.5f);
4378 float y = (float) STBTT_ifloor((*ypos + b->yoff) + 0.5f);
4381 q->x1 = x + b->xoff2 - b->xoff;
4382 q->y1 = y + b->yoff2 - b->yoff;
4384 q->x0 = *xpos + b->xoff;
4385 q->y0 = *ypos + b->yoff;
4386 q->x1 = *xpos + b->xoff2;
4387 q->y1 = *ypos + b->yoff2;
4390 q->s0 = b->x0 * ipw;
4391 q->t0 = b->y0 * iph;
4392 q->s1 = b->x1 * ipw;
4393 q->t1 = b->y1 * iph;
4395 *xpos += b->xadvance;
4403 #define STBTT_min(a,b) ((a) < (b) ? (a) : (b)) 4404 #define STBTT_max(a,b) ((a) < (b) ? (b) : (a)) 4406 static int stbtt__ray_intersect_bezier(
float orig[2],
float ray[2],
float q0[2],
float q1[2],
float q2[2],
float hits[2][2])
4408 float q0perp = q0[1]*ray[0] - q0[0]*ray[1];
4409 float q1perp = q1[1]*ray[0] - q1[0]*ray[1];
4410 float q2perp = q2[1]*ray[0] - q2[0]*ray[1];
4411 float roperp = orig[1]*ray[0] - orig[0]*ray[1];
4413 float a = q0perp - 2*q1perp + q2perp;
4414 float b = q1perp - q0perp;
4415 float c = q0perp - roperp;
4417 float s0 = 0., s1 = 0.;
4421 float discr = b*b - a*c;
4423 float rcpna = -1 / a;
4424 float d = (float) STBTT_sqrt(discr);
4427 if (s0 >= 0.0 && s0 <= 1.0)
4429 if (d > 0.0 && s1 >= 0.0 && s1 <= 1.0) {
4430 if (num_s == 0) s0 = s1;
4438 if (s0 >= 0.0 && s0 <= 1.0)
4445 float rcp_len2 = 1 / (ray[0]*ray[0] + ray[1]*ray[1]);
4446 float rayn_x = ray[0] * rcp_len2, rayn_y = ray[1] * rcp_len2;
4448 float q0d = q0[0]*rayn_x + q0[1]*rayn_y;
4449 float q1d = q1[0]*rayn_x + q1[1]*rayn_y;
4450 float q2d = q2[0]*rayn_x + q2[1]*rayn_y;
4451 float rod = orig[0]*rayn_x + orig[1]*rayn_y;
4453 float q10d = q1d - q0d;
4454 float q20d = q2d - q0d;
4455 float q0rd = q0d - rod;
4457 hits[0][0] = q0rd + s0*(2.0f - 2.0f*s0)*q10d + s0*s0*q20d;
4458 hits[0][1] = a*s0+b;
4461 hits[1][0] = q0rd + s1*(2.0f - 2.0f*s1)*q10d + s1*s1*q20d;
4462 hits[1][1] = a*s1+b;
4470 static int equal(
float *a,
float *b)
4472 return (a[0] == b[0] && a[1] == b[1]);
4475 static int stbtt__compute_crossings_x(
float x,
float y,
int nverts,
stbtt_vertex *verts)
4478 float orig[2], ray[2] = { 1, 0 };
4483 y_frac = (float) STBTT_fmod(y, 1.0f);
4486 else if (y_frac > 0.99f)
4493 for (i=0; i < nverts; ++i) {
4494 if (verts[i].type == STBTT_vline) {
4495 int x0 = (int) verts[i-1].x, y0 = (
int) verts[i-1].y;
4496 int x1 = (int) verts[i ].x, y1 = (
int) verts[i ].y;
4497 if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) {
4498 float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0;
4500 winding += (y0 < y1) ? 1 : -1;
4503 if (verts[i].type == STBTT_vcurve) {
4504 int x0 = (int) verts[i-1].x , y0 = (
int) verts[i-1].y ;
4505 int x1 = (int) verts[i ].cx, y1 = (
int) verts[i ].cy;
4506 int x2 = (int) verts[i ].x , y2 = (
int) verts[i ].y ;
4507 int ax = STBTT_min(x0,STBTT_min(x1,x2)), ay = STBTT_min(y0,STBTT_min(y1,y2));
4508 int by = STBTT_max(y0,STBTT_max(y1,y2));
4509 if (y > ay && y < by && x > ax) {
4510 float q0[2],q1[2],q2[2];
4518 if (equal(q0,q1) || equal(q1,q2)) {
4519 x0 = (int)verts[i-1].x;
4520 y0 = (int)verts[i-1].y;
4521 x1 = (int)verts[i ].x;
4522 y1 = (int)verts[i ].y;
4523 if (y > STBTT_min(y0,y1) && y < STBTT_max(y0,y1) && x > STBTT_min(x0,x1)) {
4524 float x_inter = (y - y0) / (y1 - y0) * (x1-x0) + x0;
4526 winding += (y0 < y1) ? 1 : -1;
4529 int num_hits = stbtt__ray_intersect_bezier(orig, ray, q0, q1, q2, hits);
4532 winding += (hits[0][1] < 0 ? -1 : 1);
4535 winding += (hits[1][1] < 0 ? -1 : 1);
4543 static float stbtt__cuberoot(
float x )
4546 return -(float) STBTT_pow(-x,1.0f/3.0f);
4548 return (
float) STBTT_pow( x,1.0f/3.0f);
4552 static int stbtt__solve_cubic(
float a,
float b,
float c,
float* r)
4555 float p = b - a*a / 3;
4556 float q = a * (2*a*a - 9*b) / 27 + c;
4558 float d = q*q + 4*p3 / 27;
4560 float z = (float) STBTT_sqrt(d);
4561 float u = (-q + z) / 2;
4562 float v = (-q - z) / 2;
4563 u = stbtt__cuberoot(u);
4564 v = stbtt__cuberoot(v);
4568 float u = (float) STBTT_sqrt(-p/3);
4569 float v = (float) STBTT_acos(-STBTT_sqrt(-27/p3) * q / 2) / 3;
4570 float m = (float) STBTT_cos(v);
4571 float n = (float) STBTT_cos(v-3.141592/2)*1.732050808f;
4572 r[0] = s + u * 2 * m;
4573 r[1] = s - u * (m + n);
4574 r[2] = s - u * (m - n);
4583 STBTT_DEF
unsigned char * stbtt_GetGlyphSDF(
const stbtt_fontinfo *info,
float scale,
int glyph,
int padding,
unsigned char onedge_value,
float pixel_dist_scale,
int *width,
int *height,
int *xoff,
int *yoff)
4586 int ix0,iy0,ix1,iy1;
4588 unsigned char *data;
4590 if (scale == 0)
return NULL;
4592 stbtt_GetGlyphBitmapBoxSubpixel(info, glyph, scale, scale, 0.0f,0.0f, &ix0,&iy0,&ix1,&iy1);
4595 if (ix0 == ix1 || iy0 == iy1)
4606 if (width ) *width = w;
4607 if (height) *height = h;
4608 if (xoff ) *xoff = ix0;
4609 if (yoff ) *yoff = iy0;
4618 int num_verts = stbtt_GetGlyphShape(info, glyph, &verts);
4619 data = (
unsigned char *) STBTT_malloc(w * h, info->userdata);
4620 precompute = (
float *) STBTT_malloc(num_verts *
sizeof(
float), info->userdata);
4622 for (i=0,j=num_verts-1; i < num_verts; j=i++) {
4623 if (verts[i].type == STBTT_vline) {
4624 float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y;
4625 float x1 = verts[j].x*scale_x, y1 = verts[j].y*scale_y;
4626 float dist = (float) STBTT_sqrt((x1-x0)*(x1-x0) + (y1-y0)*(y1-y0));
4627 precompute[i] = (dist == 0) ? 0.0f : 1.0f / dist;
4628 }
else if (verts[i].type == STBTT_vcurve) {
4629 float x2 = verts[j].x *scale_x, y2 = verts[j].y *scale_y;
4630 float x1 = verts[i].cx*scale_x, y1 = verts[i].cy*scale_y;
4631 float x0 = verts[i].x *scale_x, y0 = verts[i].y *scale_y;
4632 float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2;
4633 float len2 = bx*bx + by*by;
4635 precompute[i] = 1.0f / (bx*bx + by*by);
4637 precompute[i] = 0.0f;
4639 precompute[i] = 0.0f;
4642 for (y=iy0; y < iy1; ++y) {
4643 for (x=ix0; x < ix1; ++x) {
4645 float min_dist = 999999.0f;
4646 float sx = (float) x + 0.5f;
4647 float sy = (float) y + 0.5f;
4648 float x_gspace = (sx / scale_x);
4649 float y_gspace = (sy / scale_y);
4651 int winding = stbtt__compute_crossings_x(x_gspace, y_gspace, num_verts, verts);
4653 for (i=0; i < num_verts; ++i) {
4654 float x0 = verts[i].x*scale_x, y0 = verts[i].y*scale_y;
4656 if (verts[i].type == STBTT_vline && precompute[i] != 0.0f) {
4657 float x1 = verts[i-1].x*scale_x, y1 = verts[i-1].y*scale_y;
4659 float dist,dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy);
4660 if (dist2 < min_dist*min_dist)
4661 min_dist = (float) STBTT_sqrt(dist2);
4666 dist = (float) STBTT_fabs((x1-x0)*(y0-sy) - (y1-y0)*(x0-sx)) * precompute[i];
4667 STBTT_assert(i != 0);
4668 if (dist < min_dist) {
4672 float dx = x1-x0, dy = y1-y0;
4673 float px = x0-sx, py = y0-sy;
4676 float t = -(px*dx + py*dy) / (dx*dx + dy*dy);
4677 if (t >= 0.0f && t <= 1.0f)
4680 }
else if (verts[i].type == STBTT_vcurve) {
4681 float x2 = verts[i-1].x *scale_x, y2 = verts[i-1].y *scale_y;
4682 float x1 = verts[i ].cx*scale_x, y1 = verts[i ].cy*scale_y;
4683 float box_x0 = STBTT_min(STBTT_min(x0,x1),x2);
4684 float box_y0 = STBTT_min(STBTT_min(y0,y1),y2);
4685 float box_x1 = STBTT_max(STBTT_max(x0,x1),x2);
4686 float box_y1 = STBTT_max(STBTT_max(y0,y1),y2);
4688 if (sx > box_x0-min_dist && sx < box_x1+min_dist && sy > box_y0-min_dist && sy < box_y1+min_dist) {
4690 float ax = x1-x0, ay = y1-y0;
4691 float bx = x0 - 2*x1 + x2, by = y0 - 2*y1 + y2;
4692 float mx = x0 - sx, my = y0 - sy;
4693 float res[3] = {0.f,0.f,0.f};
4694 float px,py,t,it,dist2;
4695 float a_inv = precompute[i];
4697 float a = 3*(ax*bx + ay*by);
4698 float b = 2*(ax*ax + ay*ay) + (mx*bx+my*by);
4699 float c = mx*ax+my*ay;
4705 float discriminant = b*b - 4*a*c;
4706 if (discriminant < 0)
4709 float root = (float) STBTT_sqrt(discriminant);
4710 res[0] = (-b - root)/(2*a);
4711 res[1] = (-b + root)/(2*a);
4716 float b = 3*(ax*bx + ay*by) * a_inv;
4717 float c = (2*(ax*ax + ay*ay) + (mx*bx+my*by)) * a_inv;
4718 float d = (mx*ax+my*ay) * a_inv;
4719 num = stbtt__solve_cubic(b, c, d, res);
4721 dist2 = (x0-sx)*(x0-sx) + (y0-sy)*(y0-sy);
4722 if (dist2 < min_dist*min_dist)
4723 min_dist = (float) STBTT_sqrt(dist2);
4725 if (num >= 1 && res[0] >= 0.0f && res[0] <= 1.0f) {
4726 t = res[0], it = 1.0f - t;
4727 px = it*it*x0 + 2*t*it*x1 + t*t*x2;
4728 py = it*it*y0 + 2*t*it*y1 + t*t*y2;
4729 dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
4730 if (dist2 < min_dist * min_dist)
4731 min_dist = (float) STBTT_sqrt(dist2);
4733 if (num >= 2 && res[1] >= 0.0f && res[1] <= 1.0f) {
4734 t = res[1], it = 1.0f - t;
4735 px = it*it*x0 + 2*t*it*x1 + t*t*x2;
4736 py = it*it*y0 + 2*t*it*y1 + t*t*y2;
4737 dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
4738 if (dist2 < min_dist * min_dist)
4739 min_dist = (float) STBTT_sqrt(dist2);
4741 if (num >= 3 && res[2] >= 0.0f && res[2] <= 1.0f) {
4742 t = res[2], it = 1.0f - t;
4743 px = it*it*x0 + 2*t*it*x1 + t*t*x2;
4744 py = it*it*y0 + 2*t*it*y1 + t*t*y2;
4745 dist2 = (px-sx)*(px-sx) + (py-sy)*(py-sy);
4746 if (dist2 < min_dist * min_dist)
4747 min_dist = (float) STBTT_sqrt(dist2);
4753 min_dist = -min_dist;
4754 val = onedge_value + pixel_dist_scale * min_dist;
4759 data[(y-iy0)*w+(x-ix0)] = (
unsigned char) val;
4762 STBTT_free(precompute, info->userdata);
4763 STBTT_free(verts, info->userdata);
4768 STBTT_DEF
unsigned char * stbtt_GetCodepointSDF(
const stbtt_fontinfo *info,
float scale,
int codepoint,
int padding,
unsigned char onedge_value,
float pixel_dist_scale,
int *width,
int *height,
int *xoff,
int *yoff)
4770 return stbtt_GetGlyphSDF(info, scale, stbtt_FindGlyphIndex(info, codepoint), padding, onedge_value, pixel_dist_scale, width, height, xoff, yoff);
4773 STBTT_DEF
void stbtt_FreeSDF(
unsigned char *bitmap,
void *userdata)
4775 STBTT_free(bitmap, userdata);
4784 static stbtt_int32 stbtt__CompareUTF8toUTF16_bigendian_prefix(stbtt_uint8 *s1, stbtt_int32 len1, stbtt_uint8 *s2, stbtt_int32 len2)
4790 stbtt_uint16 ch = s2[0]*256 + s2[1];
4792 if (i >= len1)
return -1;
4793 if (s1[i++] != ch)
return -1;
4794 }
else if (ch < 0x800) {
4795 if (i+1 >= len1)
return -1;
4796 if (s1[i++] != 0xc0 + (ch >> 6))
return -1;
4797 if (s1[i++] != 0x80 + (ch & 0x3f))
return -1;
4798 }
else if (ch >= 0xd800 && ch < 0xdc00) {
4800 stbtt_uint16 ch2 = s2[2]*256 + s2[3];
4801 if (i+3 >= len1)
return -1;
4802 c = ((ch - 0xd800) << 10) + (ch2 - 0xdc00) + 0x10000;
4803 if (s1[i++] != 0xf0 + (c >> 18))
return -1;
4804 if (s1[i++] != 0x80 + ((c >> 12) & 0x3f))
return -1;
4805 if (s1[i++] != 0x80 + ((c >> 6) & 0x3f))
return -1;
4806 if (s1[i++] != 0x80 + ((c ) & 0x3f))
return -1;
4809 }
else if (ch >= 0xdc00 && ch < 0xe000) {
4812 if (i+2 >= len1)
return -1;
4813 if (s1[i++] != 0xe0 + (ch >> 12))
return -1;
4814 if (s1[i++] != 0x80 + ((ch >> 6) & 0x3f))
return -1;
4815 if (s1[i++] != 0x80 + ((ch ) & 0x3f))
return -1;
4823 static int stbtt_CompareUTF8toUTF16_bigendian_internal(
char *s1,
int len1,
char *s2,
int len2)
4825 return len1 == stbtt__CompareUTF8toUTF16_bigendian_prefix((stbtt_uint8*) s1, len1, (stbtt_uint8*) s2, len2);
4830 STBTT_DEF
const char *stbtt_GetFontNameString(
const stbtt_fontinfo *font,
int *length,
int platformID,
int encodingID,
int languageID,
int nameID)
4832 stbtt_int32 i,count,stringOffset;
4833 stbtt_uint8 *fc = font->data;
4834 stbtt_uint32 offset = font->fontstart;
4835 stbtt_uint32 nm = stbtt__find_table(fc, offset,
"name");
4836 if (!nm)
return NULL;
4838 count = ttUSHORT(fc+nm+2);
4839 stringOffset = nm + ttUSHORT(fc+nm+4);
4840 for (i=0; i < count; ++i) {
4841 stbtt_uint32 loc = nm + 6 + 12 * i;
4842 if (platformID == ttUSHORT(fc+loc+0) && encodingID == ttUSHORT(fc+loc+2)
4843 && languageID == ttUSHORT(fc+loc+4) && nameID == ttUSHORT(fc+loc+6)) {
4844 *length = ttUSHORT(fc+loc+8);
4845 return (
const char *) (fc+stringOffset+ttUSHORT(fc+loc+10));
4851 static int stbtt__matchpair(stbtt_uint8 *fc, stbtt_uint32 nm, stbtt_uint8 *name, stbtt_int32 nlen, stbtt_int32 target_id, stbtt_int32 next_id)
4854 stbtt_int32 count = ttUSHORT(fc+nm+2);
4855 stbtt_int32 stringOffset = nm + ttUSHORT(fc+nm+4);
4857 for (i=0; i < count; ++i) {
4858 stbtt_uint32 loc = nm + 6 + 12 * i;
4859 stbtt_int32
id = ttUSHORT(fc+loc+6);
4860 if (
id == target_id) {
4862 stbtt_int32 platform = ttUSHORT(fc+loc+0), encoding = ttUSHORT(fc+loc+2), language = ttUSHORT(fc+loc+4);
4865 if (platform == 0 || (platform == 3 && encoding == 1) || (platform == 3 && encoding == 10)) {
4866 stbtt_int32 slen = ttUSHORT(fc+loc+8);
4867 stbtt_int32 off = ttUSHORT(fc+loc+10);
4870 stbtt_int32 matchlen = stbtt__CompareUTF8toUTF16_bigendian_prefix(name, nlen, fc+stringOffset+off,slen);
4871 if (matchlen >= 0) {
4873 if (i+1 < count && ttUSHORT(fc+loc+12+6) == next_id && ttUSHORT(fc+loc+12) == platform && ttUSHORT(fc+loc+12+2) == encoding && ttUSHORT(fc+loc+12+4) == language) {
4874 slen = ttUSHORT(fc+loc+12+8);
4875 off = ttUSHORT(fc+loc+12+10);
4877 if (matchlen == nlen)
4879 }
else if (matchlen < nlen && name[matchlen] ==
' ') {
4881 if (stbtt_CompareUTF8toUTF16_bigendian_internal((
char*) (name+matchlen), nlen-matchlen, (
char*)(fc+stringOffset+off),slen))
4886 if (matchlen == nlen)
4898 static int stbtt__matches(stbtt_uint8 *fc, stbtt_uint32 offset, stbtt_uint8 *name, stbtt_int32 flags)
4900 stbtt_int32 nlen = (stbtt_int32) STBTT_strlen((
char *) name);
4902 if (!stbtt__isfont(fc+offset))
return 0;
4906 hd = stbtt__find_table(fc, offset,
"head");
4907 if ((ttUSHORT(fc+hd+44) & 7) != (flags & 7))
return 0;
4910 nm = stbtt__find_table(fc, offset,
"name");
4915 if (stbtt__matchpair(fc, nm, name, nlen, 16, -1))
return 1;
4916 if (stbtt__matchpair(fc, nm, name, nlen, 1, -1))
return 1;
4917 if (stbtt__matchpair(fc, nm, name, nlen, 3, -1))
return 1;
4919 if (stbtt__matchpair(fc, nm, name, nlen, 16, 17))
return 1;
4920 if (stbtt__matchpair(fc, nm, name, nlen, 1, 2))
return 1;
4921 if (stbtt__matchpair(fc, nm, name, nlen, 3, -1))
return 1;
4927 static int stbtt_FindMatchingFont_internal(
unsigned char *font_collection,
char *name_utf8, stbtt_int32 flags)
4931 stbtt_int32 off = stbtt_GetFontOffsetForIndex(font_collection, i);
4932 if (off < 0)
return off;
4933 if (stbtt__matches((stbtt_uint8 *) font_collection, off, (stbtt_uint8*) name_utf8, flags))
4938 #if defined(__GNUC__) || defined(__clang__) 4939 #pragma GCC diagnostic push 4940 #pragma GCC diagnostic ignored "-Wcast-qual" 4943 STBTT_DEF
int stbtt_BakeFontBitmap(
const unsigned char *data,
int offset,
4944 float pixel_height,
unsigned char *pixels,
int pw,
int ph,
4947 return stbtt_BakeFontBitmap_internal((
unsigned char *) data, offset, pixel_height, pixels, pw, ph, first_char, num_chars, chardata);
4950 STBTT_DEF
int stbtt_GetFontOffsetForIndex(
const unsigned char *data,
int index)
4952 return stbtt_GetFontOffsetForIndex_internal((
unsigned char *) data, index);
4955 STBTT_DEF
int stbtt_GetNumberOfFonts(
const unsigned char *data)
4957 return stbtt_GetNumberOfFonts_internal((
unsigned char *) data);
4960 STBTT_DEF
int stbtt_InitFont(
stbtt_fontinfo *info,
const unsigned char *data,
int offset)
4962 return stbtt_InitFont_internal(info, (
unsigned char *) data, offset);
4965 STBTT_DEF
int stbtt_FindMatchingFont(
const unsigned char *fontdata,
const char *name,
int flags)
4967 return stbtt_FindMatchingFont_internal((
unsigned char *) fontdata, (
char *) name, flags);
4970 STBTT_DEF
int stbtt_CompareUTF8toUTF16_bigendian(
const char *s1,
int len1,
const char *s2,
int len2)
4972 return stbtt_CompareUTF8toUTF16_bigendian_internal((
char *) s1, len1, (
char *) s2, len2);
4975 #if defined(__GNUC__) || defined(__clang__) 4976 #pragma GCC diagnostic pop 4979 #endif // STB_TRUETYPE_IMPLEMENTATION Definition: imstb_truetype.h:532
Definition: imstb_rectpack.h:119
Definition: imstb_rectpack.h:179
Definition: imstb_truetype.h:548
Definition: imstb_truetype.h:809
Definition: imstb_truetype.h:624
Graphics::Surface * scale(const Graphics::Surface &srcImage, int xSize, int ySize)
Definition: imstb_truetype.h:683
Definition: imstb_rectpack.h:185
Definition: imstb_truetype.h:580
Definition: imstb_truetype.h:518
void NORETURN_PRE error(MSVC_PRINTF const char *s,...) GCC_PRINTF(1
Definition: imstb_truetype.h:718
Definition: imstb_truetype.h:840
Definition: imstb_truetype.h:929