|
-
Jun 15th, 2000, 06:21 AM
#17
So Unbanned
Also... to adjust the contrast take the average of the RGB like 64,64,64 you'ld subtract 10 or divide by 4 or 5, and like 192,192,192 you're add 10 etc. 128,128,128 would stay the same.
You may want to do this progressively like:
if r > 128 then
r = r + ((r - 128) / 2)
else
r = r - ((128 - r) / 2)
end if
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|