feat: add Docker and Nginx configuration, update favicon and icons, enhance image handling in views
This commit is contained in:
@@ -67,9 +67,9 @@ const applyFilmEffect = (context: CanvasRenderingContext2D, width: number, heigh
|
||||
const grainStrength = volume * 1.5;
|
||||
|
||||
for (let i = 0; i < data.length; i += 4) {
|
||||
let r = data[i];
|
||||
let g = data[i + 1];
|
||||
let b = data[i + 2];
|
||||
let r = data[i]!;
|
||||
let g = data[i + 1]!;
|
||||
let b = data[i + 2]!;
|
||||
|
||||
// --- STEP 1: Apply Contrast (ทำให้ภาพไม่แบน) ---
|
||||
// สูตร Contrast มาตรฐาน
|
||||
|
||||
Reference in New Issue
Block a user