如題,
有人有解, 把一個已存放好RGB圖像array, 直接輸出在Static控件上?ex: 
      unsigned int width = 16, height = 16;  // picture size = 16x16
      unsigned int R[256];
      unsigned int G[256];
      unsigned int B[256];    ???--->輸出在Static上面???
     
     
目前知道一個好用的CImageCtrl類庫, 但是嘗試了一下, 看來只能用在8bit也就是256灰階:
CImageCtrl::Load(const BYTE           data[],
                                 const UINT             width,
                                 const UINT             height,
                                 const PixelFormat format)  我主要呈現彩色, 希望求解!