Spaces:
Sleeping
Sleeping
File size: 597 Bytes
89f18ae |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
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
|