问题同上

解决方案 »

  1.   

    Image控件的Transparent属性设置为True即可,但如果你的图片本身背景不透,可以在
    一些图片编辑软件里把背景改为白色即可。
      

  2.   

    使用TransaparentBlt函数
    详见MSDN
    TransparentBlt
    [This is preliminary documentation and subject to change.] The TransparentBlt function performs a bit-block transfer of the color data corresponding to a rectangle of pixels from the specified source device context into a destination device context.
      

  3.   

    In delphiagree newfang(方方)
      

  4.   

    哎呀,你们听明白了吗?
    你们说的是一种方法,哪能不能换一种方法呀?
    不如在photoshop 打开,转换为RGB模式,复制一层,山调背景层,然后去掉新层中的不要得动动,不就行了!
    或者,把背景用木薯帮吧背景换成你的delphi form的背景色不就行了。
    哈哈
    ok?
    let's go !
      

  5.   

    用photoshop软件处理一下,不就行了
      

  6.   

    In delphi
    agree newfang(方方)
      

  7.   

    Transparent 透明的颜色依据的是图片的左下角的那个点的颜色来决定的,这个点的颜色是透明色。
    Toolbar 的 ImageList 和 Image 控件都是这样的。
      

  8.   

    设置窗体的TransparentColor为true;,TransparentColorValue为clWhite(选择什么颜色就让什么颜色的背景透明,这里选择Image的背景色),Image的Transparent为true;