Ah, wunderbar. Jetzt ist nur noch die Frage, wie ich feststellen kann, welches Bild in dem Image geladen ist.
So geht's leider nicht, und mir fällt leider gerade auch nichts anderes ein :-/
Delphi-Quellcode:
var bitmap1 : tbitmap;
begin
bitmap1 := tbitmap.create;
getimage(ImageList,2,bitmap1);
Image1.picture.bitmap.assign(bitmap1);
if Image.Picture.Bitmap=Bitmap1 then
showmessage('');
freeandnil(bitmap1);
end;