C# 클래스 ISE.FTGlyphOffset

Glyph offset information for advanced rendering and/or conversions.
파일 보기 프로젝트 열기: colgreen/box2dx 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
advance FT_Vector
height int
left int
linearHoriAdvance long
linearVertAdvance long
lsb_delta long
rsb_delta long
top int
width int

프로퍼티 상세

advance 공개적으로 프로퍼티

This is the transformed advance width for the glyph.
public FT_Vector advance
리턴 FT_Vector

height 공개적으로 프로퍼티

height of the Glyph, in pixels. Represents the number of scanlines
public int height
리턴 int

left 공개적으로 프로퍼티

For Bitmap-generated fonts, this is the left-bearing expressed in integer pixels
public int left
리턴 int

linearHoriAdvance 공개적으로 프로퍼티

The advance width of the unhinted glyph. Its value is expressed in 16.16 fractional pixels, unless FT_LOAD_LINEAR_DESIGN is set when loading the glyph. This field can be important to perform correct WYSIWYG layout. Only relevant for outline glyphs.
public long linearHoriAdvance
리턴 long

linearVertAdvance 공개적으로 프로퍼티

The advance height of the unhinted glyph. Its value is expressed in 16.16 fractional pixels, unless FT_LOAD_LINEAR_DESIGN is set when loading the glyph. This field can be important to perform correct WYSIWYG layout. Only relevant for outline glyphs.
public long linearVertAdvance
리턴 long

lsb_delta 공개적으로 프로퍼티

The difference between hinted and unhinted left side bearing while autohinting is active. 0 otherwise.
public long lsb_delta
리턴 long

rsb_delta 공개적으로 프로퍼티

The difference between hinted and unhinted right side bearing while autohinting is active. 0 otherwise.
public long rsb_delta
리턴 long

top 공개적으로 프로퍼티

For Bitmap-generated fonts, this is the top-bearing expressed in integer pixels. This is the distance from the baseline to the topmost Glyph scanline, upwards Y being positive.
public int top
리턴 int

width 공개적으로 프로퍼티

Width of the Glyph, in pixels.
public int width
리턴 int