3

当我尝试在 XPS 文档上声明 PageHeight 时遇到问题。

到目前为止,我的代码如下所示:

private FixedDocumentSequence GetDocument(DocumentPaginator paginator)
{
    FixedDocumentSequence document = null;

    string tempFileName = System.IO.Path.GetTempFileName();
    File.Delete(tempFileName);

    using (var xpsDocument = new XpsDocument(tempFileName, FileAccess.ReadWrite, CompressionOption.NotCompressed))
    {
        var writer = XpsDocument.CreateXpsDocumentWriter(xpsDocument);

        var printTicket = new PrintTicket
        {
            PageMediaSize = new PageMediaSize(PageMediaSizeName.ISOA4, paginator.PageSize.Width, paginator.PageSize.Height),
            PageBorderless = PageBorderless.Borderless,
            PageMediaType = PageMediaType.None,
        };

        writer.Write(paginator, printTicket);

        //paginator.PageSize.Height = 1122
        var d = xpsDocument.GetFixedDocumentSequence();

        //d.DocumentPaginator.PageSize.Height = 1056
        document = d;
    }

    return document;
}

问题是我声明的 PageSize Height 为 1122,这是我从这段代码中得到的:

var pd = new PrintDialog();
var sz = new Size(pd.PrintableAreaWidth, pd.PrintableAreaHeight);

但是当我查看房产时

d.DocumentPaginator.PageSize.Height

我可以看到高度是1056,这个高度恰好是 NorthAmericanLetter 页面格式高度的高度,我已经指定了一个带有显式 PageMediaSize 的特定 printTicket 还有什么问题?

编辑:

这是我编辑的代码,但这给出了相同的结果:

private FixedDocumentSequence GetDocument(DocumentPaginator paginator)
{
    FixedDocumentSequence document = null;

    string oldTempFileName = System.IO.Path.GetTempFileName();
    File.Delete(oldTempFileName);

    XpsDocument oldXpsDocument;
    using (oldXpsDocument = new XpsDocument(oldTempFileName, FileAccess.ReadWrite, CompressionOption.NotCompressed))
    {
        var writer = XpsDocument.CreateXpsDocumentWriter(oldXpsDocument);

        var printTicket = new PrintTicket
        {
            PageMediaSize = new PageMediaSize(PageMediaSizeName.ISOA4, paginator.PageSize.Width, paginator.PageSize.Height),
            PageBorderless = PageBorderless.Borderless,
            PageMediaType = PageMediaType.None,
        };

        writer.Write(paginator, printTicket);
    }

    //string newTempFileName = System.IO.Path.GetTempFileName();
    //File.Delete(newTempFileName);

    using (var newXpsDocument = new XpsDocument(oldTempFileName, FileAccess.Read, CompressionOption.NotCompressed))
    {
        var d = newXpsDocument.GetFixedDocumentSequence();
        document = d;
    }


    return document;
}

我查看了使用第一个 using 块创建的文件,我仍然可以看到页面的高度为 1056,即 1.fpage 文件的输出:

<FixedPage 
xmlns="http://schemas.microsoft.com/xps/2005/06" xmlns:x="http://schemas.microsoft.com/xps/2005/06/resourcedictionary-key"
xml:lang="und" 
Width="816" Height="1056">
<FixedPage.Resources>
<ResourceDictionary>
<LinearGradientBrush x:Key="b0" StartPoint="33,0" EndPoint="33,23" ColorInterpolationMode="SRgbLinearInterpolation" MappingMode="Absolute" SpreadMethod="Pad">

编辑2:

找到了解决我的问题的方法。在我的 DocumentPaginator 中,我必须重写 GetPage 方法并在那里返回一个新的 DocumentPage(visual),这个构造函数有一个重载,只有当我在那里设置 PageSize 时才能正确设置 PageSize。

http://msdn.microsoft.com/en-us/library/system.windows.documents.documentpage(v=vs.110).aspx http://msdn.microsoft.com/en-us/library/ms597306( v=vs.110).aspx

我之前的代码:

public override DocumentPage GetPage(int pageNumber)
{
    // create page element (PageTemplate is a custom usercontrol that can hold content)
    var page = new PageTemplate(this, pageNumber + 1);

    // arrange the elements on the page
    page.Arrange(new Rect(0, 0, PageSize.Width, PageSize.Height));

    // return new document page
    return new DocumentPage(page);
}

现在使用第二个构造函数:

public override DocumentPage GetPage(int pageNumber)
{
    // create page element (PageTemplate is a custom usercontrol that can hold content)
    var page = new PageTemplate(this, pageNumber + 1);

    // arrange the elements on the page
    page.Arrange(new Rect(0, 0, PageSize.Width, PageSize.Height));

    // return new document page
    return new DocumentPage(page, PageSize, new Rect(0, 0, 10, 10), new Rect());
}
4

1 回答 1

1

问题是您期望xpsDocument具有与您创建的文件相同的尺寸。

当你创建一个XpsDocument时,它会有一个默认值FixedDocumentSequence。由于您正在创建一个 XpsDocument,而不是打开一个,因此您将获得默认的固定文档序列,这就是您1056将高度视为默认值的原因。

但是,如果您查看FixedDocumentSequence底部的代码示例,您会看到LoadDocumentViewer它用新的替换旧XpsDocument的。

当您调用writer.Write(paginator, printTicket);它时,它将XpsDocument使用您提供的文件写入您指定的文件PrintTicket。现在您需要XpsDocument使用该文件路径创建一个,当您打开它时,您可以获取该FixedDocumentSequence文档的文件和与PrintTicket属性匹配的大小。所以在伪代码中,你应该这样做:

string fileName = ...
using Create XpsDocument at fileName 
    Create XpsDocumentWriter
    Create and setup PrintTicket
    Write to the file using your DocumentPaginator and PrintTicket
using Create XpsDocument reading from fileName
    document = opened XpsDocument GetFixedDocumentSequence()

编辑:

在您的最后一次编辑中很好地找到了。我使用 MS Word 以 A4 大小设置打印了 XPS 文档,所有页面也都显示为 1056 x 816。然后我使用 A3 大小创建了一个 XPS 文档,尺寸为 1587.36 x 1122.56。很明显,内部发生了一些我们看不到的事情;我的猜测是,由于页面大小的尺寸相似,它只使用 1056 x 816 尺寸?谁真的知道...我建议向 Microsoft 提交错误报告。

与此同时,也许尝试改变d.DocumentPaginator.PageSize甚至d.PrintTicket对象并尝试让页面大小以这种方式改变。如果有办法枚举FixedPage's,您也可以手动更改它们的设置。

于 2014-07-17T18:14:05.293 回答