Registriert seit: 9. Mär 2009
Ort: Heidelberg
440 Beiträge
Delphi 2007 Professional
|
Problem mit Stretchblt
26. Jun 2009, 06:25
Hi,
warum funktioniert Stretchblt nicht wenn ich als Ziel image1.picture.bitmap angebe?
Nutze ich statt image1 den canvas einer Form funktioniert das einwandfrei.
( t ist als tbitmap deklariert und create ist aufgerufen).
Delphi-Quellcode:
image1.picture.bitmap.Width:=500;image1.picture.bitmap.Height:=500;
stretchblt(image1.picture.bitmap.handle,
200,200,image1.picture.bitmap.width,image1.picture.bitmap.height,
t.canvas.handle,
100,100,t.width,t.height,
SRCCOPY);
Vielen Dank im Vorraus!
Rainer Unger Mein Profil:
Studium Allgemeine Elektrotechnik TH Darmstadt
Entwicklung von Tools für die Rundsteuer und Zählertechnik.
uP's Atmel Prozessoren (ATmega16,32,88...) in C und Assembler.
|