[C++Builder] Canvas

Canvas [C++Builder] - Programmation

Marsh Posté le 04-04-2002 à 11:56:21    

Comment féton pour charger un bmp dans un canvas puis afficher ce dernier...?
 
MERCI D'AVANCE

Reply

Marsh Posté le 04-04-2002 à 11:56:21   

Reply

Marsh Posté le 04-04-2002 à 12:14:38    

Exemple de TCanvas.CopyRect, dans l'aide:
 

Code :
  1. var
  2.   Bitmap: TBitmap;
  3.   MyRect, MyOther: TRect;
  4. begin
  5.   MyRect := Rect(10,10,100,100);
  6.   MyOther := Rect(10,111,100, 201);
  7.   Bitmap := TBitmap.Create;
  8.   Bitmap.LoadFromFile('c:\windows\tartan.bmp');
  9.   Form1.Canvas.BrushCopy(MyRect, Bitmap, MyRect, clBlack);
  10.   Form1.Canvas.CopyRect(MyOther,Bitmap.Canvas,MyRect);
  11.   Bitmap.Free;
  12. end;

 

[jfdsdjhfuetppo]--Message édité par antp--[/jfdsdjhfuetppo]


---------------
mes programmes ·· les voitures dans les films ·· apprenez à écrire
Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed