How to capture the print job contnet as an image

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Larry Cheung

    How to capture the print job contnet as an image

    I want to write a program to monitor each local printer When a print job is
    sending to a printer this program could be fired and capture the printed
    content as an image.
    It is easy to use API function FindNextPrinter ChangeNotificat ion() to get
    information such as TotalPages, TotalBytes, FileName, etc, but I have no
    idea how to capture the printed ontent, anyone could help?

    Many thanks!!

    Larry


  • J French

    #2
    Re: How to capture the print job contnet as an image

    On Mon, 10 May 2004 16:03:10 +0100, "Larry Cheung"
    <larry@hohotech .com> wrote:
    [color=blue]
    >I want to write a program to monitor each local printer When a print job is
    >sending to a printer this program could be fired and capture the printed
    >content as an image.
    >It is easy to use API function FindNextPrinter ChangeNotificat ion() to get
    >information such as TotalPages, TotalBytes, FileName, etc, but I have no
    >idea how to capture the printed ontent, anyone could help?[/color]

    Whatever you get will not be an 'Image'
    - it will be a load of garbled printer control codes

    Try using Print to File on a Word document, and you'll see the sort of
    stuff you will get.

    To get an 'Image' you need to print to something like a PDF pseudo
    printer
    eg: something that looks like a Printer to the system, but is not.

    Comment

    • Raoul Watson

      #3
      Re: How to capture the print job contnet as an image


      "Larry Cheung" <larry@hohotech .com> wrote in message
      news:c7o5jf$acd $1@sun-cc204.lut.ac.uk ...[color=blue]
      > I want to write a program to monitor each local printer When a print job[/color]
      is[color=blue]
      > sending to a printer this program could be fired and capture the printed
      > content as an image.
      > It is easy to use API function FindNextPrinter ChangeNotificat ion() to get
      > information such as TotalPages, TotalBytes, FileName, etc, but I have no
      > idea how to capture the printed ontent, anyone could help?
      >
      > Many thanks!!
      >
      > Larry
      >[/color]

      This product might suit your needs http://www.win2pdf.com


      Comment

      Working...