2010年1月17日日曜日

32bitDIB(3) 塗りつぶし

■塗りつぶし
 Bitmapデータは画面下から上へ向かってデータが格納されるのでポインタ計算に注意しなければなりません。
たとえば座標(10, 10)であれば((height-1)-10)*width + 10の位置に、
座標(50, 24)であれば((height-1)-24)*width + 50の位置にデータがあります。


bool boxf( LONG x, LONG y, LONG width, LONG height, DWORD color )
{
   if ( !m_pixel ) return false;
 
   width = abs( width );
   height = abs( height );
 
   RECT rect;
   rect.left = max( 0, x );
   rect.top = max( 0, y );
   rect.right = min( x+width, getWidth() );
   rect.bottom = min( y+height, getHeight() );
 
   LPDWORD line = m_pixel
     + ((getHeight()-1)-rect.top) * getWidth()
     + rect.left;
   for (LONG py=rect.top; py<rect.bottom; ++py)
   {
     LPDWORD destPixel = line;
     for (LONG px=rect.left; px<rect.right; ++px)
     {
       *destPixel++ = color;
     }
 
     line -= getWidth();
   }
 
   return true;
}

 クリッピングして、あとは1ピクセルごと書き換えていくだけです。
正しくクリッピングできれば範囲外にアクセスしなくなるので、比較的高速に処理することができます。


■サンプル

#include <windows.h>
 
class DIB32
{
public:
  DIB32()
    : m_pixel( NULL )
  {
    ZeroMemory( &m_bmi, sizeof(m_bmi) );
  }
 
  ~DIB32()
  {
    release();
  }
 
  bool create( LONG width, LONG height )
  {
    if ( width <= 0 || height <= 0 ) return false;
    release();
 
    m_pixel = new DWORD[ width * height ];
    if ( !m_pixel ) return false;
 
    m_bmi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
    m_bmi.bmiHeader.biWidth = width;
    m_bmi.bmiHeader.biHeight = height;
    m_bmi.bmiHeader.biPlanes = 1;
    //32bit固定にする
    m_bmi.bmiHeader.biBitCount = 32;
    m_bmi.bmiHeader.biCompression = BI_RGB;
    //96dpiだと3780らしい。0の場合もあるとのこと
    m_bmi.bmiHeader.biXPelsPerMeter = 3780;
    m_bmi.bmiHeader.biYPelsPerMeter = 3780;
 
    return true;
  }
 
  bool create( LPCTSTR bitmapFile )
  {
    if ( !bitmapFile ) return false;
 
    HBITMAP hBmp = static_cast<HBITMAP>(
      LoadImage(NULL, bitmapFile, IMAGE_BITMAP,
      0, 0, LR_CREATEDIBSECTION | LR_LOADFROMFILE) );
    if ( !hBmp ) return false;
 
    BITMAP bm = {0};
    GetObject( hBmp, sizeof(BITMAP), &bm );
 
    // create DC
    HDC hdc = CreateCompatibleDC( NULL );
    if ( !hdc )
    {
      DeleteDC( hdc );
      DeleteObject( hBmp );
      return false;
    }
 
    // create buf
    if ( !create( bm.bmWidth, bm.bmHeight ) )
    {
      DeleteDC( hdc );
      DeleteObject( hBmp );
      return false;
    }
 
    // copy
    GetDIBits( hdc, hBmp, 0, bm.bmHeight,m_pixel, &m_bmi,
      DIB_RGB_COLORS );
 
    DeleteDC( hdc );
    DeleteObject( hBmp );
 
    return true;
  }
 
  void release()
  {
    if ( m_pixel )
    {
      delete [] m_pixel;
      m_pixel = NULL;
    }
    ZeroMemory( &m_bmi, sizeof(m_bmi) );
  }
 
  bool render(
    HDC hdc,
    LONG destX, LONG destY,
    LONG destWidth, LONG destHeight,
    LONG srcX, LONG srcY,
    LONG srcWidth, LONG srcHeight ) const
  {
    return GDI_ERROR != StretchDIBits(
      hdc, destX, destY, destWidth, destHeight,
      srcX, srcY, srcWidth, srcHeight,
      m_pixel, &m_bmi, DIB_RGB_COLORS, SRCCOPY );
  }
 
  bool render( HWND hWnd, HDC hdc )
  {
    RECT rect;
    if ( GetClientRect( hWnd, &rect ) )
    {
      return render(
        hdc, 0, 0, rect.right, rect.bottom,
        0, 0, getWidth(), getHeight() );
    }
 
    return false;
  }
 
