Spaces:
Sleeping
Sleeping
from PIL import Image, ImageDraw | |
import io | |
def flux_pipe_call_that_returns_an_iterable_of_images(prompt, guidance_scale, num_inference_steps, width, height, generator, output_type, good_vae): | |
""" | |
Gera imagens simples como substituto para a funcionalidade ausente. | |
""" | |
images = [] | |
for i in range(3): # Exemplo: gerando 3 imagens | |
img = Image.new("RGB", (width, height), color=(255, 200 - i * 50, 200 - i * 50)) | |
draw = ImageDraw.Draw(img) | |
draw.text((20, 20), f"Prompt: {prompt}\nImage {i+1}", fill=(0, 0, 0)) | |
images.append(img) | |
return images | |