Tagged Questions
3
votes
2answers
2k views
Brightness/exposure function with vb .net
I'm making a simple image editor in vb .net, and one of the functions is brightness/ exposure.
this is how I'm doing it:
For i = 0 To img.Width - 1
For j = 0 To img.Height - 1
...
0
votes
4answers
143 views
Simple brightness but slow
I have a picture, and I get every pixels and multiply the RGB for a number. I also need to take care when R * number > 255. When this happen, r = 255.
It's taking about 10s+ to complete a 1024x768 ...
0
votes
5answers
2k views
What API call would I use to change brightness of laptop (.NET)?
I have Windows Server 2008 installed on a Sony laptop and the brightness control doesn't work. I'd like to write a program to allow me to change it.
Currently what I have to do is open the Power ...