ファイル:Color gradient illustrating a sorites paradox.png

元のファイル(8,192 × 1,024 ピクセル、ファイルサイズ: 57キロバイト、MIME タイプ: image/png)

このファイルはウィキメディア・コモンズから来ており、他のプロジェクトで使用されている可能性があります。 ウィキメディア・コモンズでのファイル解説ページにある説明を以下に示します。

概要

File:Color gradient illustrating a sorites paradox with labels.png
解説
English: Color gradient from green to red, any adjacent colors being indistinguishable for the human eye (composed of 256 rectangles of wd=32, hg=1024 of really unique color: #00ff00, #01fe00, #02fd00, ..., #fe0100, #ff0000)
日付
原典 投稿者自身による著作物
作者 Jochen Burghardt

C source code

C cource of pnm image
#include <stdio.h>
typedef int xT;         /* x coordinate */
typedef int yT;         /* y coordinate */
typedef int coT;        /* rgb color value */

static void build(
    xT wd, 
    yT HG) 
{
    yT y;
    coT r;
    xT x;
    
    printf("P3\t%d %d\t255\n",wd*256,HG);
    for (y=0; y<HG; ++y) {
        for (r=0; r<256; ++r) {
            coT const g = 255 - r;
            coT const b = 0;
            for (x=0; x<wd; ++x) {
                printf("%03d %03d %03d ",r,g,b);
            }
            printf("\n");
        }
        printf("\n");
    }   
}

int main(
    int argc,
    const char * const argv[argc])
{
    build(32,1024);
    return 0;
}

// after compiling, run "a.out | pnmtopng >Color_gradient_illustrating_a_sorites_paradox.png" to obtain image
この著作物は、完全に常識的な情報から構成され創作性を欠くために、著作権発生の資格がなく、故にパブリックドメインの状態にあります。

キャプション

このファイルの内容を1行で記述してください

このファイルに描写されている項目

題材

27 6 2013

4e7db30cce81773b6e736a421a1c94a0b4e66ab3

58,328 バイト

1,024 ピクセル

8,192 ピクセル

ファイルの履歴

過去の版のファイルを表示するには、その版の日時をクリックしてください。

日付と時刻サムネイル寸法利用者コメント
現在の版2013年11月7日 (木) 19:592013年11月7日 (木) 19:59時点における版のサムネイル8,192 × 1,024 (57キロバイト)Jochen BurghardtUser created page with UploadWizard

この画像にリンクしているページの一覧:

グローバルなファイル使用状況

以下に挙げる他のウィキがこの画像を使っています: