Color Space
Color Space (Color Model)
A color space is a specific organization of colors that defines the gamut (range) of representable colors. sRGB is the web standard, Adobe RGB covers more greens and cyans for print, and Display P3 serves modern wide-gamut displays.
기술 세부사항
Color spaces are defined by primary chromaticities, a white point, and a transfer function (gamma). sRGB uses D65 illuminant with BT.709 primaries and a ~2.2 gamma curve.
예시
```javascript
// Convert RGB to HSL
function rgbToHsl(r, g, b) {
r /= 255; g /= 255; b /= 255;
const max = Math.max(r, g, b), min = Math.min(r, g, b);
const l = (max + min) / 2;
let h = 0, s = 0;
if (max !== min) {
const d = max - min;
s = l > 0.5 ? d/(2-max-min) : d/(max+min);
}
return [h, s, l];
}
```
관련 도구
색
색상 팔레트 생성기
색
색상 음영 생성기
C
Compress Image
R
Resize Image
C
Crop Image
R
Rotate Image
F
Flip Image
C
Convert Image
W
Watermark Image
S
SVG to PNG
I
Image to Base64
R
Round Corners
A
Add Border
I
Image Filters
A
Adjust Image
B
Blur Image
S
Sharpen Image
M
Make Square
이
이미지 그레이스케일 변환
세
세피아 이미지
이
이미지 픽셀화
이
이미지 메타데이터 제거