Zou Wei
Zou Wei
`GlyphLayout.MeasureString` works as expected in my GUI framework. I'll test 2) and 3) later. I'm working on finishing the Android demo of Typography.
Just added two features that should also be implemented: 6. font family Currently Typography needs font file path, but for a complete font library we should be able to find...
Hi, @prepare Any progress on layouting multiple lines inside a rectangle?
I think, for basic text layouting, you can refer to [stb](https://github.com/nothings/stb), especially, [stb_rect_pack](https://github.com/nothings/stb/blob/master/stb_rect_pack.h). __stb_rect_pack__ has been used in many UI projects to layout glyphs. And why not just start from...
>What font name do you use in (1) ? Segoe UI 
Any progress on (1)? I'm going to implement layouting multiple lines inside a rectangle, based on current `Typography.TextLayout.GlyphLayout`, _quickly and dirtyly_. But I don't know much about typeface/glyph properties, such...
My dirty implementation of multiple line text-layout:  Only 1. **Positon and size of each layout glyph**: `glyphPlans` 2. **height of a line**: `lineHeight = (this.CurrentTypeFace.Ascender - this.CurrentTypeFace.Descender + this.CurrentTypeFace.LineGap)*scale;`...
Hi @prepare For some reason, I gave up the exam. So I'm back! It seems you have make a lot progress on text layout functions, right?
@prepare Having some problem when loading [the noto font](https://www.google.com/get/noto/), tried `NotoSans-Regular.ttf`, I'm going to update the old Typography used in my project. Is the master branch of Typography stable enough...
Hi @prepare It seems `GlyphPlanList` and related classes have changed a bit. Are there any important changes? For example, when should I apply the scale (`TypeFace.CalculateScaleToPixelFromPointSize`)? My app failed to...