Skrip Posted August 19, 2007 Posted August 19, 2007 I did a search and did not find anything. How do you create a pixel? [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]
JustinReno Posted August 19, 2007 Posted August 19, 2007 you cant create a pixel, its a physical part of the screen.
Skrip Posted August 19, 2007 Author Posted August 19, 2007 ...change the color of one then? Like change a pixel to white. [left][sub]We're trapped in the belly of this horrible machine.[/sub][sup]And the machine is bleeding to death...[/sup][sup][/sup][/left]
Zedna Posted August 20, 2007 Posted August 20, 2007 (edited) Search for SetPixel API.Func SetPixel ($handle, $x, $y, $color) $dc= DllCall ("user32.dll", "int", "GetDC", "hwnd", $handle) $setpixel= DllCall ("gdi32.dll", "long", "SetPixel", "long", $dc[0], "long", $x, "long", $y, "long", $color) $realesedc= DllCall ("user32.dll", "int", "ReleaseDC", "hwnd", 0, "int", $dc[0]) EndFunc Edited August 20, 2007 by Zedna Resources UDF ResourcesEx UDF AutoIt Forum Search
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now