How to convert PCL generated by HP LaserJet 5 to PDF in C #?

I need to retire from 15 year old system and keep all data. It can only print documents on a specific HP LaserJet 5 printer. I can print documents in PCL files and look for ways to convert all these files to PDF files programmatically. Preferably in C #. Can anyone recommend a good library or command line tool? Preferably free; -)

+1


a source to share


5 answers


The simplest solution I have found is VeryPDF PCL Converter http://www.verypdf.com/pcltools/index.html . It has command line mode, GUI (for command line), batch mode and costs only $ 125. My company paid for this. Hope this helps someone too.



0


a source


Command Line Tool GhostPCL

[1] (part of GhostPDL), by the same developers as Ghostscript, can convert PCL to PDF. Recent changes to their public domain source code repository

[2] provide a fully integrated source tree covering Ghostscript, GhostPCL, and GhostXPS. This includes MS Visual Studio * .sln and * .vcproj files for creating all or part of their products. GPL or commercial license (commercial licenses must be obtained from Artifex

[3]):



  • [1]: http://www.ghostscript.com/GhostPCL/

  • [2]: http://svn.ghostscript.com/

  • [3]: http://www.artifex.com/

+2


a source


I've used Visual Softwares pcl2pdf for several projects, it worked for me.

0


a source


We are currently using the Lincoln PCL to PDF converter. It was easy to call and include the attachment in our C # app. It also provides good feedback on events when the page has been converted, etc., so you can even add progress bars, etc.

Lincoln PCL to pdf converter

0


a source


I used PCL to PDF for Windows and OS X which is based on GhostPCL.

0


a source







All Articles