miércoles, 14 de noviembre de 2018

Unidad 3: Imágenes URL


Imágenes URL

Programa que busca por URL una imagen


#PROGRAMA BRUCELEE CAMPOS
import base64
try:
    # Python2
    import Tkinter as tk
    from urllib2 import urlopen
except ImportError:
    # Python3
    import tkinter as tk
    from urllib.request import urlopen
root = tk.Tk()
root.title("Implementar imagenes de web")
# margenes
w = 520
h = 320
x = 80
y = 100# usar width x height + x_offset + y_offset (no spaces!)
root.geometry("%dx%d+%d+%d" % (w, h, x, y))
# cualquier imagen de la red
image_url = "https://www.tuexperto.com/wp-content/uploads/2017/03/facebook-gif.gif"

image_byt = urlopen(image_url).read()
image_b64 = base64.encodestring(image_byt)
photo = tk.PhotoImage(data=image_b64)
# SE CREA UN CANVAS BLANCO
cv = tk.Canvas(bg='white')
cv.pack(side='top', fill='both', expand='yes')
# SE COLOCA LA IMAGEN EN EL CANVAS# CREAR_IMAGEN(xpos, ypos, image, anchor)
cv.create_image(10, 10, image=photo, anchor='nw')
root.mainloop()

from Tkinter import *
import base64
try:
    # Python2
    import Tkinter as tk
    from urllib2 import urlopen
except ImportError:
    # Python3
    import tkinter as tk
    from urllib.request import urlopen
root = tk.Tk()
root.title("Implementar imagenes de web")
# margenes
w = 520
h = 320
x = 80
y = 100# usar width x height + x_offset + y_offset (no spaces!)
root.geometry("%dx%d+%d+%d" % (w, h, x, y))
# cualquier imagen de la red

# SE CREA UN CANVAS BLANCO
def busca():
    image_url = ""

    image_byt = urlopen(image_url).read()
    image_b64 = base64.encodestring(image_byt)
    photo = tk.PhotoImage(data=image_b64)
    cv = tk.Canvas(bg='white')
    cv.pack(side='top', fill='both', expand='yes')
    # SE COLOCA LA IMAGEN EN EL CANVAS# CREAR_IMAGEN(xpos, ypos, image, anchor)
    cv.create_image(10, 10, image=photo, anchor='nw')


buscar = Button(root, text="Multiplicar por 15", command=busca())
buscar.grid(column=1, row=1)
urlimg = ""
url = Entry(root, width=10, textvariable=urlimg)
url.grid(column=2, row=6)


root.mainloop


No hay comentarios:

Publicar un comentario