MizunoBrasil

PIxHost usando API de envio de imagem

Feb 23rd, 2025
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 2.99 KB | None | 0 0
  1. import tkinter as tk
  2. from tkinter import filedialog, messagebox
  3. import requests
  4. import webbrowser
  5.  
  6. # Função para centralizar janelas
  7. def centralizar_janela(janela, largura, altura):
  8.     janela.update_idletasks()
  9.     largura_tela = janela.winfo_screenwidth()
  10.     altura_tela = janela.winfo_screenheight()
  11.     x = (largura_tela - largura) // 2
  12.     y = (altura_tela - altura) // 2
  13.     janela.geometry(f"{largura}x{altura}+{x}+{y}")
  14.  
  15. # Função para abrir o link no navegador
  16. def abrir_link(event, link):
  17.     webbrowser.open_new(link)
  18.  
  19. # Função para enviar imagem
  20. def upload_imagem():
  21.     file_path = filedialog.askopenfilename(
  22.         title="Selecione uma imagem",
  23.         filetypes=[("Imagens", "*.jpg;*.png;*.jpeg;*.gif")]
  24.     )
  25.    
  26.     if not file_path:
  27.         return
  28.    
  29.     try:
  30.         with open(file_path, "rb") as image_file:
  31.             files = {"img": image_file}
  32.             data = {"content_type": "0", "max_th_size": "420"}
  33.             headers = {"Accept": "application/json"}
  34.            
  35.             response = requests.post("https://api.pixhost.to/images", files=files, data=data, headers=headers)
  36.            
  37.             if response.status_code == 200:
  38.                 json_response = response.json()
  39.                 image_link = json_response.get("show_url", "Erro ao obter link")
  40.                
  41.                 # Criar janela de sucesso com link clicável
  42.                 link_janela = tk.Toplevel(janela)
  43.                 link_janela.title("Sucesso")
  44.                 link_janela.geometry("400x100")
  45.                 centralizar_janela(link_janela, 400, 100)
  46.                
  47.                 # Tornar a janela modal (impede interação com a principal)
  48.                 link_janela.transient(janela)
  49.                 link_janela.grab_set()
  50.                
  51.                 label_msg = tk.Label(link_janela, text="Imagem enviada! Clique no link abaixo:")
  52.                 label_msg.pack(pady=5)
  53.                
  54.                 label_link = tk.Label(link_janela, text=image_link, fg="blue", cursor="hand2")
  55.                 label_link.pack(pady=5)
  56.                 label_link.bind("<Button-1>", lambda e: abrir_link(e, image_link))
  57.                
  58.                 entry_link.delete(0, tk.END)
  59.                 entry_link.insert(0, image_link)
  60.                
  61.                 link_janela.wait_window()
  62.             else:
  63.                 messagebox.showerror("Erro", "Falha ao enviar a imagem")
  64.     except Exception as e:
  65.         messagebox.showerror("Erro", f"Ocorreu um erro: {e}")
  66.  
  67. # Criando interface Tkinter
  68. janela = tk.Tk()
  69. janela.title("Uploader PixHost")
  70. janela.geometry("400x200")
  71. centralizar_janela(janela, 400, 200)
  72.  
  73. btn_upload = tk.Button(janela, text="Selecionar e Enviar Imagem", command=upload_imagem)
  74. btn_upload.pack(pady=20)
  75.  
  76. entry_link = tk.Entry(janela, width=50)
  77. entry_link.pack(pady=10)
  78.  
  79. btn_copy = tk.Button(janela, text="Copiar Link", command=lambda: janela.clipboard_append(entry_link.get()))
  80. btn_copy.pack(pady=5)
  81.  
  82. janela.mainloop()
  83.  
Add Comment
Please, Sign In to add comment