Translate and Convert RGB Color Values into Hexadecimal Hex Equivalent 16 진수 값을 16 진수로 변환 번역 및 이에 상응하는 색깔
In a html web page, there is code such as <body bgcolor=#ffffff> or color=”#000000″ . html 웹 페이지에이 코드와 같은 <body bgcolor=#ffffff> 또는 색상 = "# 000000"합니다. The “ffffff” is the colour RGB hexadecimal value which will translate into a white, and “000000″ is black. "ffffff"은 16 진수 값을 rgb의 색깔로 번역은 흰색, 그리고 "000000"이 검은색으로합니다.
The RGB colour code must be converted into hexadecimal (Base-16) number in order for the browsers to understand them. the rgb 컬러 코드를 16 진수로 변환해야합니다 (기본 - 16) 번호가 브라우저를 위해서는 그들을 이해합니다. Then the resulting two-digit hexadecimal (”hex” for short) numbers are strung together into a single six-digit code. 그 결과 2 - 자리 16 진수 ( "16 진수"를 단편) 숫자는 6 - 숫자 코드를 하나의 졸음을 함께합니다. So in the example above, the first two “f”s and “0″s stand for the red value, the next two stand for green, and the last two for blue. 그래서 위의 예제에서, 첫 번째와 두 번째 "이름"의, "0"의 스탠드에 빨간 값, 다음 두 법앞에 녹색, 그리고 마지막 두 개의 파란색합니다.
It’s possible to get the RGB hex value from a colour chart. 들여볼 수있게되었습니다 rgb 16 진수 값을 가져와 컬러 차트합니다. But if you encounter a favorite colour, it’s possible to get its RGB value and convert it into hex code. 하지만 마음에 드는가 발생한 경우, 색상, 그게하게 나갈 수 있음을 rgb 값 및 16 진 코드로 변환합니다.
To get the RGB value of a colour from a photo, simply open the photo or picture in Microsoft Paint or any image processing software. rgb 값을 가져와의 색상을 사진, 간단하게 사진이나 그림을 열고 그림판이나 이미지 처리 소프트웨어를합니다. Use the pick color tools to pick the colour and the RGB value should be shown. 색상 선택 도구를 사용하여 색상을 선택과 rgb 값을 표시되어야합니다. For Microsoft Paint, after you pick the colour, click on Colors menu, and then Edit Colors. 에 대한 그림판을 선택하면 색상, 색상 메뉴를 클릭하고 다음을 색상을 수정합니다. On the window shown, click on Define Custom Colors, and you will see the RGB value of the color you just selected shown there. 창문에 표시를 클릭하십시오 정의 사용자 정의 색상, 그리고 당신은 rgb를 참조하십시오 방금 선택한 색상의 값을 표시에 해당합니다.
For translation/conversion to Hex calculation, we will use the color of lovely sea green with the RGB values R=51, G=219, B=153 as example. 에 대한 번역 / 전환이 16 진수 계산, 우리는 아름다운 바다를 사용하여 색상을 녹색으로 rgb 값 연구 = 51, g = 219, b = 153 예를 들면합니다.
To translate the RGB value into hexadecimal value, first take the value of Red (51) and divide it by 16. rgb 값을 16 진수 값을 번역하고, 먼저의 값을 타고 레드 (51)와 수로 나누어 16. The balance is 3.1875. 의 균형은 3.1875합니다. The integer, 3, will be the first number in the hexadecimal formula. 정수, 3, 첫 번째 숫자를 16 진수 수식된다. The remainder (0.1875) should be multiplied by 16, which also results in the number 3. 나머지 (0.1875)을 곱한 16, 어떤 결과를도 번호 3. So, 51 translates to 33 in hex. 그래서, 51에 33의 16 진수로 변환합니다.
If you get integers and remainders that translate into from 10 or 15, then translate the two-digit number into a single letter (that’s where all the d’s and f’s come in), where 10=A, 11=B, 12=C, 13=D, 14=E, and 15=F. 정수와 remainders로 번역하는 문제가 발생할 경우 언제부터 10 개 또는 15 일, 그리고 2 개의 - 숫자로 번역하는 하나의 문자 (거기에 들어와 모든 d'의 및 f), 어디에 = 10, 11 = b, 12 = c, 13 = 패, 14 = 이메일, 그리고 15 = f. This becomes relevant to our lovely sea green when we calculate the hexadecimal equivalent of its Green value, which is 219. 이것은 우리의 아름다운 바다와 관련된 녹색의 16 진수 계산하는 경우 이에 상응하는 우리의 녹색 값,이 219합니다. When we divide it by 16, we get 13.69. 우리가 분열하여 16 일 도착 13.69합니다. We translate 13 to D, and then multiply the remainder - 0.69 - by 16, and get 11, which equals B. 우리가 번역 13 ~ 패를 누른 곱하기의 나머지 - 0.69 - 16, 당장 11 일 b. 어느 같음
Repeat this formula for the Blue value, and then string them together (you should get 33DB99). 이 공식을 반복한다 청색 값, 그리고 그들이 같이 문자열을 (를 받아야 33db99). 33DB99 is the RGB Hexadecimal value for the colour which can be used in the html web page. rgb 16 진수 값을 33db99의 색깔은 어떤 웹 페이지는 웹사이트에서 사용할 수있습니다.
IMPORTANT : This is a machine translated page which is provided "as is" without warranty. 중요 사항 : 이것은 기계 번역 페이지는 "있는 그대로"제공하지 않고 보증합니다. Machine translation may be difficult to understand. 기계 번역을 이해하기 어려울 수있습니다. Please refer to 를 참조하시기 바랍니다 original English article 기존 영어 자료 whenever possible. 언제 수있습니다.
Share and contribute or get technical support and help at 를 공유하고 기술 지원 및 도움을 공헌하지 않는다면 My Digital Life Forums 내 디지털 라이프 공개 토론 . 합니다.
Related Articles 관련 기사
- Meaning of TVAnts Buffer Progress Bar Colors tvants 버퍼를 진행 막대 색깔의 의미
- HTML Color Names HEX Codes Chart Table html 색상 이름을 16 진수 코드를 도표 표
- Windows Vista No Activation OEM ID for Various Manufacturers 여러 제조 업체에 대한 인증 oem 번호 windows 비스타 아니오
- View, Edit and Convert Canon EOS 400D (Digital Rebel XTi) RAW Images in RawShooter 이 문서가 적용되는, 편집 및 변환 캐논 eos 400d (디지털 반란 xti) 원시 이미지를 rawshooter
- WordPress Charset Encoding Problem After Upgrading to Version 2.2 버전 2.2로 업그레이 드하면 문자 인코딩 문제를 wordpress
- Oracle PL/SQL ORA-00947 Not Enough Values Error 오라클 pl / sql 오라 - 00947 부족 값 오류
- AptEdit Pro 4.6 Text, HEX, Drive and HTML Professional Edito Free Registration Serial Key by GOTD aptedit을위한 4.6 텍스트, 16 진수, 드라이브와 html 프로 gotd 열쇠를 직렬 edito 무료 등록
- SPF Validation - Sender Profile Framework Testing and Checking Tool 의 SPF 유효성 검사 - 테스트 및 검사 도구를 보낸 사람 프로필을 프레임 워크
- Get the Color Code with Instant Eyedropper 컬러 코드를 가져와 인스턴트 스포이드
- Window Live Translator Launched by Microsoft 윈도우 라이브 번역기 발사한 microsoft

































April 11th, 2006 11:59 2006년 4월 11일 11:59
What a fantastic page. 어떤 환상적인 페이지를합니다. The web is full of ready-made converter tools, but I love to know HOW things are done. -이 변환기의 준비를 시작 페이지로가 꽉 찼습 도구,하지만 당신을 사랑하는 방법을 알고 것들이 모두 끝납니다. Your page on RGB to Hex conversion is well written and straightforward. 귀하의 페이지를 16 진수로 변환이 잘 서면과 솔직한 rgb합니다.
What a bonus to DIY webmasters such as myself. 웹마 스터와 같은 쿨러 보너스를 어떻게 자신합니다. Many thanks. 많은 감사합니다.
December 5th, 2006 18:07 2006년 12월 5일 18:07
It’s damn misleading to stuff the word “pantone” into you keywords when you don’t talk about it at all. 이 물건이 심하게 오해 "라는 단어 pantone"키워드를 당신에게 관심이 있어요 그것은 모든 경우에 대해 얘기하지 마세요.
December 5th, 2006 18:33 2006년 12월 5일 18:33
Hi sorry anon, the keywords are based on what users search, and is not controllable. 안녕하세요 죄송합니다 익명의 키워드는 무슨 근거로 사용자가 검색되지 않았으며 제어할 수있습니다.
September 5th, 2008 23:29 2008년 9월 5일 23:29
Thank you sir, this is exactly what I was looking for. 감사합니다 선생님, 이것은 정확하게 무엇을 찾고 있었 는데요. Plus, you are the top result on google when searching “how to translate rgb into hex” 또한, 당신은 상위 결과를 구글 검색하면 "rgb로 변환하는 방법을 16 진수"