C#打印绘图的实现方法

本文实例讲述了C#打印绘图的实现方法。分享给大家供大家参考。具体实现方法如下:

代码如下:

String drawString = "";
Font drawFont = null;
SolidBrush drawBrush = null;
float x = 0F;
float y = 0F;
StringFormat drawFormat = new StringFormat();

string test = "";

public string Test
{
    get { return test; }
    set { test = value; }
}
public Form1()
{
    InitializeComponent();
    //设置纸张大小
    PaperSize paperSize = new PaperSize("DataOrder", 1023, 614);
    printDocument1.DefaultPageSettings.PaperSize = paperSize;
}

//打印
private void button1_Click(object sender, EventArgs e)
{
    printDocument1.PrintPage += new PrintPageEventHandler(MyPrintDoc_PrintPage);
    try
    {
 printPreviewDialog1.Document = printDocument1;
 printPreviewDialog1.FormBorderStyle = FormBorderStyle.Fixed3D;
 printPreviewDialog1.ShowDialog();
 printDocument1.Print();
    }
    catch
    {

MessageBox.Show("请安装打印机", "提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
    }
}

protected void MyPrintDoc_PrintPage(object sender, PrintPageEventArgs e)
{
    //字体 颜色 格式 坐标
    drawFont = new Font("Arial", 8);
    drawBrush = new SolidBrush(Color.Black);
    x = 0F;
    y = 0F;
    drawFormat.FormatFlags = StringFormatFlags.NoWrap;

//块数
    int num = 6;
    float weightAll = 12.600F;
    //标题
    //标题第一行
    string title = "钢板入库计量单";
    string BillCode = "吊号:" + "20080505170";
    string ClassType = "班别:" + "乙";
    string type1 = "类型:" + "定轧";
    string OrderNum = "记录单号:" + "QW-Y14-02-06";
    //标题第二行
    string ArriveStation = "到站:";
    string SpLine = "专用线:";
    string SaleNo = "销售订单号:";
    //标题第三行
    string AcceptName = "收货单位:" + "XXXX/12*2438*9144收二支";
    string time = DateTime.Now.Year.ToString() + "年" + DateTime.Now.Month.ToString().PadLeft(2,'0')+"月"+DateTime.Now.Day.ToString()+"日";
    //表格下数据
    string BoardNum = "合计:" + num.ToString() + "    块      " + weightAll.ToString()+"   吨   ";
    string CheckMan1 = "检查员:" + "";
    string MeName = "计量员:"+"XX";
    string CheckMan2 = "核对员:" + "";
    //线条长度
    Pen line = new Pen(drawBrush, 1);
    //绘图--字的位置
    //绘图--总标题
    e.Graphics.DrawString(title, drawFont, drawBrush, 400, 45, drawFormat);
    //绘图--标题--第一行
    //吊号
    e.Graphics.DrawString(BillCode, drawFont, drawBrush, 125,83, drawFormat);
    //班别
    e.Graphics.DrawString(ClassType, drawFont, drawBrush, 354, 83, drawFormat);
    //类型
    e.Graphics.DrawString(type1, drawFont, drawBrush, 500, 83, drawFormat);
    //记录单号
    e.Graphics.DrawString(OrderNum, drawFont, drawBrush, 685, 83, drawFormat);

//绘图--标题--第二行
    //到站
    e.Graphics.DrawString(ArriveStation, drawFont, drawBrush, 125, 106, drawFormat);
    //专用线
    e.Graphics.DrawString(SpLine, drawFont, drawBrush, 354, 106, drawFormat);
    //销售订单号
    e.Graphics.DrawString(SaleNo, drawFont, drawBrush, 500, 106, drawFormat);

//绘图--标题--第三行
    //收货单位
    e.Graphics.DrawString(AcceptName, drawFont, drawBrush, 125, 129, drawFormat);
    //时间
    e.Graphics.DrawString(time, drawFont, drawBrush, 685, 129, drawFormat);

//绘图--表格下数据
    //合计
    e.Graphics.DrawString(BoardNum, drawFont, drawBrush, 125, 568, drawFormat);
    //检查员
    e.Graphics.DrawString(CheckMan1, drawFont, drawBrush, 400, 568, drawFormat);
    //计量员
    e.Graphics.DrawString(MeName, drawFont, drawBrush, 550, 568, drawFormat);
    //核对员
    e.Graphics.DrawString(CheckMan2, drawFont, drawBrush, 700, 568, drawFormat);

//绘图 表格
    float leftbianJu = 120;
    float topbianJu = 152;
    float tableWidth = 770;
    float tableHeight = 393;

float cellwidth = 55;
    float cellwidth1 = 110;
    float cellheigh = 0F;

//绘图--线的位置 外边矩形
    //横
    e.Graphics.DrawLine(line, leftbianJu, topbianJu,leftbianJu+tableWidth,topbianJu);
    e.Graphics.DrawLine(line, leftbianJu, topbianJu + tableHeight, leftbianJu + tableWidth, topbianJu + tableHeight);
    //竖
    e.Graphics.DrawLine(line, leftbianJu, topbianJu, leftbianJu, topbianJu+tableHeight);
    e.Graphics.DrawLine(line, leftbianJu + tableWidth, topbianJu, leftbianJu + tableWidth, topbianJu + tableHeight);
    //e.Graphics.DrawLine(line, 15, 0, 15, 614);

//绘图--内部竖线的位置
    y = topbianJu+tableHeight;
    x = leftbianJu + cellwidth;
    e.Graphics.DrawLine(line, x, topbianJu, x,y );
    x= leftbianJu + cellwidth + cellwidth1;
    e.Graphics.DrawLine(line,x , topbianJu, x, y);
    x = leftbianJu + cellwidth + cellwidth1 * 2;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);
    x = leftbianJu + cellwidth + cellwidth1 * 3;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);
    x = leftbianJu + cellwidth * 2 + cellwidth1 * 3;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);
    x = leftbianJu + cellwidth * 3 + cellwidth1 * 3;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);
    x = leftbianJu + cellwidth * 4 + cellwidth1 * 3;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);
    x = leftbianJu + cellwidth * 5 + cellwidth1 * 3;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);
    x = leftbianJu + cellwidth * 6 + cellwidth1 * 3;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);
    x = leftbianJu + cellwidth * 7 + cellwidth1 * 3;
    e.Graphics.DrawLine(line, x, topbianJu, x, y);

