Feb 4, 2004 #1 Leroy1981 Programmer Jul 22, 2002 46 US Does anyone know if it's possible to manually specify the pixels in a TImage instead of loading from file. Like a function something like SetPixel(int x,int y,TColor Color);
Does anyone know if it's possible to manually specify the pixels in a TImage instead of loading from file. Like a function something like SetPixel(int x,int y,TColor Color);
Feb 6, 2004 #2 itsgsd Programmer Sep 4, 2002 163 The pixels can be accessed via the canvas property: Code: Image->Canvas->Pixels[x][y] = Color; // set Color = Image->Canvas->Pixels[x][y]; // get Good Luck. Upvote 0 Downvote
The pixels can be accessed via the canvas property: Code: Image->Canvas->Pixels[x][y] = Color; // set Color = Image->Canvas->Pixels[x][y]; // get Good Luck.
Feb 7, 2004 Thread starter #3 Leroy1981 Programmer Jul 22, 2002 46 US Thank you very much Upvote 0 Downvote