3
A
回答
7
How to manage custom fonts in web application (system.drawing)
它應該有可能你的 字體文件存儲在磁盤上或在數據庫中,並 然後使用 PrivateFontCollection類 使用的字體在運行。
這裏是你將如何使用它:
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);
}
乾杯。
相關問題
- 1. 繪製自定義形狀,以圖像加載到
- 2. 在mkmaps上加載自定義圖像
- 3. 如何加載自定義字體?
- 4. 使用Windows Azure的自定義字體
- 5. 如何創建自定義手繪像素位圖字體?
- 6. 在Azure上自定義Jenkins Slave圖像
- 7. 自定義繪製CTreeCtrl:如何添加字體穿透?
- 8. 自定義圖標字體未加載
- 9. 繪製自定義形狀以將圖像加載爲recyclerview項目
- 10. 用自定義字體繪製標籤
- 11. 以自定義形狀繪製像素
- 12. android:什麼是首選,加載自定義字體或圖像?
- 13. libgdx - bmfont自定義字體不繪圖?
- 14. 如何在圖像上繪製圖像?
- 15. 在窗體上繪製自定義圖標
- 16. 如何在旋轉的自定義圖像地圖上繪製GPS標記
- 17. 在Windows 8 Metro應用中加載自定義字體
- 18. 加載自定義字體到網站
- 19. Android如何繪製自定義視圖
- 20. 自定義字體不加載iframe
- 21. 在屏幕上快速繪製自定義格式圖像
- 22. 使用自定義字體在畫布上繪圖Java Android
- 23. 如何正確加載自定義UICollectionViewCell上的圖像?
- 24. Xamarin窗體Windows Azure自定義登錄
- 25. 加載自定義字體和
- 26. @ font-face不加載自定義字體
- 27. CoreText不加載自定義字體
- 28. PixiJS:加載自定義字體
- 29. 如何在CustomBox中添加自定義加載圖像?
- 30. 自定義字體僅在加載字體時才顯示