File size: 1,214 Bytes
cd7c504
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import os
from flask import Flask, render_template, request, send_file
from diffusers import DiffusionPipeline
from io import BytesIO
from PIL import Image

app = Flask(__name__)

# Modeli yükleyin (modeli sadece bir kez yüklemek için global tanımlıyoruz)
pipe = DiffusionPipeline.from_pretrained("sd-legacy/stable-diffusion-v1-5")

# Ana sayfayı render et
@app.route('/')
def index():
    return render_template('index.html')  # `templates` dizinine taşıdığınızı varsayıyoruz.

# Görsel üretme fonksiyonu
@app.route('/generate', methods=['POST'])
def generate_image():
    try:
        # Kullanıcıdan gelen prompt verisini al
        prompt = request.form['prompt']

        # Modelden görsel üretme
        image = pipe(prompt).images[0]

        # Görseli bir byte stream'e dönüştür
        img_io = BytesIO()
        image.save(img_io, 'PNG')
        img_io.seek(0)

        # Görseli kullanıcıya döndür
        return send_file(img_io, mimetype='image/png')
    except Exception as e:
        # Hata durumunda kullanıcıya bir mesaj döndür
        return f"Bir hata oluştu: {str(e)}"

if __name__ == '__main__':
    app.run(debug=True)