Image:Highcolor palette.png

From Wikipedia, the free encyclopedia

[edit] Summary

The 15-bit highcolor RGB palette.

[edit] Source code

#!/bin/bash
# (requires ImageMagick)
echo 'P3 256 128 31' >hicolor.ppm
for r in {0..31}
do
  for g in {0..31}
  do
    for b in {0..31}
    do
      echo $r $g $b >>hicolor.ppm
    done
  done
done
convert hicolor.ppm hicolor.png

[edit] Licensing

File history

Click on a date/time to view the file as it appeared at that time.

Date/TimeDimensionsUserComment
current23:31, 20 April 2006256×128 (1,020 B)Psychonaut (Talk | contribs) (The 15-bit highcolor RGB palette. ==Source code== #!/bin/bash # (requires ImageMagick) echo 'P3 256 128 31' >hicolor.ppm for r in {0..31} do for g in {0..31} do for b in {0..31} do echo $r $g $b >>hicolor.ppm done)

The following pages on the English Wikipedia link to this file (pages on other projects are not listed):