Histogram
Histogram (Tonal Distribution Graph)
An image histogram is a graph showing the distribution of pixel brightness values from shadows (left) to highlights (right). Photographers and editors use histograms to evaluate exposure, contrast, and tonal balance.
Техническая деталь
A histogram plots 256 bins (for 8-bit images) where each bin counts pixels at that brightness level. RGB histograms show separate red, green, and blue channel distributions to identify color casts.
Пример
```javascript
// Histogram: processing with Canvas API
const canvas = document.createElement('canvas');
const ctx = canvas.getContext('2d');
ctx.drawImage(sourceImage, 0, 0);
const imageData = ctx.getImageData(0, 0, canvas.width, canvas.height);
// Process pixels in imageData.data (RGBA array)
```
Связанные инструменты
C
Compress Image
И
Изменение размера изображения
О
Обрезка изображения
П
Поворот изображения
О
Отражение изображения
К
Конвертер изображений
В
Водяной знак на изображение
S
SVG в PNG
И
Изображение в Base64
С
Скругление углов
Д
Добавить рамку
Ф
Фильтры для изображений
Н
Настройка изображения
Р
Размытие изображения
У
Увеличение резкости
С
Сделать квадратным
G
Grayscale Image
S
Sepia Image
P
Pixelate Image
S
Strip Image Metadata