Registriert seit: 26. Mai 2004
3.159 Beiträge
|
Re: Delphi 2010 und PNG Ressourcen
3. Feb 2010, 16:50
Warnt dich dein Delphi nicht, dass du TPNGImage nutzen sollst, anstatt TPNGObject!? So mache ich das immer:
Delphi-Quellcode:
var
png : TPngImage;
begin
// Hintergrund laden
png := TPngImage.Create();
try
png.LoadFromResourceName(HInstance,'IMAGE_NAME');
// PNG in Image anzeigen ( imgExample: TImage )
if (Assigned(png)) then
imgExample.Picture.Assign(png);
finally
FreeAndNil(png);
end;
end;
»Remember, the future maintainer is the person you should be writing code for, not the compiler.« (Nick Hodges)
|