Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a an image in a picturebox

and i want to print it as simple as that. no format, no nothing, just print it.

I've been searching on google but I've got nothing, guys print forms or text or reports.

private string imgSrc;

    public string ImgSrc
    {
        get { return imgSrc; }
        set { imgSrc = value; }
    }

    public Id_Manager()
    {
        ImgSrc = "D:\\Foto.jpg";

        InitializeComponent();
        idPicture.Load(this.ImgSrc);
    }

obviously the image is going to change but for now I'm just interesting in printing that image, i save the url in a property just in case, can u guys gimme an idea

share|improve this question

3 Answers

up vote 13 down vote accepted

The Code below uses the PrintDocument object which you can place an image on to the printdocument and then print it.

using System.Drawing.Printing;
...
protected void btnPrint_Click(object sender, EventArgs e)
{
    PrintDocument pd = new PrintDocument();
    pd.PrintPage += PrintPage;
    pd.Print();       
}

private void PrintPage(object o, PrintPageEventArgs e)
{
    System.Drawing.Image img = System.Drawing.Image.FromFile("D:\\Foto.jpg");
    Point loc = new Point(100, 100);
    e.Graphics.DrawImage(img, loc);     
}
share|improve this answer
thank you very much it was very helpfull – Carlos Guillermo Bolaños Lopez Apr 25 '11 at 19:31
on the last line, it should be "img", not "ing" :-) – itsho Feb 24 '12 at 12:59
2  
do NOT forget to dispose the "img" on printPage(...) otherwise, you'll be stuck on the second printing with IOException :-) – itsho Feb 24 '12 at 13:11

Using the location, I have this FileInfo extension method that does it:

public static void Print(this FileInfo value)
{
    Process p = new Process();
    p.StartInfo.FileName = value.FullName;
    p.StartInfo.Verb = "Print";
    p.Start();
}
share|improve this answer
 protected void PrintAll_Click(object sender, EventArgs e)
{
    // number of frames
    int number = _FaxPages.Count;

    //int num = 

    // for loop to iterate through each frame
    for (int i = 0; i < number; i++)
    {
        // fax ID
        string _FaxId = Page.Request["FaxId"];

        //string _Frame = Page.Request["Frame"];

        // current frame
        _PageIndex = i;

        // IMG URL
        imgFax.ImageUrl = "ShowFax.ashx?n=" + _FaxId + "&f=" + _PageIndex + "&mw=750";



        PrintDocument pd = new PrintDocument();

        pd.PrintPage += PrintPage;
        pd.Print();  

    }     
}


private void PrintPage(object o, PrintPageEventArgs e)
{
    System.Drawing.Image img = System.Drawing.Image.FromFile(imgFax.ImageUrl);
    Point loc = new Point(100, 100);
    e.Graphics.DrawImage(img, loc);
}

This is my version of the function, but I get an error.. I need to add the imgFax.ImageUrl to an actual image such that the image is printed. How can I do that? can anyone show me any code please?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.