delphi et bitmap

delphi et bitmap - Programmation

Marsh Posté le 16-12-2001 à 18:10:21    

salut à tous
je voudrait savoir comment, en delphi, mettre dans un composant Tbitmap une partie(bloc de 8*8 pixels) d'un autre bitmap.
 
merci

Reply

Marsh Posté le 16-12-2001 à 18:10:21   

Reply

Marsh Posté le 16-12-2001 à 18:11:52    

Canvas.CopyRect

Reply

Marsh Posté le 16-12-2001 à 18:14:17    

et non j'ai deja essayé mais il y a incompatibilité entre un canvas et un bitmap
 
merci qd meme

Reply

Marsh Posté le 16-12-2001 à 18:24:00    

var
  Bitmap: TBitmap;
  Bitmap2: TBitmap;
  MyRect, MyOther: TRect;
begin
 
  MyRect := Rect(10,10,100,100);
 
  MyOther := Rect(10,111,100, 201);
  Bitmap := TBitmap.Create;
  Bitmap2 := TBitmap.Create;
  Bitmap.LoadFromFile('c:\windows\tartan.bmp';);
  Bitmap2.Canvas.CopyRect(MyOther,Bitmap.Canvas,MyRect);
  Bitmap2.SaveFromFile('myimage.bmp';);
  Bitmap.Free;
  Bitmap2.Free;
end;
 
G codé dans le message alors....


---------------
Des bons sites pour Delphi? http://forum.hardware.fr/forum2.php3?post=16838&cat=10 -- informaticien -- http://www.z0rglub.com/phpwebgallery/ -- Delphi :love:
Reply

Marsh Posté le 16-12-2001 à 18:33:37    

ok super c ce que je voulais merci

Reply

Marsh Posté le 16-12-2001 à 18:38:05    

vince10 a écrit a écrit :

ok super c ce que je voulais merci  




Oui mais la prochaine fois dit pas que Buitoni a tord.... Cherche un peu....
 :hello:


---------------
Des bons sites pour Delphi? http://forum.hardware.fr/forum2.php3?post=16838&cat=10 -- informaticien -- http://www.z0rglub.com/phpwebgallery/ -- Delphi :love:
Reply

Marsh Posté le 16-12-2001 à 20:09:35    

:-)
 
Je parie qu'il y avait un sample en plus dans le TBitmap.Canvas ou Canvas.CopyRect
 
:sarcastic:

Reply

Marsh Posté le 16-12-2001 à 20:10:36    

buitoni a écrit a écrit :

:-)
 
Je parie qu'il y avait un sample en plus dans le TBitmap.Canvas ou Canvas.CopyRect
 
:sarcastic:  




vi vi  
G recopité en changeant 2/3 trucs  :D


---------------
Des bons sites pour Delphi? http://forum.hardware.fr/forum2.php3?post=16838&cat=10 -- informaticien -- http://www.z0rglub.com/phpwebgallery/ -- Delphi :love:
Reply

Sujets relatifs:

Leave a Replay

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