//绘图--内部横线的位置
    //根据块数计算表格高度
    if (num != 0)
 cellheigh = tableHeight / (float)num;
    else
 cellheigh = 0;
    //绘图--内部横线的位置
    for (int i = 1; i < num; i++)
    {
 if (i == 1)
 {
     //数据
     string str = "";
     str = "序号";
     x = leftbianJu + cellwidth / 5;
     y = topbianJu + cellheigh / 3;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);
     str = "卡片编号";
     x = leftbianJu + cellwidth + cellwidth1 / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "炉号";
     x = leftbianJu + cellwidth + cellwidth1 + cellwidth1 / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "物料编码";
     x = leftbianJu + cellwidth + cellwidth1*2 + cellwidth1 / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "牌号";
     x = leftbianJu + cellwidth + cellwidth1*3 + cellwidth / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "厚度";
     x = leftbianJu + cellwidth * 2 + cellwidth1 * 3 + cellwidth / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "宽度";
     x = leftbianJu + cellwidth * 3 + cellwidth1 * 3 + cellwidth / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "长度";
     x = leftbianJu + cellwidth * 4 + cellwidth1 * 3 + cellwidth / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "重量";
     x = leftbianJu + cellwidth * 5 + cellwidth1 * 3 + cellwidth / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "级别";
     x = leftbianJu + cellwidth * 6 + cellwidth1 * 3 + cellwidth / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);

str = "偏差";
     x = leftbianJu + cellwidth * 7 + cellwidth1 * 3 + cellwidth / 5;
     e.Graphics.DrawString(str, drawFont, drawBrush, x, y, drawFormat);
 }
 //横线
 y = topbianJu + cellheigh * i;
 e.Graphics.DrawLine(line, leftbianJu, y, leftbianJu + tableWidth, y);
    }
    e.HasMorePages = false;
}

运行效果如下图所示:

希望本文所述对大家的C#程序设计有所帮助。

(0)

