0

我有一个具有此界面的表单

在此处输入图像描述

该表单在文本框中接受来自用户的数据,还允许用户将图像加载到图片框中。我的问题是,我将如何使用户能够以表单中的方式一起打印文本和图像。

我已经能够使用此代码在textboxesand中打印数据labels

    private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e)
    {
        string fname = txtName.Text;
        string lname = txtLname.Text;
        string mname = txtMname.Text;
        string address = txtAddress.Text;
        string gender = cmbGender.SelectedItem.ToString();
        string country = cmbCountry.SelectedItem.ToString();

        string data = "First Name : \t" + fname + "\n\nLast Name : \t" + lname + "\n\nMiddle Name : \t" + mname + "\n\nAddress : \t" + address + "\n\nGender : \t" + gender + "\n\nNationality : \t" + country;
        e.Graphics.DrawString(data, new Font("Arial", 20, FontStyle.Regular), Brushes.Black, 20, 20);
    }

请我需要添加什么来使用户能够将图片与文本一起打印。

笔记 :

这就是我将图片加载到图片框中的方式

    private void btnLoad_Click(object sender, EventArgs e)
    {
        if (openFileDialog1.ShowDialog() == DialogResult.OK)
        {
            try
            {
                picCpic.Image = Image.FromFile(openFileDialog1.FileName);
            }
            catch (OutOfMemoryException er)
            {
                MessageBox.Show(er.Message);
            }
        }
    }
4

1 回答 1

1

使用DrawImage方法:

e.Graphics.DrawImage(pictureBox.Image, new Point(10, 10));
于 2013-08-02T20:28:07.867 回答