• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

256 shades of grey

Page 2 - Seeking answers? Join the AnandTech community: where nearly half-a-million members share solutions and discuss the latest tech.
1) Copy image.
2) Paste image into editor
3) Paste image into a second instance of editor
4) move two images around to compare left end and right end of images
5) Be amazed
6) Come back and insist that there is no difference just to piss people off

I didn't see any differences.
2015-02-20_256_shades_of_gray_still_only_seeing_bands.png


[edit]
I see it now:
2015-02-20_256_shades_of_gray_i_see_it_now.png
 
Last edited:
2015-02-20_256_shades_of_gray_still_only_seeing_bands.png


[edit]
I see it now:
2015-02-20_256_shades_of_gray_i_see_it_now.png

I saw it all along even though I'm also on an iPhone. Before reading on in the thread, I assumed that there was also a horizontal gradient and looked for signs. Looking at how the "white bar" at the bottom contrasts differently with the gray forum background from left to middle to right made it obvious.
 
ZYyh7ZV.png


Cliff notes:

Code:
rspng shadesofgray("shadesofgray.png");
	
int ss=30; //square size
	
shadesofgray.SetSize(ss*16,ss*16);
	
int gs=0;  //gray shade
	
	
	for(int y=0;y<16;y++)
	{
	  for(int x=0;x<16;x++)
	  {
	    shadesofgray.PlotRect((x*ss),(y*ss),(x*ss)+ss,(y*ss)+ss,gs,gs,gs,255);	    
	    
	    gs++;
	  }
	}
	
shadesofgray.WriteToFile();

I like this :thumbsup: Whens the movie coming out?
 
Back
Top