1. 32bit 비트맵파일 읽어서 출력하기 2. 문제만들기 1. 32bit 비트맵파일 읽어서 출력하기 출력결과 백버퍼로 사용할 DIB 생성 BITMAPINFO bmi; SPRITE screen; void CreateBackBuffer(HWND hWnd, int width, int height) { // dib 만들기 bmi.bmiHeader = { sizeof(BITMAPINFOHEADER), width, -height, 1, 32, BI_RGB, (DWORD)width* height * 4, 0,0, 0,0 }; screen.width = width; screen.height = height; screen.image = (BYTE*)malloc(bmi.bmiHeader.biSizeImage); } 비트..