CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2

Thread: Text capture

  1. #1
    Guest

    Text capture

    There are several softwares that can do just-in-time translation of the text on the screen if these texts are output by Win32 APIs like TextOut etc., my question is that how to get the text on the screen, does Win32 provide some mechanisms that I don't know?


  2. #2
    Join Date
    May 1999
    Posts
    6

    Re: Text capture

    Hi,
    I'm not sure how it's done, but I guess the've written their own VIDEO driver, which runs on the existing one. Before the text is drawn it first goes to the video drivers (check if it supports hardware textout) if not, windows draws it self with pixels etc.
    The driver tells windows it supports textout, so it will get the TextOut call..

    I don't know how to do it, but hope it will help you find the right direction in looking for a sollution...

    Rick Blommers [email protected]
    homepage:http://www.brainwave.demon.nl/programmer/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured