使用WPF DocumentPaginator打印图像的正确方法是什么?

本文关键字:方法 是什么 WPF DocumentPaginator 打印 图像 使用 | 更新日期: 2023-09-27 18:16:48

这是我的代码,是在一个类扩展DocumentPaginator

    public override DocumentPage GetPage(int pageNumber)
    {
        BitmapImage source = new BitmapImage();
        using (Stream stream = new FileStream(GetPagePath(pageNumber), FileMode.Open))
        {
            source.BeginInit();
            source.StreamSource = stream;
            source.CacheOption = BitmapCacheOption.OnLoad;
            source.EndInit();
        }
        var image = new Image { Source = source };
        Rect contentBox = new Rect(PageSize);
        return new DocumentPage(image, PageSize, contentBox, contentBox);
    }

然而,当我实际运行这段代码时,它似乎没有加载我的图像,只是打印空白页。

加载我的图像并将其附加到DocumentPage对象的正确方法是什么?

使用WPF DocumentPaginator打印图像的正确方法是什么?

您必须通过调用其Measure()Arrange()方法来完成Image控件的布局:

var image = new Image { Source = source };
var size = new Size(source.PixelWidth, source.PixelHeight);
image.Measure(size);
image.Arrange(new Rect(size));