谢谢

解决方案 »

  1.   

    procedure TForm1.Button1Click(Sender: TObject);
    begin
    ImageList1.GetBitmap(0,image1.Picture.Bitmap);end;
      

  2.   

    楼上你写反了吧。楼主好像是 把 ImageList 的图像写到 Picture 里面吧。
    ^_^
      

  3.   

    ImageList1.Draw(image1.canvas,0,0,1);
    就是把 ImageList 的图像写到 Picture 里面啊,你试试先
      

  4.   

    procedure TForm1.Button1Click(Sender: TObject);
    begin
    ImageList1.GetBitmap(0,image1.Picture.Bitmap);
    //传递是指针,当然写到IMAGE1里面啊;
    end;