Einzelnen Beitrag anzeigen

Basilikum

Registriert seit: 9. Aug 2003
389 Beiträge
 
Delphi 7 Professional
 
#4

Re: Memeber Acces Operators in Delph

  Alt 23. Mär 2004, 18:17
Code:
void GetRGB(
  RGBTRIPLE* prgb,          //Pointer  to the pixel
  BYTE *R, BYTE *G, BYTE *B) //Output:  R, G and B
{
  *R=prgb->rgbtRed;
  *G=prgb->rgbtGreen;
  *B=prgb->rgbtBlue;
}
Delphi-Quellcode:
Procedure GetRGB(Const prgb : PRGBTRIPLE;Var R,G,B : Byte);
Begin
  R:=prgb^.rgbtRed;
  G:=prgb^.rgbtGreen;
  B:=prgb^.rgbtBlue;
end;
  Mit Zitat antworten Zitat