相关推荐

  • C#中GraphicsPath的Warp方法用法实例

    本文实例讲述了C#中GraphicsPath的Warp方法用法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D;

  • 深入c# GDI+简单绘图的具体操作步骤(三)

    关于这个的例子其实网上已经有这方面的资料了,但是为了文章的完整性,还是觉得有必要讲解.我们先来看一下效果:                                                                                                                    (图(图1)                                                       ( 图2 )接下来看看这是如何做到的.

  • 深入c# GDI+简单绘图的具体操作步骤(二)

    在上一篇里已经向大家介绍了如何使用GDI+绘制简单的图像,这一片继续向大家介绍其它一些绘图知识.1.首先我们来看下上一片中我们使用过的Pen.Pen的属性主要有: Color(颜色),DashCap(短划线终点形状),DashStyle(虚线样式),EndCap(线尾形状), StartCap(线头形状),Width(粗细)等.我们可以用Pen 来画虚线,带箭头的直线等 复制代码 代码如下: Pen  p = new  Pen(Color.Blue, 5);//设置笔的粗细为,颜色为蓝色Grap

  • 深入c# GDI+简单绘图的具体操作步骤(一)

    最近对GDI+这个东西接触的比较多,也做了些简单的实例,比如绘图板,仿QQ截图等. 最早接触这个类,是因为想做仿QQ截图的效果.巧的很,学会了如何做截图后,.NET课堂上老师也正巧要讲关于c#绘图方面的知识,并且我自己又在网上学习金老师的培训班,也是要用到这个类.在学习中有一些体会,所以准备把这些体会记下来,因为内容比较多,可能我会分几次写.废话不多说了,我们先来认识一下这个GDI+,看看它到底长什么样.GDI+:Graphics Device Interface Plus也就是图形设备接口,提

  • C#中GraphicsPath的Widen方法用法实例

    本文实例讲述了C#中GraphicsPath的Widen方法用法.分享给大家供大家参考.具体如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D; nam

  • C#实现Windows Form调用R进行绘图与显示的方法

    一.前提准备 安装R软件,需要安装32位的R软件,64位的调用会报错.另外就是讲R添加到电脑环境变量中. 打开R软件,安装包 scatterplot3d,演示需要用到此R包. 二.创建项目GraphGenerateByR,项目结构如下: 注意:这里需要引入RDotNet类库,可以自行下载:http://rdotnet.codeplex.com/ 三.Main窗体代码 using System; using System.Collections.Generic; using System.Comp

  • C#实现动态数据绘图graphic的方法示例

    本文实例讲述了C#实现动态数据绘图graphic的方法.分享给大家供大家参考,具体如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Drawing.

  • 混合语言编程—C#使用原生的Directx和OpenGL绘图的方法

    由于项目需要做一些图形展示,所以就想到了使用Directx和OpenGL来绘图,但项目准备使用C#来开发(大家比较熟悉C#),在网上看了相关的资料,有一些第三方的控件可用,试用了下,一运行就占了几百M的内存,而且也不知道是否稳定,教程也少,还不如直接使用原生的.在网上看的Directx和OpenGL的教程基本上都是C/C++的,找了很久也就找到相关介绍,只能自己研究下. 我以前做过C#和C++混合语言编程相关的东西,在C++实现一些C#不好实现的功能,C#动态调用DLL文件,所以也想到了用C++

  • C#中GraphicsPath的AddString方法用法实例

    本文实例讲述了C#中GraphicsPath的AddString方法用法.分享给大家供大家参考.具体如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D;

  • C#中GraphicsPath的Flatten方法用法实例

    本文实例讲述了C#中GraphicsPath的Flatten方法.分享给大家供大家参考.具体实现方法如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Drawing.Drawing2D;

  • 深入c# GDI+简单绘图的具体操作步骤(四)

    前几篇我已经向大家介绍了如何使用GDI+来绘图,并做了一个截图的实例,这篇我向大家介绍下如何来做一个类似windows画图的工具.个人认为如果想做一个功能强大的绘图工具,那么单纯掌握GDI还远远不够,我的目前也只能做一个比较简单的绘图工具了.不足之处,欢迎大家讨论!先来看一下最终效果吧: 主要实现功能:画直线,矩形,橡皮,圆形,切换颜色,打开图片,保存图片,清除图片,手动调节画布大小;软件刚启动时,为一张空白画布,我们可以直接在画布上绘画,也可以通过菜单中的"打开",导入一张图片,然后

  • C# GDI在控件上绘图的方法

    本文以在chart控件上和窗体上画矩形为例子讲述了C# GDI在控件上绘图的方法.分享给大家供大家参考.具体方法如下: 具体的实现方法就不多解释了,备注很详细,代码也很简单. 主要功能代码如下: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Te

随机推荐