将System.Drawing.Image添加到FixedDocument

时间:2014-06-23 07:12:43

标签: c# wpf image fixeddocument

我有10 System.Drawing.Image。我需要将它们添加到FixedDocument。我尝试了以下代码,并且修复了固定文档,所有10个页面仅包含第一个图像。

FixedDocument doc = new FixedDocument();
BitmapSource[] bmaps = new BitmapSource[10];
System.Drawing.Image[] drawingimages = //I have System.Drawing.Image in a array
for (int i = 0; i < 10; i++)
{

    Page currentPage = this.Pages[i];
    System.Drawing.Image im = drawingimages[i];
    im.Save(i + ".png");
    Stream ms = new MemoryStream();
    im.Save(ms, System.Drawing.Imaging.ImageFormat.Png);
    var decoder = BitmapDecoder.Create(ms, BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.OnDemand);
    ImageSource imgsource = decoder.Frames[0];

    bmaps[i] = imgsource as BitmapSource;
}
foreach (BitmapSource b in bmaps)
{
    PageContent page = new PageContent();
    FixedPage fixedPage = CreateOneFixedPage(b);
    ((IAddChild)page).AddChild(fixedPage);
    doc.Pages.Add(page);
}

CreateOneFixedPage的方法

private FixedPage CreateOneFixedPage(BitmapSource img)
{
    FixedPage f = new FixedPage();
    Image anImage = new Image();
    anImage.BeginInit();
    anImage.Source = img;
    anImage.EndInit();

    f.Children.Add(anImage);
    return f;
}

当我尝试将System.Drawing.Image保存到本地磁盘时,所有10张图像都会正确保存。 我的代码在这里有什么错误?

1 个答案:

答案 0 :(得分:3)

也许不是问题的答案,但至少下面的代码显示了一个最小的工作示例。它将Sample Pictures文件夹中的所有图像加载到System.Drawing.Bitmap个对象的列表中。然后它将所有列表元素转换为ImageSource并将每个元素添加到FixedDocment页面。

请注意,它不会在图像控件上调用BeginInit()EndInit()。它还设置了PageContent的Child属性,而不是调用IAddChild.AddChild()

var bitmaps = new List<System.Drawing.Bitmap>();

foreach (var file in Directory.EnumerateFiles(
    @"C:\Users\Public\Pictures\Sample Pictures", "*.jpg"))
{
    bitmaps.Add(new System.Drawing.Bitmap(file));
}

foreach (var bitmap in bitmaps)
{
    ImageSource imageSource;

    using (var stream = new MemoryStream())
    {
        bitmap.Save(stream, System.Drawing.Imaging.ImageFormat.Png);
        stream.Position = 0;
        imageSource = BitmapFrame.Create(stream,
            BitmapCreateOptions.PreservePixelFormat, BitmapCacheOption.OnLoad);
    }

    var page = new FixedPage();
    page.Children.Add(new Image { Source = imageSource });

    doc.Pages.Add(new PageContent { Child = page });
}