这个问题听起来很耳熟,但是我已经搜索了互联网,却找不到解决方案。
我知道我们可以使用 Crystal Report 进行打印,但是由于某些缺点,我放弃了这个想法。以下是一些缺点:-
我还尝试下载alternate to crystal report。但是它的界面不是那么友好。
现在,我已经在Windows Form上设计了我的报告。当我尝试打印时,与 Crystal Reports 打印相比,其质量较差。这是它的代码
private System.IO.Stream streamToPrint;
string streamType;
private void printDoc_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
{
System.Drawing.Image image = System.Drawing.Image.FromStream(this.streamToPrint);
int x = e.MarginBounds.X;
int y = e.MarginBounds.Y;
int width = image.Width;
int height = image.Height;
if ((width / e.MarginBounds.Width) > (height / e.MarginBounds.Height))
{
width = e.MarginBounds.Width;
height = image.Height * e.MarginBounds.Width / image.Width;
}
else
{
height = e.MarginBounds.Height;
width = image.Width * e.MarginBounds.Height / image.Height;
}
System.Drawing.Rectangle destRect = new System.Drawing.Rectangle(x, y, width, height);
e.Graphics.DrawImage(image, destRect, 0, 0, image.Width, image.Height, System.Drawing.GraphicsUnit.Pixel);
}
private void btnPrint_Click(object sender, EventArgs e)
{
string fileName = Application.StartupPath + "\\PrintPage.jpg";
using (Graphics gfx = this.CreateGraphics())
{
using (Bitmap bmp = new Bitmap(this.Width, this.Height, gfx))
{
this.DrawToBitmap(bmp, new Rectangle(0, 0, this.Width, this.Height));
bmp.Save(fileName);
}
}
FileStream fileStream = new FileStream(fileName, FileMode.Open, FileAccess.Read);
StartPrint(fileStream, "Image");
fileStream.Close();
if (System.IO.File.Exists(fileName))
{
System.IO.File.Delete(fileName);
}
}
public void StartPrint(Stream streamToPrint, string streamType)
{
this.printDoc.PrintPage += new PrintPageEventHandler(printDoc_PrintPage);
this.streamToPrint = streamToPrint;
this.streamType = streamType;
System.Windows.Forms.PrintDialog PrintDialog1 = new PrintDialog();
PrintDialog1.AllowSomePages = true;
PrintDialog1.ShowHelp = true;
PrintDialog1.Document = printDoc;
DialogResult result = PrintDialog1.ShowDialog();
if (result == DialogResult.OK)
{
printDoc.Print();
//docToPrint.Print();
}
}
private void Frm_Test_Shown(object sender, EventArgs e)
{
try
{
btnPrint_Click(sender, e);
}
catch (Exception ex) { clsUtility.ShowErrMsg(ex.Message); }
}
我了解这样做的原因是由于图像和屏幕分辨率的原因(参考:https://stackoverflow.com/a/12547806/2994869)。人们提到的解决方法是将Windows窗体及其对象的大小增加6倍,但效果相同,但质量更差。
我是否可以执行任何解决方法或任何技巧来打印Windows窗体,以使其质量接近Crystal Report的质量。
答案 0 :(得分:0)
要获得高质量,您需要创建一个比屏幕分辨率更高的信号源,这是您可以从DrawToBitmap
获得的。
仅当您可以将单个控件扩展很多时,使用DrawToBitmap
才有帮助。对于整个表格,它无济于事。
您将需要完全重新创建要打印的部件,并根据需要使用许多DrawString
和其他DrawXXX
方法。是的,很多工作。 (但是很有趣;-)
但是,您显示的代码也使用jpg
文件格式而犯了错误,该文件格式是为柔和的图像(即照片)创建的。将其更改为png
并进行比较!