Zitat von
turboPASCAL:
Oder irre ich mich in dieser Sache?
...kann mir das leider nicht genauer anschauen, da fehlen mir ein paar Sources.
Ja, tust du. Von TGraphic (der abstrakten Basisklasse) stammen z.B. TBitmap, TMetafile, TIcon ab. TPicture speichert nur einen Verweis darauf. Hier übrigens die Kommentare zu den Eigenschaften aus Grahpics.pas:
Delphi-Quellcode:
{
Graphic - The TGraphic object contained by the TPicture
Bitmap - Returns a bitmap. If the contents is not already a bitmap, the
contents are thrown away and a blank bitmap is returned.
Icon - Returns an icon. If the contents is not already an icon, the
contents are thrown away and a blank icon is returned.
Metafile - Returns a metafile. If the contents is not already a metafile,
the contents are thrown away and a blank metafile is returned. }
Wenn du also ein Metafile reingeladen hattest und dann die Eigenschaft Bitmap benutzt, dann wird der ursprüngliche Inhalt verworfen.