from flask import Flask, render_template, request, send_file, jsonify from imaginepy import Imagine, Style, Ratio app = Flask(__name__) @app.route('/') def index(): return render_template('index.html') @app.route('/generate', methods=['POST']) def generate_image(): prompt = request.form['prompt'] style = request.form['style'] ratio = request.form['ratio'] imagine = Imagine() try: img_data = imagine.sdprem( prompt=prompt, style=Style[style], ratio=Ratio[ratio] ) except Exception as e: return f"An error occurred while generating the image: {e}" if img_data is None: return "An error occurred while generating the image." img_data = imagine.upscale(image=img_data) if img_data is None: return "An error occurred while upscaling the image." try: with open("static/example.jpeg", mode="wb") as img_file: img_file.write(img_data) except Exception as e: return f"An error occurred while writing the image to file: {e}" return render_template('output.html') @app.route('/api/generate', methods=['POST']) def api_generate_image(): data = request.get_json() prompt = data['prompt'] style = data['style'] ratio = data['ratio'] imagine = Imagine() try: img_data = imagine.sdprem( prompt=prompt, style=Style[style], ratio=Ratio[ratio] ) except Exception as e: return jsonify({'error': f"An error occurred while generating the image: {e}"}), 500 if img_data is None: return jsonify({'error': "An error occurred while generating the image."}), 500 img_data = imagine.upscale(image=img_data) if img_data is None: return jsonify({'error': "An error occurred while upscaling the image."}), 500 try: with open("static/example.jpeg", mode="wb") as img_file: img_file.write(img_data) except Exception as e: return jsonify({'error': f"An error occurred while writing the image to file: {e}"}), 500 return jsonify({'success': True}) if __name__ == "__main__": app.run(host="0.0.0.0",port=7860)