BMP压个文件发给我看一下好吗?
我还没遇到过这种情况

解决方案 »

  1.   

    肯定是delphi6的bug,连自带的damo,imageview都是这样
      

  2.   

    无论如何不可能有这么大的BUG的,我一直使用IMAGE控件,从来没有遇到过这样的问题,你能不能把代码贴来看看?
      

  3.   

    连自带的damo,imageview都是这样,那就不是代码问题了吧,谁要图片的留下email地址,我发过去给你们测试一下,bmp的不好上传
      

  4.   

    没有任何问题。
    TPanel;
    TImage;Stretch:=true;Align:=alClient;Transparent:=true;
    SpeedButton1: TSpeedButton;
    OpenPic:TOpenPictureDialog;各一个。unit Unit4;interfaceuses
      Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
      ExtDlgs, Buttons, ExtCtrls,JPEG;type
      TForm1 = class(TForm)
        Panel1: TPanel;
        Image1: TImage;
        SpeedButton1: TSpeedButton;
        OpenPic: TOpenPictureDialog;
        procedure SpeedButton1Click(Sender: TObject);
      private
        { Private declarations }
      public
        { Public declarations }
      end;var
      Form1: TForm1;implementation{$R *.DFM}procedure TForm1.SpeedButton1Click(Sender: TObject);
    begin
      if OpenPic.Execute then
      begin
        image1.Picture.LoadFromFile(openpic.FileName);
      end;
    end;end.