Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 84eb65b

Browse filesBrowse files
committed
Fix rendering of composite glyphs in Type 3 conversion (particularly
as evidenced in the Eunjin.ttf Korean font) Thanks Jae-Joon Lee for finding this! svn path=/branches/v0_91_maint/; revision=5283
1 parent d5579d9 commit 84eb65b
Copy full SHA for 84eb65b

File tree

Expand file treeCollapse file tree

2 files changed

+6
-2
lines changed
Filter options
Expand file treeCollapse file tree

2 files changed

+6
-2
lines changed

‎CHANGELOG

Copy file name to clipboardExpand all lines: CHANGELOG
+4Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2008-05-28 Fix rendering of composite glyphs in Type 3 conversion
2+
(particularly as evidenced in the Eunjin.ttf Korean font)
3+
Thanks Jae-Joon Lee for finding this!
4+
15
2008-05-21 Fix segfault in TkAgg backend - MGD
26

37
2008-05-21 Fix a "local variable unreferenced" bug in plotfile - MM

‎ttconv/pprdrv_tt2.cpp

Copy file name to clipboardExpand all lines: ttconv/pprdrv_tt2.cpp
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -531,8 +531,8 @@ void GlyphToType3::do_composite(TTStreamWriter& stream, struct TTFONT *font, BYT
531531
}
532532
else /* The tt spec. does not clearly indicate */
533533
{ /* whether these values are signed or not. */
534-
arg1 = *(glyph++);
535-
arg2 = *(glyph++);
534+
arg1 = *(signed char *)(glyph++);
535+
arg2 = *(signed char *)(glyph++);
536536
}
537537

538538
if(flags & WE_HAVE_A_SCALE)

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.