Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何将矩形从 FireMonkey 内部复制TCanvas到TBitmap(或其他TCanvas)?
TCanvas
TBitmap
CopyRect在 FMX 中不可用。
CopyRect
一种可能的解决方案是:
var NewBitmap:TBitmap; NewBitmap:=Rectangle1.MakeScreenshot;