picture
-
Hi I load a picture (bmp) into a picture control. The picture control have AutoSize on true and the picture is bigger then the screen. I need to check the color of every pixel. With picture.point (x,y) I have access only to the region on the screen (otherwise return -1) How can I check the color of all pixels? Thanks
-
Hi I load a picture (bmp) into a picture control. The picture control have AutoSize on true and the picture is bigger then the screen. I need to check the color of every pixel. With picture.point (x,y) I have access only to the region on the screen (otherwise return -1) How can I check the color of all pixels? Thanks
make picture1.AutoRedraw=True this worked but the problem is that autoredraw property consumes alot of memory I think.