Advertisement
DraKiNs

[JS] rgbaToHex | rgbToHex

Sep 16th, 2011
367
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!--------------------------------------------------
  2.  
  3.     Criado por Bruno da Silva
  4.    Feito para Desafio Comunidade Orkut Exploits
  5.  
  6. -------------------------------------------------!>
  7.  
  8. document.write('< font color=' + rgbToHex(255,255,0) + ' >< b >champz< /b >< / font>  ');
  9.  
  10. function rgbToHex(a,b,c)
  11. {
  12.     return rgbaToHex(a,b,c,0);
  13. }
  14.  
  15. function rgbaToHex(a,b,c,d)
  16. {
  17.     return ((((a) > 0xFF) || ((b) > 0xFF) || ((c) > 0xFF) || ((d) > 0x64)) ? (0) : ((65536 * (b)) + (16777216* (a)) + (256 * (c)) + (d)).toString(0x10));
  18. }
  19.  
  20. www.ips-team.blogspot.com
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement