gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 18:20:02 25 4
gpt4 key购买 nike

我们创建了大量的字体供短期使用。字体嵌入在文档中。如果不再使用,我想删除字体文件。我们应该怎么做?以下简化代码不起作用:

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。但是对于 Windows 8,.NET 在第一个 FontFamily 被处理后使用错误的字体文件。因为每个文档都可以包含其他字体,所以我们需要大量的字体并且无法保存对所有字体的引用。

最佳答案

查看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);

关于c# - 如何删除 PrivateFontCollection.AddFontFile 的文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26671026/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com