sosyamba

Untitled

Nov 15th, 2024
185
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.56 KB | None | 0 0
  1. import requests
  2. import base64
  3. from aiogram import Bot, Dispatcher, types
  4. from aiogram.utils import executor
  5. from PIL import Image
  6. from io import BytesIO
  7. import time
  8. import os
  9.  
  10. # Your Telegram bot token
  11. TELEGRAM_TOKEN = 'ТОКЕН БОТА'
  12.  
  13. # Initialize the bot and dispatcher
  14. bot = Bot(token=TELEGRAM_TOKEN)
  15. dp = Dispatcher(bot)
  16.  
  17. # Function to generate image
  18. def generate_image(prompt):
  19. url = "https://api-ws.freeflux.ai/v1/images/generate"
  20. payload = {
  21. "style": "no_style",
  22. "color": "no_color",
  23. "lighting": "no_lighting",
  24. "model": "flux_1_schnell", #Можно так-же flux_1_dev
  25. "prompt": prompt,
  26. "size": "1_1" #Можно размер больше
  27. }
  28. headers = {
  29. "Content-Type": "application/json"
  30. }
  31. try:
  32. response = requests.post(url, json=payload, headers=headers)
  33. response.raise_for_status()
  34. data = response.json()
  35. image_base64 = data.get("result") # Assuming the base64 image is in "result"
  36. return image_base64 if image_base64 else None
  37. except requests.exceptions.RequestException as error:
  38. print(f"Error generating image: {error}")
  39. return None
  40.  
  41. # Function to save base64 image to a temporary file with padding correction
  42. def save_base64_image(image_base64, output_dir='generated_images', filename="temp_image.png"):
  43. try:
  44. # Check if the base64 string has the image data prefix and remove it
  45. if image_base64.startswith("data:image/png;base64,"):
  46. image_base64 = image_base64[len("data:image/png;base64,"):] # Remove prefix
  47.  
  48. # Ensure padding is correct for base64 decoding
  49. padding_needed = len(image_base64) % 4
  50. if padding_needed:
  51. image_base64 += "=" * (4 - padding_needed)
  52.  
  53. # Decode the base64 image data
  54. image_data = base64.b64decode(image_base64)
  55.  
  56. # Generate a timestamp for the filename
  57. timestamp = int(time.time())
  58. image_path = os.path.join(output_dir, f"{timestamp}_{filename}")
  59.  
  60. # Create the output directory if it doesn't exist
  61. if not os.path.exists(output_dir):
  62. os.makedirs(output_dir)
  63.  
  64. # Save the image to the file
  65. image = Image.open(BytesIO(image_data))
  66. image.save(image_path, "PNG")
  67.  
  68. return image_path # Return the path of the saved image
  69. except (base64.binascii.Error, ValueError, IOError) as e:
  70. print(f"Error saving base64 image: {e}")
  71. return None
  72.  
  73. # /start command handler
  74. @dp.message_handler(commands=['start'])
  75. async def start(message: types.Message):
  76. await message.answer("Hello! Send me any message, and I'll generate an image for you!")
  77.  
  78. # Handler for all text messages
  79. @dp.message_handler(content_types=['text'])
  80. async def handle_message(message: types.Message):
  81. user_message = message.text
  82. image_base64 = generate_image(user_message)
  83.  
  84. if image_base64:
  85. temp_image_path = save_base64_image(image_base64)
  86. if temp_image_path:
  87. with open(temp_image_path, 'rb') as photo:
  88. await message.answer_photo(photo, caption="Here is your generated image! Something beautiful, just for you!")
  89. os.remove(temp_image_path) # Clean up temporary file
  90. else:
  91. await message.answer("Failed to save the generated image. Please try again.")
  92. else:
  93. await message.answer("An error occurred while generating the image. Please try again.")
  94.  
  95. if __name__ == '__main__':
  96. executor.start_polling(dp, skip_updates=True)
Add Comment
Please, Sign In to add comment