onnew commited on
Commit
bd1c40e
·
verified ·
1 Parent(s): a7e31e7

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +79 -43
app.py CHANGED
@@ -1,46 +1,82 @@
1
- import requests
2
- import json
3
- from live_preview_helpers import preview_image
4
-
5
- # Defina a URL da API do Hugging Face
6
- API_URL = "https://api-inference.huggingface.co/models/stabilityai/stable-diffusion-2"
7
-
8
- # Defina o cabeçalho da requisição com o token de autenticação
9
- headers = {
10
- "Authorization": "Bearer YOUR_HUGGINGFACE_API_TOKEN"
11
- }
12
-
13
- def query(payload):
14
- response = requests.post(API_URL, headers=headers, json=payload)
15
- return response
16
-
17
- def generate_image(text_prompt, output_file="generated_image.png"):
18
- data = {
19
- "inputs": text_prompt,
20
- "options": {
21
- "wait_for_model": True,
22
- "use_cpu": True,
23
- "cpu_basic": {
24
- "vCPU": 2,
25
- "RAM": 16
26
- }
27
- }
28
- }
29
-
30
- response = query(data)
31
-
32
- if response.status_code == 200:
33
- with open(output_file, "wb") as f:
34
- f.write(response.content)
35
- print(f"Imagem gerada com sucesso e salva como '{output_file}'")
36
- preview_image(output_file) # Chama a função de visualização ao vivo
37
  else:
38
- print(f"Erro na requisição: {response.status_code}")
39
- print(f"Mensagem de erro: {response.text}")
 
 
 
 
 
 
 
 
40
 
41
- if __name__ == "__main__":
42
- # Defina o texto que será usado para gerar a imagem
43
- text_prompt = "A beautiful sunset over the mountains"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
44
 
45
- # Gere a imagem
46
- generate_image(text_prompt)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import gradio as gr
2
+ from PIL import Image, ImageDraw, ImageSequence
3
+ import io
4
+
5
+ # Função para criar ou editar frames
6
+ def edit_frame(frame, color, x, y, pixel_size):
7
+ if frame is None:
8
+ # Cria um frame vazio
9
+ frame = Image.new("RGBA", (64, 64), (255, 255, 255, 0))
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  else:
11
+ frame = frame.convert("RGBA")
12
+
13
+ # Desenha o pixel
14
+ draw = ImageDraw.Draw(frame)
15
+ draw.rectangle(
16
+ [x * pixel_size, y * pixel_size, (x + 1) * pixel_size - 1, (y + 1) * pixel_size - 1],
17
+ fill=color,
18
+ outline=color
19
+ )
20
+ return frame
21
 
22
+ # Função para criar uma animação GIF
23
+ def create_animation(frames, duration):
24
+ if not frames:
25
+ return None
26
+ output_gif = io.BytesIO()
27
+ frames[0].save(
28
+ output_gif,
29
+ format="GIF",
30
+ save_all=True,
31
+ append_images=frames[1:],
32
+ duration=duration,
33
+ loop=0
34
+ )
35
+ output_gif.seek(0)
36
+ return output_gif
37
+
38
+ # Função principal para o Gradio
39
+ def editor(frames, color, x, y, pixel_size, duration):
40
+ updated_frames = []
41
+ for frame_data in frames:
42
+ if frame_data is None:
43
+ updated_frames.append(None)
44
+ else:
45
+ # Converte string de bytes para imagem
46
+ frame = Image.open(io.BytesIO(frame_data))
47
+ updated_frames.append(frame)
48
+
49
+ # Atualiza o frame atual
50
+ updated_frame = edit_frame(updated_frames[-1], color, x, y, pixel_size)
51
+ updated_frames[-1] = updated_frame
52
+
53
+ # Cria o GIF
54
+ gif = create_animation(updated_frames, duration)
55
+ return gif
56
 
57
+ # Interface Gradio
58
+ with gr.Blocks() as demo:
59
+ gr.Markdown("# Editor de Sprites e Animações")
60
+
61
+ with gr.Row():
62
+ frames_input = gr.File(label="Frames Existentes (opcional)", file_types=["image"], file_count="multiple")
63
+ color_picker = gr.ColorPicker(label="Cor")
64
+ x_input = gr.Number(label="X", value=0, precision=0)
65
+ y_input = gr.Number(label="Y", value=0, precision=0)
66
+ pixel_size = gr.Slider(label="Tamanho do Pixel", minimum=1, maximum=10, value=1)
67
+ duration = gr.Slider(label="Duração do Frame (ms)", minimum=50, maximum=500, value=100)
68
+
69
+ with gr.Row():
70
+ output = gr.Image(label="Pré-visualização do Frame Atual", tool="editor")
71
+ gif_output = gr.File(label="Animação Final (GIF)")
72
+
73
+ generate_btn = gr.Button("Gerar Animação")
74
+ generate_btn.click(
75
+ editor,
76
+ inputs=[frames_input, color_picker, x_input, y_input, pixel_size, duration],
77
+ outputs=[gif_output]
78
+ )
79
+
80
+ # Executa o aplicativo
81
+ if __name__ == "__main__":
82
+ demo.launch()