我想把界面上image2中的图片赋给新建的image1,可是老出错。  image1 := timage.Create(self);
  image1.Parent := self;
  image1.Top := 3;
  image1.Left := 3;
  image1.assign(image2);//这里运行时提示不能传递
  
因此我只能用这句:
image1.Picture := image2.Picture;不知这两句哪句效率高?