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

    Urgent ||| Printing bitmaps with gray scaling

    How to print bitmaps with gray scaling


  2. #2
    Join Date
    Oct 1999
    Location
    WA
    Posts
    2,393

    Re: Urgent ||| Printing bitmaps with gray scaling

    Use SetStretchBltMode(STRETCH_HALFTONE), when bitmap is sent to a black/white DC, it's halftoned. If the DC is a color DC, for example, color printer, draw into a black/white memory DC first, then to the color DC. Or convert RGB to grayscale yourself.


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