DIB于DDB位图,那个显示得效率更高一些啊??
DirectX不用说了~应该是最快得。~~

解决方案 »

  1.   

    我记得是dib!!
    理由不记得了!
      

  2.   

    肯定是DDB,因为Windows只能显示DDB,DIB是通过转换为DDB来显示,DDB是和设备相关的。
    而DIB是标准的设备无关位图,因为我们需要标准接口啊!
      

  3.   

    DDB should be faster generally, but there may be cases in which a DIB is faster.DDB could be faster because 
    1) It can be stored in video memory, instead of system memory.
    2) Its format normally matches display driver's current pixel format, so there is no extra layer of transformation.But if DIB is smaller in size (for example compressed RLE8/RLE8 bitmaps) and device driver/display is smart enough to transmit compressed image to video card and then decompress.An important rule of performance is measure it.
      

  4.   

    恩。看来是DDB更快一些了。谢谢大家~