image1载入大图片时如果stretch=true,image1会显示出大图片的缩图,那么如何将这个缩图镜像复制一份赋值给另一个image2的picture呢? Delphi / Windows SDK/APIhttp://www.delphi2007.net/DelphiMultimedia/html/delphi_20060930111323273.html
赋值后虽然两个image显示的内容一样,但是第一个image1.picture的尺寸是原始图片的尺寸,
而新的image2.picture的尺寸是image1中缩图的尺寸,
也就是说image2.picture.width=image1.width
如何做到呢?万分感谢。
Image2.Width := Image1.Width;
Image2.Height := Image1.Height;
Image2.Canvas.CopyRect(Image1.ClientRect, Image1.Canvas, Image2.ClientRect);
是需要这样吗?