-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.js
163 lines (141 loc) · 4.39 KB
/
script.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
const canvas = document.getElementById('canvas');
const ctx = canvas.getContext('2d');
const uploadImageInput = document.getElementById('upload-image');
const slider = document.getElementById('slider');
const filterButtons = document.querySelectorAll('.filter-buttons button');
const controls = document.querySelectorAll('.controls button');
const defaultImageUrl = 'https://raw.githubusercontent.com/Ninja1375/Editor-de-Fotos-Responsivo/main/Logo%20editor%20de%20imagens%20.png';
// Configurações padrão
let img = new Image();
let currentFilter = 'brightness'; // Filtro inicial
let filters = {
brightness: 100,
contrast: 100,
saturation: 100,
sepia: 0,
blur: 0,
invert: 0, // Para o efeito negativo
};
// Carregar imagem padrão ao iniciar
img.src = defaultImageUrl;
img.onload = function () {
canvas.width = img.width;
canvas.height = img.height;
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
applyFilters();
};
// Função para aplicar filtros
function applyFilters() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.filter = `
brightness(${filters.brightness}%)
contrast(${filters.contrast}%)
saturate(${filters.saturation}%)
sepia(${filters.sepia}%)
blur(${filters.blur}px)
invert(${filters.invert}%)
`;
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
}
// Selecionar nova imagem
document.getElementById('select-image').addEventListener('click', () => {
uploadImageInput.click();
});
uploadImageInput.addEventListener('change', (e) => {
const file = e.target.files[0];
if (file) {
const reader = new FileReader();
reader.onload = function (event) {
img.src = event.target.result;
};
reader.readAsDataURL(file);
}
});
img.onload = function () {
canvas.width = img.width;
canvas.height = img.height;
applyFilters();
};
// Função para atualizar o filtro
filterButtons.forEach(button => {
button.addEventListener('click', function () {
// Desativar todos os botões
filterButtons.forEach(btn => btn.classList.remove('active'));
// Ativar o botão clicado
this.classList.add('active');
currentFilter = this.id;
slider.value = filters[currentFilter];
// Verificar o máximo e mínimo conforme o filtro
if (currentFilter === 'blur') {
slider.max = 10;
slider.min = 0;
} else if (currentFilter === 'invert') {
slider.max = 100;
slider.min = 0;
} else {
slider.max = 200;
slider.min = 0;
}
// Garantir que o botão fique azul instantaneamente
applyFilters();
});
});
// Atualizar o valor do filtro com o slider
slider.addEventListener('input', function () {
filters[currentFilter] = this.value;
applyFilters();
});
// Rotação e Inversão da Imagem
document.getElementById('rotate-left').addEventListener('click', () => {
rotateImage(-90);
});
document.getElementById('rotate-right').addEventListener('click', () => {
rotateImage(90);
});
document.getElementById('flip-vertical').addEventListener('click', () => {
flipImage();
});
// Limpar Filtros
document.getElementById('reset-filters').addEventListener('click', () => {
// Restaurar os valores dos filtros
filters = {
brightness: 100,
contrast: 100,
saturation: 100,
sepia: 0,
blur: 0,
invert: 0,
};
applyFilters();
slider.value = 100; // Resetar o slider para 100%
// Desativar todos os botões de filtro
filterButtons.forEach(btn => btn.classList.remove('active'));
});
// Funções de rotação e inversão
function rotateImage(degrees) {
const tempCanvas = document.createElement('canvas');
const tempCtx = tempCanvas.getContext('2d');
tempCanvas.width = canvas.height;
tempCanvas.height = canvas.width;
tempCtx.translate(tempCanvas.width / 2, tempCanvas.height / 2);
tempCtx.rotate((degrees * Math.PI) / 180);
tempCtx.drawImage(canvas, -canvas.width / 2, -canvas.height / 2);
canvas.width = tempCanvas.width;
canvas.height = tempCanvas.height;
ctx.drawImage(tempCanvas, 0, 0);
applyFilters();
}
function flipImage() {
ctx.clearRect(0, 0, canvas.width, canvas.height);
ctx.translate(0, canvas.height);
ctx.scale(1, -1);
ctx.drawImage(img, 0, 0, canvas.width, canvas.height);
applyFilters();
}
// Salvar a imagem editada
document.getElementById('save').addEventListener('click', () => {
const link = document.createElement('a');
link.download = 'imagem-editada.png';
link.href = canvas.toDataURL();
link.click();
});