GiulioM Posted July 18, 2012 Posted July 18, 2012 Simplified version: my program reads the color of the screen pixels and stores them into a variable or an array. I want it to make some operations on these colors and then generate an image, given those variables or that array. How do I do it? Example of code: Dim $pixel[@desktopheight*@desktopwidth+1] Local $n For $x=0 to @desktopwidth For $y=0 to @desktopheight $n=$n+1 $pixel[$n]=_ColorGetRed(PixelGetColor($x, $y)) $pixel[$n]=$pixel[$n]+random(0, 255-$pixel[$n]) ; example of manipulating the color Next Next
GiulioM Posted July 19, 2012 Author Posted July 19, 2012 I'm re-answering just to put this topic on the top... No answers in 12 hours, and my question is at the end of the 2nd page D:
GiulioM Posted July 19, 2012 Author Posted July 19, 2012 Edit: problem SOLVED. Waiting for a moderator to close or delete this topic
JohnOne Posted July 19, 2012 Posted July 19, 2012 Waiting for GiulioM to post the solution to the original question. AutoIt Absolute Beginners Require a serial Pause Script Video Tutorials by Morthawt ipify Monkey's are, like, natures humans.
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