Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. General Programming
  3. C / C++ / MFC
  4. Image Printing

Image Printing

Scheduled Pinned Locked Moved C / C++ / MFC
questionc++performance
2 Posts 2 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • U Offline
    U Offline
    User 948393
    wrote on last edited by
    #1

    I am trying to print a bmp image in MFC. I have tried creating a memory DC (compatible with the printer) and using BitBlt but it doesn't work for a printer DC. I have also tried CreateCompatibleBitmap which may work but how do I get the image into the newly created bmp. I tried using SetBitmapBits but no success. Obviously there is more preparations to do for this to work. Anyone done this before?

    P 1 Reply Last reply
    0
    • U User 948393

      I am trying to print a bmp image in MFC. I have tried creating a memory DC (compatible with the printer) and using BitBlt but it doesn't work for a printer DC. I have also tried CreateCompatibleBitmap which may work but how do I get the image into the newly created bmp. I tried using SetBitmapBits but no success. Obviously there is more preparations to do for this to work. Anyone done this before?

      P Offline
      P Offline
      Peter Ritchie
      wrote on last edited by
      #2

      In your CView-derived class's OnDraw:

      CBitmap bmp;
      if (bmp.LoadBitmap(IDB_BITMAP1))
      {
      // Get the size of the bitmap
      BITMAP bmpInfo;
      bmp.GetBitmap(&bmpInfo);

        // Create an in-memory DC compatible with the
        // display DC we're using to paint
        CDC dcMemory;
        dcMemory.CreateCompatibleDC(pDC);
      
        // Select the bitmap into the in-memory DC
        CBitmap\* pOldBitmap = dcMemory.SelectObject(&bmp);
      
        // Find a centerpoint for the bitmap in the client area
        CRect rect;
        GetClientRect(&rect);
        int nX = rect.left + (rect.Width() - bmpInfo.bmWidth) / 2;
        int nY = rect.top + (rect.Height() - bmpInfo.bmHeight) / 2;
      
        // Copy the bits from the in-memory DC into the on-
        // screen DC to actually do the painting. Use the centerpoint
        // we computed for the target offset.
        pDC->BitBlt(nX, nY, bmpInfo.bmWidth, bmpInfo.bmHeight, &dcMemory, 
           0, 0, SRCCOPY);
      
        dcMemory.SelectObject(pOldBitmap);
      

      }

      PeterRitchie.com

      1 Reply Last reply
      0
      Reply
      • Reply as topic
      Log in to reply
      • Oldest to Newest
      • Newest to Oldest
      • Most Votes


      • Login

      • Don't have an account? Register

      • Login or register to search.
      • First post
        Last post
      0
      • Categories
      • Recent
      • Tags
      • Popular
      • World
      • Users
      • Groups