コード例 #1
0
ファイル: TextConverter.cs プロジェクト: whztt07/DeltaEngine
		public TextConverter(Dictionary<char, Glyph> glyphDictionary, int pixelLineHeight)
		{
			this.glyphDictionary = glyphDictionary;
			wrapper = new TextWrapper(glyphDictionary, FallbackCharForUnsupportedCharacters,
				pixelLineHeight);
			MaxTextPixelSize = Size.Zero;
			glyphs = new List<GlyphDrawData>();
		}