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 내 디지털 라이프 공개 토론 . 합니다.



4 Responses to “Translate and Convert RGB Color Values into Hexadecimal Hex Equivalent” 4 개의 응답을 "색깔 값을 16 진수 16 진수로 변환 번역 및 이에 상응하는"

  1. Lewis Stratton 루이스 혜성
    April 11th, 2006 11:59 2006년 4월 11일 11:59
    1

    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. 많은 감사합니다.

  2. anon 익명
    December 5th, 2006 18:07 2006년 12월 5일 18:07
    2

    It’s damn misleading to stuff the word “pantone” into you keywords when you don’t talk about it at all. 이 물건이 심하게 오해 "라는 단어 pantone"키워드를 당신에게 관심이 있어요 그것은 모든 경우에 대해 얘기하지 마세요.

  3. admin 관리자
    December 5th, 2006 18:33 2006년 12월 5일 18:33
    3

    Hi sorry anon, the keywords are based on what users search, and is not controllable. 안녕하세요 죄송합니다 익명의 키워드는 무슨 근거로 사용자가 검색되지 않았으며 제어할 수있습니다.

  4. Ace Frye 에이스 플라이
    September 5th, 2008 23:29 2008년 9월 5일 23:29
    4

    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 진수"

Leave a Reply 남길 회신

You can use these tags: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong> 이러한 태그를 사용할 수있습니다 : <a href="" title=""> <acronym title=""> <abbr title=""> <blockquote cite=""> <b> <cite> <code> <델 날짜 = ""> <em> <i> <strike> '<q cite="">

Subscribe without commenting 논평없이 구독 신청
이메일


Custom Search

New Articles 새로운 기사

Incoming Search Terms for the Article 이 문서에 대한 검색어를 수신

convert RGB to Pantone rgb로 변환 pantone - - convert Pantone to RGB pantone를 rgb로 변환 - - pantone converter pantone 변환기 - - rgb translator rgb 변환기 - - convert pantone to hex pantone를 16 진수로 변환 - - pantone rgb equivalent 이에 상응하는 pantone rgb - - pantone rgb converter pantone rgb 변환기 - - hexadecimal translation 16 진수 번역 - - RGB translation rgb 번역 - - rgb color values 색깔 값 - - hex translation 16 진수 번역 - - rgb pantone converter rgb pantone 변환기 - - hex color translation 16 진수 색상 번역 - - convert hex to pantone 16 진수로 변환 pantone - - translate rgb to hex 16 진수로 변환 rgb - - Pantone to RGB Conversion pantone을 rgb 전환 - - translate rgb 번역 rgb - - pantone rgb conversion pantone rgb 전환 - - pantone to hex conversion 16 진수로 변환 pantone - - RGB to pantone conversion rgb로 전환 pantone - - rgb to pantone converter rgb 변환기를 pantone - - hex code translation 16 진수 코드 번역 - - convert rgb to integer rgb을 정수로 변환 - - pantone to rgb values rgb 값을 pantone - - Pantone rgb convert rgb로 변환 pantone - - pantone RGB value pantone rgb 값 - - convert rgb to hex rgb를 16 진수로 변환 - - pantone translation pantone 번역 - - hex color translator 16 진수 색상 번역기 - - pantone rgb values pantone rgb 값 - - hex color translate 16 진수 색상 변환 - - hex to pantone converter 16 진수로 변환 pantone - - rgb pantone conversion rgb pantone 전환 - - translate rgb to html 번역 rgb을 html - - pantone color converter pantone 색상 변환기 - - translate rgb color 번역 색깔 - - convert pantone to hexadecimal 16 진수로 변환 pantone - - color hex translation 색상 16 진 변환 - - rgb color equivalents 색깔과 동일한 - - rgb color translation 색깔 번역 - - translate to rgb 번역을 rgb - - rgb color translator 색깔 번역기 - - pantone rgb equivalents pantone rgb 동등한 - - pantone hex conversion pantone 16 진수 전환 - - translate hex 번역 16 진수 - - rgb equivalent pantone rgb 이에 상응하는 pantone - - pantone to hex converter pantone를 16 진수 변환기 - - bgcolor conversion pantone bgcolor 전환 pantone - - translate to hex 16 진수로 변환 - - convert rgb pantone rgb로 변환 pantone - -