c#-以高质量打印winform吗?

时间:2018-06-28 04:21:06

标签: c# .net printing visual-studio-2008 crystal-reports

这个问题听起来很耳熟,但是我已经搜索了互联网,却找不到解决方案。

我知道我们可以使用 Crystal Report 进行打印,但是由于某些缺点,我放弃了这个想法。以下是一些缺点:-

  • 需要在PC上安装,如果 Visual Studio 版本是2017,则必须下载200MB以上的设置。
  • 如果您在某一部分中制作了某些对象,例如 textobject lines ,则必须添加一些内容在它的中间,您必须手动设置每个对象的位置,否则,如果您集体选择所有对象并将其移动,则它们的原始位置和每个对象之间的间距将会丢失。
  • 当前我正在使用 VS2008 ,并且其中集成了水晶报表,其中有一个众所周知的问题,有时会更改每个文本对象的文本,并添加一个出于某种原因在其中输入“ i”

我还尝试下载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的质量。

1 个答案:

答案 0 :(得分:0)

要获得高质量,您需要创建一个比屏幕分辨率更高的信号源,这是您可以从DrawToBitmap获得的。

仅当您可以将单个控件扩展很多时,使用DrawToBitmap才有帮助。对于整个表格,它无济于事。

您将需要完全重新创建要打印的部件,并根据需要使用许多DrawString和其他DrawXXX方法。是的,很多工作。 (但是很有趣;-)

但是,您显示的代码也使用jpg文件格式而犯了错误,该文件格式是为柔和的图像(即照片)创建的。将其更改为png并进行比较!