  bool boxf( LONG x, LONG y, LONG width, LONG height, DWORD color )
  {
    if ( !m_pixel ) return false;
 
    width = abs( width );
    height = abs( height );
 
    RECT rect;
    rect.left = max( 0, x );
    rect.top = max( 0, y );
    rect.right = min( x+width, getWidth() );
    rect.bottom = min( y+height, getHeight() );
 
    LPDWORD line = m_pixel + ((getHeight()-1)-rect.top) * getWidth() + rect.left;
    for (LONG py=rect.top; py<rect.bottom; ++py)
    {
      LPDWORD destPixel = line;
      for (LONG px=rect.left; px<rect.right; ++px)
      {
        *destPixel++ = color;
      }
 
      line -= getWidth();
    }
 
    return true;
  }
 
  LONG getWidth() const { return m_bmi.bmiHeader.biWidth; }
  LONG getHeight() const { return m_bmi.bmiHeader.biHeight; }
 
private:
  LPDWORD m_pixel;
  BITMAPINFO m_bmi;
};
  
  
LRESULT CALLBACK wndProc(
  HWND hWnd,
  UINT msg,
  WPARAM wParam,
  LPARAM lParam )
{
  static DIB32 image;
  switch (msg)
  {
  case WM_DESTROY:
    ShowWindow( hWnd, SW_HIDE );
    PostQuitMessage(0);
    break;
  case WM_CREATE:
    image.create( TEXT("image.bmp") );
    break;
  case WM_PAINT:
    {
      PAINTSTRUCT ps = {0};
      HDC hdc = BeginPaint( hWnd, &ps );
      image.boxf( 100, 100, 50, 1050, 0xFF00FF );
      image.render(
        hdc, 10, 10, image.getWidth(), image.getHeight(),
        0, 0, image.getWidth(), image.getHeight() );
      EndPaint( hWnd, &ps );
    }
    break;
  default:
    return DefWindowProc( hWnd, msg, wParam, lParam );
  }
 
  return 0;
}
 
 
int WINAPI WinMain(
  HINSTANCE hInstance,
  HINSTANCE hPrevInstance,
  PSTR lpCmdLine,
  int nCmdShow )
{
  LPCTSTR WINDOW_NAME = TEXT("sample");
 
  WNDCLASSEX wc;
  wc.style    = CS_HREDRAW | CS_VREDRAW;
  wc.lpfnWndProc  = reinterpret_cast<WNDPROC>( wndProc );
  wc.cbClsExtra  = 0;
  wc.cbWndExtra  = 0;
  wc.cbSize    = sizeof( WNDCLASSEX );
  wc.hInstance  = hInstance;
  wc.hIcon    = NULL;
  wc.hIconSm    = NULL;
  wc.hCursor    = LoadCursor( NULL, IDC_ARROW );
  wc.hbrBackground= reinterpret_cast<HBRUSH>( GetStockObject(WHITE_BRUSH) );
  wc.lpszMenuName  = NULL;
  wc.lpszClassName= WINDOW_NAME;
  if ( !RegisterClassEx(&wc) ) return 0;
 
  LONG winWidth = 640
    + GetSystemMetrics(SM_CXEDGE)
    + GetSystemMetrics(SM_CXBORDER)
    + GetSystemMetrics(SM_CXDLGFRAME);
  LONG winHeight = 480
    + GetSystemMetrics(SM_CYEDGE)
    + GetSystemMetrics(SM_CYBORDER)
    + GetSystemMetrics(SM_CYDLGFRAME)
    + GetSystemMetrics(SM_CYCAPTION);
  HWND hWnd = CreateWindowEx(
    0, WINDOW_NAME, NULL, WS_OVERLAPPEDWINDOW ^ WS_THICKFRAME,
    CW_USEDEFAULT, CW_USEDEFAULT, winWidth, winHeight,
    NULL, NULL, hInstance, NULL);
  if ( !hWnd ) return -1;
 
  ShowWindow( hWnd, SW_SHOWNORMAL );
  UpdateWindow( hWnd );
 
  MSG msg;
  for (;;)
  {
    if ( !GetMessage(&msg, NULL, 0, 0) ) break;
    TranslateMessage( &msg );
    DispatchMessage( &msg );
  }
 
  
  UnregisterClass( WINDOW_NAME, hInstance );
  return msg.wParam;
}



 boxf使用時に高さを1050と異常値にしていますが、クリッピングでカットされています。



 boxf()の*dest++ = colorの部分を変えれば、塗りつぶす以外にもあれこれできますね。そうですか。
■関連記事:
生産がす: 32bitDIB(1) 作成と破棄
生産がす: 32bitDIB(2) 画像読み込み
生産がす: 32bitDIB(3) 塗りつぶし
生産がす: 32bitDIB(4) DIBに描画
生産がす: 32bitDIB(5) ファイルに出力
生産がす: 32bitDIB(6) 拡大縮小描画
生産がす: 32bitDIB(7) DIBSection
生産がす: DIB(8) - 直線描画
生産がす: DIB(9) - 回転描画
生産がす: DIB(10) - 三角形描画
生産がす: 日記ちゃん半透明合成
生産がす: 32bitDIBから無圧縮AVI2.0

0 件のコメント: