コード例 #1
0
ファイル: FontFileImporter.cs プロジェクト: gitMaxim/duality
 public void ImportFile(string srcFile, string targetName, string targetDir)
 {
     string[] output = this.GetOutputFiles(srcFile, targetName, targetDir);
     Font res = new Font();
     res.LoadCustomFamilyData(srcFile);
     res.ReloadData();
     res.Save(output[0]);
 }
コード例 #2
0
ファイル: FontFileImporter.cs プロジェクト: ninja2003/duality
        public void ImportFile(string srcFile, string targetName, string targetDir)
        {
            string[] output = this.GetOutputFiles(srcFile, targetName, targetDir);
            Font font = new Font();

            font.SourcePath = srcFile;
            font.EmbeddedTrueTypeFont = File.ReadAllBytes(srcFile);
            font.RenderGlyphs();
            font.Save(output[0]);
        }