Virtual Printer Driver Delphi Source

Posted on by
Active6 years, 11 months ago
  1. Virtual Printer Driver Freeware
  2. Virtual Printer Driver
  3. Virtual Printer Open Source

Delphi virtual printer free download. Ares Galaxy Ares Galaxy is a free, open source BitTorrent and chat program that uses its own decentralized super. Search for jobs related to Create virtual printer delphi source code or hire on the world's largest freelancing marketplace with 14m+ jobs. Virtual printer driver.

Virtual Printer Driver Freeware

I would like to know if the following idea is possible/makes sense?

Create a virtual printer (like 'PDF Printer' that any application with printing capabilities can see in the printers list) that doesn't print to paper or file, but simply inserts the document 'being printed' in the document management system (DMS) I developed. Imagine from MSWord i choose 'MyPrinter' and on 'print' my custom forms appear and let the user choose where to save the doc file inside my DMS, letting the user set some parameters (related to my DMS).

So after these 'forms' I have all the data needed to insert the file in the DMS.

I am aware this is somehow 'in the tricks domain' but it is the only choice to integrate my app with some legacy software (with printing capability) that cannot be repalced.

Wifi

I'd like to have a comment on this.

LaBraccaLaBracca
5,13729 gold badges114 silver badges207 bronze badges

1 Answer

Creating a virtual printer is a very technical task. You will have to write a device driver, which is not directly possible with Delphi (even if there are some code in the Net).

DelphiPrinter

There are several components able to do this: they consist in an already developed printer driver, with some general API to be called from other languages, including Delphi.

I found out that EMFPrinterPilot from ColorPilot could be a good start. Your Delphi application may be able to retrieve the Text (for indexing), PDF (for archiving) and even EMF (for display / reprint).

Arnaud BouchezArnaud Bouchez
38.2k3 gold badges60 silver badges137 bronze badges
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.

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

Hello experts, I have been given the task of creating a virtual printer that will show up as one of a user's installed printers. They would then be able to select it to print anything from any other application directly into our program as a specially modified .pdf file. Basically what Adobe Acrobat does, but with more application specific features. Not clear on how to make the program show up as a printer. Would this be a service application? I'm not looking for a handout here just some good solid information. I prefer using Delphi XE2, however if it would be easier to implement I can also use C# or VB.NET if it would work better that way. I do not know where to start.

Virtual Printer Driver


Virtual Printer Open Source

Thank you all very much.