本文介绍了如何加载自定义字体以在Windows Azure上绘制图像?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

我需要使用自定义字体来绘制我自己的应用程序。



是否可以通过部署脚本进行安装?

解决方案

如何在Web应用程序中管理自定义字体(system.drawing)
$ b

    PrivateFontCollection collection = new PrivateFontCollection();
    // Add the custom font families.
    // (Alternatively use AddMemoryFont if you have the font in memory, retrieved from a database).
    collection.AddFontFile(@"E:\Downloads\actest.ttf");
    using (var g = Graphics.FromImage(bm))
    {
        // Create a font instance based on one of the font families in the PrivateFontCollection
        Font f = new Font(collection.Families.First(), 16);
        g.DrawString("Hello fonts", f, Brushes.White, 50, 50);
    }

Cheers.

这篇关于如何加载自定义字体以在Windows Azure上绘制图像?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-08 09:47