Registriert seit: 9. Aug 2003
389 Beiträge
Delphi 7 Professional
|
Re: Memeber Acces Operators in Delph
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;
|
|
Zitat
|