我希望能够使用其他 UIElements 打印图像。我有一个 FixedPage 实例并尝试像这样添加图像
// Basic printing stuff
var printDialog = new PrintDialog();
var fixedDocument = new FixedDocument();
fixedDocument.DocumentPaginator.PageSize = new Size(printDialog.PrintableAreaWidth, printDialog.PrintableAreaHeight);
FixedPage page = new FixedPage();
page.Width = fixedDocument.DocumentPaginator.PageSize.Width;
page.Height = fixedDocument.DocumentPaginator.PageSize.Height;
Image img = new Image();
// PrintIt my project's name, Img folder
var uriImageSource = new Uri(@"/PrintIt;component/Img/Stuff.png", UriKind.RelativeOrAbsolute);
img.Source = new BitmapImage(uriImageSource);
img.Width = 100;
img.Height = 100;
page.Children.Add(img);
PageContent pageContent = new PageContent();
((IAddChild)pageContent).AddChild(page);
fixedDocument.Pages.Add(pageContent);
// Print me an image please!
_printDialog.PrintDocument(fixedDocument.DocumentPaginator, "Print");
它给了我一张白纸。我想知道为什么,因为其他 UIElement(例如 TextBox、Grid、Rect)出现时没有问题。我错过了什么?
谢谢!
PS好的,我找到了另一个解决方案。我不知道为什么,但是使用 Uri 可以正确加载图片
var uri = new Uri("pack://application:,,,/Img/Stuff.png");