Einzelnen Beitrag anzeigen

freeway

Registriert seit: 11. Jul 2009
57 Beiträge
 
Delphi XE Professional
 
#14

AW: Bildbearbeitung mit Delphi

  Alt 9. Jun 2011, 19:16
quick & dirty
Delphi-Quellcode:
image1.Width := 30;
image1.Height := 30;
Image1.Canvas.StretchDraw(Rect(0,
                               0,
                               30,
                               30),
                               image2.Picture.bitmap);

image1.Width := 300;
image1.Height := 300;
image1.Stretch := true;
  Mit Zitat antworten Zitat