原文是这样的:(The Drawing Mode)
When the GDI outputs pixels to a logical display surface, it doesn't simply output pixel colors. Rather, it combines the colors of the pixels that it's outputting with the colors of the pixels at the destination using a combination of Boolean operations. The logic that's employed depends on the device context's current drawing mode, which you can change with CDC::SetROP2 (short for "Set Raster Operation To"). The default drawing mode is R2_COPYPEN, which does, in fact, copy pixels to the display surface. But there are 15 other drawing modes to choose from, as shown in the table below. Together, these drawing modes represent all the possible operations that can be performed by combining the Boolean primitives AND, OR, XOR, and NOT.其中第二句话:it combines the colors of the pixels that it's outputting with the colors of the pixels at the destination using a combination of Boolean operations 是什么意思(到底是谁与谁结合).还有一个问题:
Drawing Mode          Operation(s) Performed
   R2_NOT                 dest=NOT dest
前一个dest与后一个dest分别指的是什么.

解决方案 »

  1.   

    "其中第二句话:it combines the colors of the pixels that it's outputting with the colors of the pixels at the destination using a combination of Boolean operations 是什么意思(到底是谁与谁结合)."要输出的像素与目标区域(说白了就是你把东西往哪儿画的地方)结合。dest=NOT dest ,表示取“非”:dest = ! dest;
      

  2.   

    dest=NOT dest中dest都是指目标,具体的就是目标中的某个点