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.

Refer to these articles

C# Printing a PDF Silently with Adobe Acrobat

Silently print PDF using Adobe Acrobat in C#

Many of them face the same issue that I am facing with. Is it not possible with C#? Can't we write code to print pdf files without the help of adobe reader, any other reader or any 3rd party Dll's.

I am a newbie but I tried everything suggested by experts in forums; but of no use. If it is not possible then how some third parties build it? I am not looking for any dll reference.I would like to do it with C#. Please help

share|improve this question
Did you try a sharpPDF? – gahcep May 11 '12 at 6:54
@gahcep to me this seems to be for creating PDFs, not for printing/rendering... – Yahia May 11 '12 at 6:55
PDF file in fact is a postscript file. Virtual PDF printers (like Adobe PDF printer) are just translators from Windows printing API to postscript. Also, there are several free and commercial products, which can make PDF without installing any virtual printer. Why do you want to write your own solution? Not invented here? – Dennis May 11 '12 at 6:56
By using Adobe printer we can't print silently.It will open instance of adobe reader.I have to print multiple files from windows service.Advantage of service is background processing.This will be contrast to the service behaviour – Satheesh May 11 '12 at 7:05
@Satheesh, there's more solutions to print PDF than Adobe PDF Printer. See answer below. – Dennis May 11 '12 at 7:38
show 1 more comment

6 Answers

up vote 2 down vote accepted

I can't give you an open source solution but I have used the following library which is not very expensive:

http://www.o2sol.com/pdfview4net/overview.htm

Hope it works out for you!

share|improve this answer

I went through the same thing, I found a free open-source PDF application that I used to print a batch of PDFs silently, when adobe reader didn't work:

SumaPrint: http://code.google.com/p/sumatrapdf/wiki/CommandLineArguments

That page has the command line arguments, but it's basically:

sumaprint -print-to -silent "C:\Files\FileToPrint.pdf"

Worked like a charm.

If you have money, I'd buy Aspose.Net's PDF product because it integrates into your code, but there is also another option to use the LPR command:

http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/lpr.mspx?mfr=true

share|improve this answer
This answer couldn't have come at a better time. SumatraPDF solved our problem easily. +1 – Chris Schiffhauer Jan 7 at 22:47
Ghostview garbled our fonts. Acrobat Reader was a dud (didn't error, didn't print). Sumatra came through and saved the day! – Vincent Vancalbergh May 6 at 9:47

Anyone printing PDFs without using an external component (like Acrobat or some library) needs to implement the PDF specification and render the PDF content - this is possible in any language (some limited implementation exist even in JavaScript).

From my POV the above is NOT recommended and usage of a 3rd-party library is the way to go... if you need any links let me know and I will be happy to provide some...

share|improve this answer
Let me know if any open source library exits – Satheesh May 11 '12 at 7:06
@Satheesh are you looking for opensource OR for free library ? – Yahia May 11 '12 at 7:20
yes of course.Is there any? I can't understand this.If there is any library exits then how they achieve it. – Satheesh May 11 '12 at 7:29
@Satheesh you did not answer my question: opensource is not automatically free... do you need free or do you need opensource ? – Yahia May 11 '12 at 7:31
Sorry i need free library – Satheesh May 11 '12 at 8:00
show 1 more comment

PDFRasterizer.NET is a commercial .NET library that allows you to print unattendend (vector graphics are preserved). Basically, the component allows you to draw PDF pages to a System.Drawing.Graphics object. By handling the PrintPage event of the PrintDocument class and drawing to the Graphics object that is passed as an event argument, you can print a PDF document. You can open the PDF from any System.IO.Stream, so also from a MemoryStream. Here is some typical code:

int index;
Document document;
MemoryStream stream;

void print()
{
  document = new Document(stream); // assume stream is valid
  index = 0;

  PrintDocument printDocument = new PrintDocument();
  printDocument.DocumentName = document.DocumentInfo.Title;
  printDocument.PrintPage += new PrintPageEventHandler(printPage);
  printDocument.Print();
}

void printPage(object sender, PrintPageEventArgs e)
{
  e.Graphics.PageUnit = GraphicsUnit.Point;

  Page page = document.Pages[index++];
  page.Draw(e.Graphics);

  e.HasMorePages = index < document.Pages.Count;
}

Disclosure: I work at TallComponents, vendor of this component

share|improve this answer

i tried many tools, libraries for pdf printing and rendering. many of them have problems with fonts, barcodes, images. Simple pdf created from postcript will work fine, but other not. Im now using commercial library from http://pdfprinting.net, spool job is little bit larger than adobe, but i have better print result than other commercial librares.

iTextSharp, Report.NET, PDFsharp, SharpPDF,.

these open source libraries dont have printing support, they can only print if you have adobe reader or foxit installed.

share|improve this answer

Look at:

and choose appropriate one. Personally, I'm using Fast Reports with its own PDF rendering implementation.

share|improve this answer
Sorry, but SO doesn't allow to post hyperlink to Fast Reports. – Dennis May 11 '12 at 7:34
What did you mean "proper print support"? They allow to create and print PDF. – Dennis May 15 '12 at 4:47

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.