- Joined
- Jun 11, 2009
- Messages
- 1,252
- Points
- 63
That is way cool.
Thanks
Thanks
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Albert i did it the hard way, i used a printer.:shhh:
At work we use these lables.
Now i haven't tryed printing this one yet but i have printed lables realy close to this.
http://www.avery.com/avery/en_us/Products/Labels/Addressing-Labels/Easy-Peel-Clear-Return-Address-Labels_08667.htm?N=4294967290%204294965480&Ns=Rank|1||Product%20Number|1&refchannel=b3e659baa4c2a110VgnVCM1000002118140aRCRD
:bumpit:
I love it! Is there any way to make the shapes anti-alias or higher resolution? The edges seem to jagged to me. =/ Over all nice job though!
Thanks a bunch,
-Zachary
private int factorAdjust(double Color, double Factor, int IntensityMax, double Gamma)
{
if (Color == 0.0)
{
return 0;
}
else
{
return (int)Math.Round(IntensityMax * Math.Pow(Color * Factor, Gamma));
}
}
private Color getColorFromWaveLength(int Wavelength){
double Gamma = 1.00;
int IntensityMax = 255;
double Blue;
double Green;
double Red;
double Factor;
if(Wavelength >= 350 && Wavelength <= 439){
Red = -(Wavelength - 440d) / (440d - 350d);
Green = 0.0;
Blue = 1.0;
}else if(Wavelength >= 440 && Wavelength <= 489){
Red = 0.0;
Green = (Wavelength - 440d) / (490d - 440d);
Blue = 1.0;
}else if(Wavelength >= 490 && Wavelength <= 509){
Red = 0.0;
Green = 1.0;
Blue = -(Wavelength - 510d) / (510d - 490d);
}else if(Wavelength >= 510 && Wavelength <= 579){
Red = (Wavelength - 510d) / (580d - 510d);
Green = 1.0;
Blue = 0.0;
}else if(Wavelength >= 580 && Wavelength <= 644){
Red = 1.0;
Green = -(Wavelength - 645d) / (645d - 580d);
Blue = 0.0;
}else if(Wavelength >= 645 && Wavelength <= 780){
Red = 1.0;
Green = 0.0;
Blue = 0.0;
}else{
Red = 0.0;
Green = 0.0;
Blue = 0.0;
}
if(Wavelength >= 350 && Wavelength <= 419){
Factor = 0.3 + 0.7*(Wavelength - 350d) / (420d - 350d);
}else if(Wavelength >= 420 && Wavelength <= 700){
Factor = 1.0;
}else if(Wavelength >= 701 && Wavelength <= 780){
Factor = 0.3 + 0.7*(780d - Wavelength) / (780d - 700d);
}else{
Factor = 0.0;
}
int R = this.factorAdjust(Red, Factor, IntensityMax, Gamma);
int G = this.factorAdjust(Green, Factor, IntensityMax, Gamma);
int B = this.factorAdjust(Blue, Factor, IntensityMax, Gamma);
return Color.FromArgb(R, G, B);
}