动态加载和卸载字体

C#动态加载和卸载字体(以文件的方式)

2009-07-01 17:18

因为是在CE里,所以是用Coredll   PC机用的不是这个,可查MSDN

 

[DllImport("coredll", EntryPoint = "AddFontResource")]

        private static extern int AddFontResource([In,MarshalAs( UnmanagedType.LPWStr)]string fontSource);

 

        [DllImport("coredll", EntryPoint = "SendMessage")]

        private static extern int SendMessage(IntPtr hWnd, int Msg, IntPtr wParam, IntPtr lParam);

 

 

int installFont = AddFontResource(@"/SDMEM/MSYH.TTF"); //这是字体的安装 返回不为0即成功

 

SendMessage((IntPtr)0xffff, 0x001d, IntPtr.Zero, IntPtr.Zero); //通知其它正在运行的应用程序,有新字体注册了

 

                //枚举字体

                InstalledFontCollection enumFonts = new InstalledFontCollection();

                FontFamily[] fonts = enumFonts.Families;

                foreach (FontFamily font in fonts)

                {

                    MessageBox.Show(font.Name);

                }

 

如果只是自己的程序使用的话,那么就没必要这么折腾了

 

System.Drawing.Text.PrivateFontCollection privateFonts = new System.Drawing.Text.PrivateFontCollection();

 

 

            privateFonts.AddFontFile("fileName");    //D:/aa/abc.ttf

 

 

            System.Drawing.Font font = new Font(privateFonts.Families[0], 12);

 

 

(以文件的方式)

2009-07-01 17:18

 

 

 

Delphi程序中使用自带字体

关键字: delphi

initialization
  AddFontResource(PChar(dirAppRoot + 'XXXXX.TTF'));

finalization
  RemoveFontResource(PChar(dirAppRoot + 'XXXXX.TTF'));

 

 

 

java程序中直接使用中文字体文件。代码中的hb.ttf文件请用你自己的中文字体文件代替
(网上下载吧)。



import java.io.File;
import java.awt.*;

public class testFont {
  private static String fontpath = "c://test//";
  private static java.io.File file = new java.io.File(fontpath + "hb.ttf");
  public testFont() {
  }

  public static void main(String args[]) {
    if (!file.exists()) {
      System.out.println("file not found");
      return;
    }


    try {
      java.io.FileInputStream fi = new java.io.FileInputStream(file);
      java.io.BufferedInputStream fb = new java.io.BufferedInputStream(fi);
      Font nf = Font.createFont(Font.TRUETYPE_FONT, fb);
      nf = nf.deriveFont(Font.BOLD, 10);
      System.out.println(nf.getFontName());
      System.out.println(nf.getSize());
    }
    catch (Exception e) {
      System.out.println(e.getMessage());
    }
  }
}


运行结果;
C:/test>java  testFont
 
方正华隶简体
10

你可能感兴趣的:(exception,String,File,Delphi,initialization,fonts)