Processing, hex()
用法介紹。
用法
hex(value)
hex(value, digits)
參數
value
(byte, char, int)
要轉換的值digits
(int)
位數(最多 8 位)
返回
String
說明
將 int
、 byte
、 char
或 color
轉換為包含等效十六進製表示法的 String
。例如,color(0, 102, 153)
生成的 color
值將轉換為 String
值 "FF006699"
。此函數可以幫助您的令人討厭的調試會話更加快樂。
請注意,最大位數為 8,因為 int
值最多隻能表示 32 位。指定超過 8 位數字不會進一步增加 String
的長度。
例子
color c = #ffcc00;
println(c); // Prints "-13312"
println(hex(c)); // Prints "FFFFCC00"
println(hex(c, 6)); // Prints "FFCC00"
color c = color(255, 204, 0);
println(c); // Prints "-13312"
println(hex(c)); // Prints "FFFFCC00"
println(hex(c, 6)); // Prints "FFCC00"
相關用法
- Processing height用法及代碼示例
- Processing hour()用法及代碼示例
- Processing hue()用法及代碼示例
- Processing FFT用法及代碼示例
- Processing SawOsc.pan()用法及代碼示例
- Processing FloatDict用法及代碼示例
- Processing FFT.stop()用法及代碼示例
- Processing join()用法及代碼示例
- Processing () (parentheses)用法及代碼示例
- Processing Pulse用法及代碼示例
- Processing PShader用法及代碼示例
- Processing PVector.set()用法及代碼示例
- Processing FloatDict.sortKeysReverse()用法及代碼示例
- Processing texture()用法及代碼示例
- Processing IntDict.add()用法及代碼示例
- Processing PShape.enableStyle()用法及代碼示例
- Processing FloatDict.sub()用法及代碼示例
- Processing String用法及代碼示例
- Processing PImage.pixels[]用法及代碼示例
- Processing vertex()用法及代碼示例
- Processing PVector.mag()用法及代碼示例
- Processing thread()用法及代碼示例
- Processing Capture.stop()用法及代碼示例
- Processing Env.play()用法及代碼示例
- Processing StringList用法及代碼示例
注:本文由純淨天空篩選整理自processing.org大神的英文原創作品 hex()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。