我正在尝试使用 WPF 打印带有标题的图像。
在原始表单中(我从屏幕控件中获取图像,然后从数据库中获取图像),图像大于页面,因此我需要对其进行缩放。
我想要页面顶部的标题(我可能还想在标题中添加更多行),然后缩放图像以适应剩余的页面区域(同时保持纵横比)。我还希望页面根据图像的方向正确定位。
我到目前为止的代码(从各个页面窃取)......
PrintDialog printDialog = new PrintDialog();
printDialog.PrintTicket.PageOrientation = this.image.ActualWidth > this.image.ActualHeight ? PageOrientation.Landscape : PageOrientation.Portrait;
if (printDialog.ShowDialog() == true) {
Size size = new Size(printDialog.PrintableAreaWidth, printDialog.PrintableAreaHeight);
StackPanel stackPanel = new StackPanel { Orientation = Orientation.Vertical, RenderSize = size };
TextBlock title = new TextBlock { Text = @"Form", FontSize = 20 };
stackPanel.Children.Add(title);
Image image = new Image { Source = this.image.Source, Stretch = Stretch.Uniform };
image.RenderTransform = new ScaleTransform(1, 1);
stackPanel.Children.Add(image);
stackPanel.Measure(size);
stackPanel.Arrange(new Rect(new Point(0, 0), stackPanel.DesiredSize));
printDialog.PrintVisual(stackPanel, @"Form image");
}
问题是,图像总是太大,标题中的文本打印不正确(我只看到几条垂直线)。我知道我的问题在于我设置大小和/或缩放的方式,但我就是看不到它。
有什么建议么?