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

Thread: Bitmap

  1. #1
    Join Date
    May 1999
    Posts
    76

    Bitmap

    How can I save a CBitmap to a .bmp file?

    Dave2001,
    [email protected]

  2. #2
    Join Date
    Apr 1999
    Posts
    6

    Re: Bitmap

    The .bmp data structure is like the DIB structure which Windows is using for "device independent bitmaps". You need to convert the CBitmap image (a device dependent bitmap) first to a DIB and then save the image to disk. Have a look at the bitmap section in www.codeguru.com. Anything you need you'll find there. Hope it helps.


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