我正在尝试使用 MSDN(链接RDLC
)中的源代码将报告直接打印到 POS 打印机,通过将报告导出到()图像,然后使用将图像打印到打印机,我根据数字计算报告的高度行数(一行的高度 = 0.6 厘米)。EMF
PrintDocument
问题是当报告太长(超过一页)时,我将其行彼此收缩(压缩)。
如何解决这个问题呢 ?我是否必须使用 POS 打印机库 (.NET POS) 而不是将报告导出到图像并打印图像?. 您可以从 (这里)下载源代码。
先谢谢了。
另一种解决方案是将大图像(我将报告导出到它)打印到许多页面:
private void PrintPage(Object sender, PrintPageEventArgs ev)
{
if (pageImage == null)
return;
ev.Graphics.PageUnit = GraphicsUnit.Pixel;
ev.Graphics.InterpolationMode = InterpolationMode.HighQualityBicubic;
ev.Graphics.PixelOffsetMode = PixelOffsetMode.HighQuality;
float a = (ev.PageSettings.PrintableArea.Width / 100) * ev.Graphics.DpiX;
float b = ((ev.PageSettings.PrintableArea.Height / 100) * ev.Graphics.DpiY);
float scale = 1500;
scale = 0;
RectangleF srcRect = new RectangleF(0, startY, pageImage.Width, b - scale);
RectangleF destRect = new RectangleF(0, 0, a, b);
ev.Graphics.DrawImage(pageImage, destRect, srcRect, GraphicsUnit.Pixel);
startY = startY + b - scale;
float marignInPixel = (0.5f / 2.54f) * ev.Graphics.DpiY;
ev.HasMorePages = (startY + marignInPixel < pageImage.Height);
}
你可以从(这里)下载源代码
我通过改变纸张的大小来解决它:
PaperSize pkCustomSize = new System.Drawing.Printing.PaperSize("Custom Paper Size", Convert.ToInt32((WidthInInCM / 2.54) * 100), Convert.ToInt32((HeightInInCM / 2.54) * 100));
printDoc.DefaultPageSettings.PaperSize = pkCustomSize;
printDoc.DefaultPageSettings.Margins.Top = 0;
printDoc.DefaultPageSettings.Margins.Bottom = 0;
printDoc.DefaultPageSettings.Margins.Left = 0;
printDoc.DefaultPageSettings.Margins.Right = 0;
if (!printDoc.PrinterSettings.IsValid)
{
String msg = String.Format("Can't find printer \"{0}\".", PrinterName);
MessageBox.Show(msg, "Print Error");
return;
}
printDoc.PrinterSettings.DefaultPageSettings.PaperSize = printDoc.DefaultPageSettings.PaperSize;
printDoc.PrinterSettings.DefaultPageSettings.Margins = printDoc.DefaultPageSettings.Margins;
您可以从(此处)下载更新的源代码。
我一直被困在一个类似的问题上。
我已经设法使用以下方法修复它:
private void PrintPage(object sender, PrintPageEventArgs ev)
{
Metafile pageImage =
new Metafile(m_streams[m_currentPageIndex]);
//That's the fix - Units set to Display
ev.Graphics.PageUnit = GraphicsUnit.Display;
//Drawing it scaled
ev.Graphics.DrawImage(pageImage, 0, 0, ev.MarginBounds.Width, ev.MarginBounds.Height);
m_currentPageIndex++;
ev.HasMorePages = (m_currentPageIndex < m_streams.Count);
}
页面被绘制到缩放的打印机画布上。