<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: From black to white via every colour inbetween, full screen.</title>
	<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen/</link>
	<description>Comments on Ask MetaFilter post From black to white via every colour inbetween, full screen.</description>
	<pubDate>Mon, 30 Oct 2006 09:03:24 -0800</pubDate>
	<lastBuildDate>Mon, 30 Oct 2006 09:03:24 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: From black to white via every colour inbetween, full screen.</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen</link>	
		<description>I want to generate a full-screen traversal of the entirety of RGB colour space. This is to be played back on a Windows computer. &lt;br /&gt;&lt;br /&gt; The display machine is Windows. It has Firefox, IE, and the Microsoft office suite. It has Quicktime, but not Quicktime Pro.  I do not have administrator rights on this machine, but could probably arrange to have free software installed on it. Pay software is out.&lt;br&gt;
&lt;br&gt;
The tools I have at my disposal are: Linux computers with complete ImageMagick tools, reasonable programming skills, and libraries which can create Quicktime movies.  &lt;br&gt;
&lt;br&gt;
So far I have tried: Generating a series of one pixel bitmap images and converting to gif using convert and then using Firefox to show this gif expanded to fill most of the screen. This is OK but the indexing of the gif means that I run out of colours fairly fast. I have generated a quicktime movie which has the characteristics I want, but Quicktime needs to be upgraded to Pro to allow full screen viewing.&lt;br&gt;
&lt;br&gt;
Is there some scripting language that I could use within PowerPoint? Some windows tool I don&apos;t know about? Or is there a way to do this in JavaScript?</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2006:site.49727</guid>
		<pubDate>Mon, 30 Oct 2006 08:48:51 -0800</pubDate>
		<dc:creator>handee</dc:creator>
		
			<category>full</category>
		
			<category>screen</category>
		
			<category>colour</category>
		
			<category>animation</category>
		
	</item> <item>
		<title>By: Chunder</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen#755324</link>	
		<description>The *entirety* of RGB colour space? To what colour depth? Obviously the 8-bit GIF is out; 16-bit? 24-bit? 32-bit?&lt;br&gt;
&lt;br&gt;
I&apos;m assuming that you want the maximum gradation across all colours?&lt;br&gt;
Do you want it to show one colour at a time, or all colours all at once (kind of like the colour-wheel palettes on a paint program)?&lt;br&gt;
&lt;br&gt;
Should be possible with JS - create a basic page, and then use the script to change the background colour attributes one step at a time... this will give you 00-FF for each of R, G and B - i.e. 24-bit. Not sure how easy it would be to display full-screen either.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.49727-755324</guid>
		<pubDate>Mon, 30 Oct 2006 09:03:24 -0800</pubDate>
		<dc:creator>Chunder</dc:creator>
	</item><item>
		<title>By: bonaldi</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen#755358</link>	
		<description>Photoshop. LAB mode&lt;br&gt;
Gradient tool, black to white&lt;br&gt;
A channel: draw left-to-right&lt;br&gt;
B channel: draw top-to-bottom&lt;br&gt;
View all channels&lt;br&gt;
Convert to RGB.&lt;br&gt;
&lt;br&gt;
Save image, copy to this computer.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.49727-755358</guid>
		<pubDate>Mon, 30 Oct 2006 09:37:51 -0800</pubDate>
		<dc:creator>bonaldi</dc:creator>
	</item><item>
		<title>By: bonaldi</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen#755359</link>	
		<description>oh, hold on, I may have misunderstood: do you want the screen to be all one colour, then animate a run through all the spectrum?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.49727-755359</guid>
		<pubDate>Mon, 30 Oct 2006 09:39:38 -0800</pubDate>
		<dc:creator>bonaldi</dc:creator>
	</item><item>
		<title>By: handee</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen#755386</link>	
		<description>All one colour, then animate a run through the spectrum, showing one colour at a time. I thought I could do it in Javascript, with something along the lines of&lt;br&gt;
&lt;br&gt;
&lt;pre&gt;&lt;br&gt;
for (i=0;i&lt;2 55;i++) {br&gt;
   for (j=0;j&lt;2 55;j++) {br&gt;
      for (k=0;k&lt;2 55;k++) {br&gt;
           setbackground(i,j,k);&lt;br&gt;
           pause a bit&lt;br&gt;
      }&lt;br&gt;
   }&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
function setbackground(r,g,b) {&lt;br&gt;
   colour_string=&quot;#&quot;+hex(r)+hex(g)+hex(b);&lt;br&gt;
   document.bgcolor(colour_string);&lt;br&gt;
}&lt;br&gt;
&lt;/2&gt;&lt;/2&gt;&lt;/2&gt;&lt;/pre&gt;&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
where hex is the obvious dec-hex converter, and the nested loops are called from an onLoad event. However, neither browser liked this trick. I got a downloadable background fade program to sort of work (it flicked through about 16 stages of grey), but it was way flickery, and as soon as I bumped up the number of transitions, the browsers stopped playing ball. (&quot;A script on this page is causing mozilla to run slowly&quot;, yeah right. IE didn&apos;t even do the error message thing).</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.49727-755386</guid>
		<pubDate>Mon, 30 Oct 2006 10:03:42 -0800</pubDate>
		<dc:creator>handee</dc:creator>
	</item><item>
		<title>By: handee</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen#755388</link>	
		<description>Damn pre tag handling. That looked fine in the preview pane.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.49727-755388</guid>
		<pubDate>Mon, 30 Oct 2006 10:05:08 -0800</pubDate>
		<dc:creator>handee</dc:creator>
	</item><item>
		<title>By: niles</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen#755393</link>	
		<description>&quot;I have generated a quicktime movie which has the characteristics I want, but Quicktime needs to be upgraded to Pro to allow full screen viewing.&quot;&lt;br&gt;
&lt;br&gt;
If your only problem is full-screen viewing, &lt;a href=&quot;http://www.videolan.org/vlc/&quot;&gt;VLC&lt;/a&gt; should work nicely. If you don&apos;t / can&apos;t install it, get the portable, self-contained version from &lt;a href=&quot;http://portableapps.com/apps/music_video/vlc_portable&quot;&gt;PortableApps&lt;/a&gt;.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.49727-755393</guid>
		<pubDate>Mon, 30 Oct 2006 10:07:52 -0800</pubDate>
		<dc:creator>niles</dc:creator>
	</item><item>
		<title>By: Diddly</title>
		<link>http://ask.metafilter.com/49727/From-black-to-white-via-every-colour-inbetween-full-screen#755464</link>	
		<description>Even at 60fps, you will be displaying for 77 hours to show all of the possible combinations (256^3).&lt;br&gt;
&lt;br&gt;
May I suggest a &lt;a href=&quot;http://www.john-cage.halberstadt.de/new/index.php?l=e&quot;&gt;proper soundtrack&lt;/a&gt;?</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2006:site.49727-755464</guid>
		<pubDate>Mon, 30 Oct 2006 11:12:38 -0800</pubDate>
		<dc:creator>Diddly</dc:creator>
	</item>
	</channel>
</rss>
