קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
blockly > utils > צבע > rgbToHex
הפונקציה utils.colour.rgbToHex()
המרת צבע מ-RGB לייצוג ב-hex.
Signature:
export declare function rgbToHex(r: number, g: number, b: number): string;
פרמטרים
פרמטר |
סוג |
תיאור |
r |
number |
כמות של אדום, int בין 0 ל-255. |
g |
number |
כמות הירוקה, int בין 0 ל-255. |
b |
number |
כמות הכחול, מספר שלם בין 0 ל-255. |
החזרות:
מחרוזת
ייצוג הקסדצימלי של הצבע.
אלא אם צוין אחרת, התוכן של דף זה הוא ברישיון Creative Commons Attribution 4.0 ודוגמאות הקוד הן ברישיון Apache 2.0. לפרטים, ניתן לעיין במדיניות האתר Google Developers. Java הוא סימן מסחרי רשום של חברת Oracle ו/או של השותפים העצמאיים שלה.
עדכון אחרון: 2025-07-25 (שעון UTC).
[[["התוכן קל להבנה","easyToUnderstand","thumb-up"],["התוכן עזר לי לפתור בעיה","solvedMyProblem","thumb-up"],["סיבה אחרת","otherUp","thumb-up"]],[["חסרים לי מידע או פרטים","missingTheInformationINeed","thumb-down"],["התוכן מורכב מדי או עם יותר מדי שלבים","tooComplicatedTooManySteps","thumb-down"],["התוכן לא עדכני","outOfDate","thumb-down"],["בעיה בתרגום","translationIssue","thumb-down"],["בעיה בדוגמאות/בקוד","samplesCodeIssue","thumb-down"],["סיבה אחרת","otherDown","thumb-down"]],["עדכון אחרון: 2025-07-25 (שעון UTC)."],[],["The `rgbToHex` function converts a color from RGB to its hexadecimal representation. It takes three numerical parameters: `r` (red), `g` (green), and `b` (blue), each representing the amount of their respective color components, ranging from 0 to 255. The function then returns a string representing the color in hexadecimal format. The function is found within the blockly.utils.colour namespace.\n"]]