Beispiel #1
0
        public static BitFontSet FromStream(Stream stream, string name, int[] forceCodePage = null, bool isSystemFont = true)
        {
            var val = new BitFontSet {
                Name = name
            };

            val.Load(stream, forceCodePage, isSystemFont);
            return(val);
        }