4

在我的 WPF 应用程序中,我FlowDocument通过将其 XAML 标记构建为字符串来创建一个,然后使用XamlReader.Parse将字符串转换为一个FlowDocument对象,然后将其保存到 XPS 文档文件中。有用。

我需要在我的文档中包含一个图像,因此为了实现这一点,我在 temp 目录中创建并保存图像作为临时文件,然后在我FlowDocument的 XAML 中使用绝对路径引用它。这也有效 - 在 XPS 文档创建过程中,图像实际上被嵌入到 XPS 文档中,这很棒。

但问题是,我的应用程序会在此图像上保留文件锁定,直到应用程序退出。

我正在清理所有资源。我生成的 XPS 文件没有文件锁定 - 只是图像文件。如果我注释掉创建 XPS 文件的代码部分,则图像文件不会被锁定。

我的代码(我在 .NET 4 CP 上):

var xamlBuilder = new StringBuilder();

// many lines of code like this
xamlBuilder.Append(...);

// create and save image file
// THE IMAGE AT THE PATH imageFilePath IS GETTING LOCKED
// AFTER CREATING THE XPS FILE
var fileName = string.Concat(Guid.NewGuid().ToString(), ".png");
var imageFilePath = string.Format("{0}{1}", Path.GetTempPath(), fileName);
using (var stream = new FileStream(imageFilePath, FileMode.Create)) {
  var encoder = new PngBitmapEncoder();
  using (var ms = new MemoryStream(myBinaryImageData)) {
    encoder.Frames.Add(BitmapFrame.Create(ms));
    encoder.Save(stream);
  }
  stream.Close();
}

// add the image to the document by absolute path
xamlBuilder.AppendFormat("<Paragraph><Image Source=\"{0}\" ...", imageFilePath);

// more lines like this
xamlBuilder.Append(...);

// create a FlowDocument from the built string
var document = (FlowDocument) XamlReader.Parse(xamlBuilder.ToString());

// set document settings
document.PageWidth = ...;
...

// save to XPS file
// THE XPS FILE IS NOT LOCKED. IF I LEAVE OUT THIS CODE
// AND DO NOT CREATE THE XPS FILE, THEN THE IMAGE IS NOT LOCKED AT ALL
using (var xpsDocument = new XpsDocument(filePath, FileAccess.ReadWrite)) {
  var documentWriter = XpsDocument.CreateXpsDocumentWriter(xpsDocument);
  documentWriter.Write(((IDocumentPaginatorSource) document).DocumentPaginator);
  xpsDocument.Close();
}

(实际上,它是临时目录中动态生成的图像这一事实无关紧要 - 如果我在机器上的任何图像文件的路径中硬编码,则会出现此问题 - 它会被锁定。)

有人会认为 XPS 创建代码中存在导致文件锁定的错误。

还有什么我可以尝试的吗?或者通过代码删除文件锁定的方法?

4

1 回答 1

2

您可以像这样更改您的 xaml:

<Image>
    <Image.Source>
        <BitmapImage CacheOption="None" UriSource="your path" />
    </Image.Source>
</Image>

为了能够使用该CacheOption参数,指定 Xaml Builder 应如何加载图像文件,因为默认值似乎对其保持锁定(似乎等待 GC 完成其工作)。

这是关于 SO 的一些相关问题:如何确保 WPF 从内存中释放大的 BitmapSource?

于 2012-05-23T08:49:49.567 回答