此为最大尺寸。
P_hot.gif (640 × 480像素,文件大小:17 KB,MIME类型:image/gif )
摘要
Gnuplot source code
set palette rgbformulae 21,22,23
set terminal gif
set output 'p.gif'
test palette
Numbers after rgbformulae denote number of color function ( see https://astro.uni-bonn.de/~ithies/gnuplot/colortools/rgbformulae.gp )
It means that:
color.R=3x
color.G=3x-1
color.B=3x-2
C code
/* this is part of code which shows how to get above gradient */
unsigned char color[3]; /* array */
int convert2light(double p)
{
if (p<0) return 0;
if (p>1) return 255;
else return (int)255*p;
}
void GiveHotColorGradient(double position,unsigned char c[])
{ /* (black-red-yellow-white) */
c[0] = convert2light(3*position);
c[1] = convert2light(3*position-1);
c[2] = convert2light(3*position-2);
}
See also other images of color gradients
许可协议
我,本作品著作权人,特此采用以下许可协议发表本作品:
已授权您依据自由软件基金会 发行的无固定段落及封面封底文字(Invariant Sections, Front-Cover Texts, and Back-Cover Texts)的GNU自由文件许可协议 1.2版或任意后续版本的条款,复制、传播和/或修改本文件。该协议的副本请见“GNU Free Documentation License ”。http://www.gnu.org/copyleft/fdl.html GFDL GNU Free Documentation License true true
您可以自由地:
共享 – 复制、发行并传播本作品
修改 – 改编作品
惟须遵守下列条件:
署名 – 您必须对作品进行署名,提供授权条款的链接,并说明是否对原始内容进行了更改。您可以用任何合理的方式来署名,但不得以任何方式表明许可人认可您或您的使用。
相同方式共享 – 如果您再混合、转换或者基于本作品进行创作,您必须以与原先许可协议相同或相兼容的许可协议 分发您贡献的作品。 https://creativecommons.org/licenses/by-sa/4.0 CC BY-SA 4.0 Creative Commons Attribution-Share Alike 4.0 true true
中文(马来西亚) 添加一行文字以描述该文件所表现的内容
文件历史
点击某个日期/时间查看对应时刻的文件。
日期/时间 缩略图 大小 用户 备注
当前 2008年3月9日 (日) 13:47 640 × 480(17 KB) Soul windsurfer {{Information |Description= |Source=self-made |Date= |Author= Adam majewski |Permission= |other_versions= }}
文件用途
全域文件用途
以下其他wiki使用此文件:
en.wikipedia.org上的用途
en.wikibooks.org上的用途
ja.wikipedia.org上的用途
pl.wikibooks.org上的用途
pt.wikipedia.org上的用途