File:RGB profiles of the color palette.gif
From Wikimedia Commons, the free media repository
Jump to navigation
Jump to search
RGB_profiles_of_the_color_palette.gif (640 × 480 pixels, file size: 17 KB, MIME type: image/gif)
File information
Structured data
Captions
Contents
Summary
[edit]DescriptionRGB profiles of the color palette.gif | Standard color gradient made in Gnuplot : black-blue-red-yellow |
Source | self-made using Gnuplot |
Author | Adam majewski |
Other versions |
|
Gnuplot source code
[edit]set terminal gif set output 'p.gif' test palette
It means:
set palette rgbformulae 7,5,15
so
R=sqrt(x)
G=x^3
B=sin(360x)
C code
[edit] /* this is part of code which shows how to get above gradient */
unsigned char color[3]; /* array */
double psin(double position)
{/* gives only positive values of sin because 0<=position<=1 */
if (position<0.5) return sin(position*2*3.14);
else return 0;
}
/* */
for(iY=0;iY<iYmax;++iY)
{
position=(double)iY/iYmax;
/* compute pixel color (24 bit = 3 bajts) */
color[0]=(int)255*sqrt(position);/*color.R */
color[1]=(int)255*position*position*position;/*color.G*/
color[2]=(int)255*psin(position); /*color.B/
}
See also other images of color gradients
[edit]Licensing
[edit]I, the copyright holder of this work, hereby publish it under the following licenses:
Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License.http://www.gnu.org/copyleft/fdl.htmlGFDLGNU Free Documentation Licensetruetrue |
This file is licensed under the Creative Commons Attribution-Share Alike 4.0 International, 3.0 Unported, 2.5 Generic, 2.0 Generic and 1.0 Generic license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
You may select the license of your choice.
File history
Click on a date/time to view the file as it appeared at that time.
Date/Time | Thumbnail | Dimensions | User | Comment | |
---|---|---|---|---|---|
current | 10:43, 9 March 2008 | 640 × 480 (17 KB) | Soul windsurfer (talk | contribs) | {{Information |Description=Standard color gradient made in Gnuplot |Source=self-made |Date= |Author= Adam majewski |Permission= |other_versions= }} |
You cannot overwrite this file.
File usage on Commons
The following 8 pages use this file:
- File:Cubehelix gnuplot palette.png
- File:Gnuplot HSV gradient.png
- File:Gnuplot color gradient, defined as 0 0 0 0, 1 0 0 1, 3 0 1 0, 4 1 0 0, 6 1 1 1.png
- File:Gnuplot color gradient RGB defined ( 0 "red", 0.5 "yellow", 1 "green" ).png
- File:Gnuplot linear gray gradient.png
- File:Matlab gradient.png
- File:P.gif (file redirect)
- File:P hot.gif
File usage on other wikis
The following other wikis use this file:
- Usage on en.wikibooks.org
- Usage on pl.wikibooks.org