c# – 如何删除PrivateFontCollection.AddFontFile的文件?

前端之家收集整理的这篇文章主要介绍了c# – 如何删除PrivateFontCollection.AddFontFile的文件?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我们为短期使用创建了大量字体.字体嵌入在文档中.如果不再使用,我想删除字体文件.我们应该怎么做?以下简化代码不起作用:
PrivateFontCollection pfc = new PrivateFontCollection();
pfc.AddFontFile(fontFile);
FontFamily family = pfc.Families[0];
Console.WriteLine(family.GetName(0));

family.Dispose();
pfc.Dispose();
GC.Collect();
GC.WaitForPendingFinalizers();
File.Delete(fontFile);

删除文件失败,因为文件已被锁定.我还能做些什么来解放文件锁?

PS:在我们使用AddMemoryFont之前.这适用于Windows 7.但是在第一个FontFamily处理后,使用Windows 8 .NET时使用了错误的字体文件.因为每个Document都可以包含其他字体,所以我们需要非常多的字体,并且不能保存对所有字体的引用.

解决方法

查看AddFontFile方法代码后:
public void AddFontFile(string filename)
{
    IntSecurity.DemandReadFileIO(filename);
    int num = SafeNativeMethods.Gdip.GdipPrivateAddFontFile(new HandleRef(this,this.nativeFontCollection),filename);
    if (num != 0)
    {
        throw SafeNativeMethods.Gdip.StatusException(num);
    }
    SafeNativeMethods.AddFontFile(filename);
}

我们看到该字体已注册2次.首先在GDI和GDI32的最后一行.这与AddMemoryFont方法不同.在Dispose方法中,它仅在GDI中未注册.这导致GDI32泄漏.

为了弥补这一点,您可以拨打以下电话:

[DllImport("gdi32.dll",CharSet = CharSet.Auto,SetLastError = true)]
public static extern int RemoveFontResourceEx(string lpszFilename,int fl,IntPtr pdv);

pfc.AddFontFile(fontFile);
RemoveFontResourceEx(fontFile,16,IntPtr.Zero);
原文链接:https://www.f2er.com/csharp/244003.html

猜你在找的C#相关文章